Hi All
I developed Web Dynpro application and trying to call adobe form and send it to Printer.
For this I am clciking one button in UI.
I have called following FM's to call ADOBE in the above button action.
CALL FUNCTION 'FP_FUNCTION_MODULE_NAME',
CALL FUNCTION 'FP_JOB_OPEN', CALL FUNCTION 'ADOBE Generated FM' and CALL FUNCTION 'FP_JOB_CLOSE'.
For the 'FP_JOB_OPEN' FM I am passing the following parameters.
w_parms-device = 'PRINTER'.
w_parms-dest = 'ZPDF'.
w_parms-preview = 'X'.
w_parms-nodialog = ' '.
w_parms-reqnew = 'X'.
w_parms-reqimm = 'X'.
w_parms-copies = 1.
w_parms-connection = 'ADS'.
w_parms-arcmode = '1'.
CALL FUNCTION 'FP_JOB_OPEN'
CHANGING
ie_outputparams = w_parms.
But I need Printer dialog box where we can select Printer before sending the ADOBE form to the Printer.
Please help me how we can get the Printer dialog box?
Thanks to all
Rama