cancel
Showing results for 
Search instead for 
Did you mean: 

SMARTFORMS`

Former Member
0 Kudos

hello..

m printing a range of purchase orders but i want that the printer pop up screen should come only once at the starting..now itz poping up for each purchase order number..

these is becoming tedious to execute..plz suggest a better way..i tries with the

NO_OPEN and NO_CLOSE option of control parameters but unable to solve the problem..

plz explain the sequential procedure of calling these parameters

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Declare as specified below

DATA : WA_CANCELPP TYPE ITCPO.

WA_CANCELPP-TDPREVIEW = 'X'.

CALL FUNCTION 'OPEN_FORM'

EXPORTING

FORM = 'ZFORM'

OPTIONS = WA_CANCELPP

DIALOG = ' '.

Answers (1)

Answers (1)

Former Member
0 Kudos

THANKS