Hi,
The program RM08NAST uses a function module called MRM_ENTRY_ERS
Now inside this function module are used all the Sapscript functions like read_form, write_form and close_form.
After the use of function close_form inside function module MRM_ENTRY_ERS, the spooid number gets generated inside parameter ls_itcpp.
call function 'CLOSE_FORM'
IMPORTING
RESULT = ls_itcpp
TABLES
otfdata = lt_otf_data
EXCEPTIONS
OTHERS = 1.
Now I want to use this spoolid number for pdf conversion. But as soon as I come out of
MRM_ENTRY_ERS, the spoolid number gets disaapered ?
Now I need that spoolid number anyhow for conversion ?
But I am sure that spoolid is getting stored somewehere.
Can someone help me out in getting that spoolid number .....