cancel
Showing results for 
Search instead for 
Did you mean: 

Recover Print parameters from the Background popup for 3.1 I

Former Member
0 Kudos

How to recover the PRINT PARAMETERS (i.e. Printer name, new spool id) from the Background Popup window SAP version 3.1 I and I need use printer name in the program.

Thanks in ADVANCE.

you can contact me

us_udaya@yahoo.co.in

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi,

in the form interfaces

->under the import parameters you can find the parameter you can find OUTPUT_OPTIONS in this structure you can find the field that is TDDEST this is the field for out put device from where you can get the device name use this field in the smartforms

-> for the printer name under the same structure you can find TDPRINTER field you can use in the smartforms

ii)

->under the export parameters you can find the parameter you can find JOB_OUTPUT_OPTIONS in this structure you can find the field that is TDDEST this is the field for out put device from where you can get the device name use this field in the program

-> for the printer name under the same structure you can find TDPRINTER field you can use in the program

Thanks,

Nethaji.

Answers (1)

Answers (1)

Former Member
0 Kudos

hi,

in the import parameters of the function module you can find the parameters

JOB_OUTPUT_OPTIONS in it you can find the printer name spoolid TDPRINTER AND

JOB_OUTPUT_INFO in it you can find field SPOOLIDS

data:spool type rspoid.

loop at JOB_OUTPUT_INFO-SPOOLIDS into spool.

endloo.

know you can get the sppolid in wa

Thanks,

Nethaji.