cancel
Showing results for 
Search instead for 
Did you mean: 

SapScript Command to Prevent a Form From Actually Printing

Former Member
0 Kudos

Hi everyone, we have a new requirement that says if a certain group of materials are ordered together within a certain range of quantity do not print the transfer order out on the printer. Our transfer order form is a Z sap-script form. Does anyone know if there is any command available in sapscript that I can insert into the sapscript code to activate when I do not want to print out this form???

Thanks for everyone's assistance in advance.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

try to restrict by using if condition in the program .....while using open_form....

if <f1> ne <condition>

exit.

else.

call function open_form

.

endif.

reward IF......

Regards

Anbu

Former Member
0 Kudos

Thank you Anbu for your reply, the problem is I don't have access to this code since its a standard SAP program printing the transfer orders, I don't have access to the call function open_form command.