Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

PDF to spool to run program in background

Former Member
0 Likes
683

Hi Experts,

i have created a custom program by copying FP_TEST_00 and gave nodialog mode for out parameters which will supress the prompt for printer and that i can run it in background. i just want the data to written to spool.

call function 'FP_JOB_OPEN'

changing

ie_outputparams = iwa_outputparams

exceptions

cancel = 1

usage_error = 2

system_error = 3

internal_error = 4

others = 5.

  • call function module with import params

call function function_name

parameter-table

para_tab.

  • close job

call function 'FP_JOB_CLOSE'

exceptions

usage_error = 1

system_error = 2

internal_error = 3

others = 4.

Any pointers in this regard will be help ful.

Please provide some inputs if we can send the PDF to a spool.

Thanks in Advance,

Deepa

Hi Experts,

i have created a custom program by copying FP_TEST_00 and gave nodialog mode for out parameters which will supress the prompt for printer and that i can run it in background. i just want the data to written to spool.

call function 'FP_JOB_OPEN'

changing

ie_outputparams = iwa_outputparams

exceptions

cancel = 1

usage_error = 2

system_error = 3

internal_error = 4

others = 5.

  • call function module with import params

call function function_name

parameter-table

para_tab.

  • close job

call function 'FP_JOB_CLOSE'

exceptions

usage_error = 1

system_error = 2

internal_error = 3

others = 4.

Any pointers in this regard will be help ful.

Please provide some inputs if we can send the PDF to a spool.

Thanks in Advance,

Deepa

1 REPLY 1
Read only

andrs_sarcevic
Contributor
0 Likes
541

Try:


iwa_outputparams-REQNEW = 'X'.
iwa_outputparams-REQFINAL = 'X'.

Cheers,

Andres.