cancel
Showing results for 
Search instead for 
Did you mean: 

SAPscript

Former Member
0 Kudos

Hello,

I had created a SAPScript for a PO and in the Messages i want to make the "Print Immediately" check box defaulted to True Always..How Do I do that in the Program.

Thanks

Vicky

Accepted Solutions (1)

Accepted Solutions (1)

former_member181962
Active Contributor
0 Kudos

Use the fm:

SET_PRINT_PARAMETERS

pass X to IMMEDIATELY

Regards,

Ravi

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

See the function module OPEN_FORM: here there's the parameter OPTIONS (like ITCPO), it has the field TDIMMED has to have value X.

So you should change the program of sapscript in order to insert some lines like these:

TABLES ITCPO.

ITCPO-TDIMMED = 'X'.

CALL FUNCTION 'OPEN_FORM'

EXPORTING

...........

OPTIONS = ITCPO

Max