cancel
Showing results for 
Search instead for 
Did you mean: 

Sending the smartform output to SPOOL

Former Member
0 Kudos

Hi,

How do I create a spool request with the smartform out put? I have passed the following parameters, but it still does not create a spool request.

data: W_CTRLOP TYPE SSFCTRLOP,

W_COMPOP TYPE SSFCOMPOP.

W_CTRLOP-LANGU = LS_CONTROL-LANGU.

W_CTRLOP-GETOTF = 'X'.

W_CTRLOP-NO_DIALOG = 'X'.

W_COMPOP-TDNOPREV = 'X'.

W_COMPOP-TDNOPRINT = 'X'.

W_COMPOP-TDDATASET = 'VENEVA'.

w_COMPOP-TDDEST = 'UK24'.

W_COMPOP-TDNEWID = 'X'.

W_COMPOP-XSFOUTMODE = 'S'.

Thank you,

Geetha

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi Geetha,

is there any specifice reason to passin this <b>W_COMPOP-XSFOUTMODE = 'S'</b>

pass these parameters only u will get the spool in <b>JOB_OUTPUT_INFO-SPOOLIDS</b>

W_CTRLOP-LANGU = LS_CONTROL-LANGU.
W_CTRLOP-GETOTF = 'X'.
W_CTRLOP-NO_DIALOG = 'X'.
W_COMPOP-TDNOPREV = 'X'.
W_COMPOP-TDDATASET = 'VENEVA'.
w_COMPOP-TDDEST = 'UK24'.
W_COMPOP-TDNEWID = 'X'.

Please Close this thread.. when u r problem is solved. Reward all Helpful answers

Regards

Naresh Reddy K

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Set control parameters as below.

l_t_control-no_dialog = 'X'.

l_t_control-device = 'PRINTER'.

l_t_control-preview = ' '.

l_t_out-tdnewid = 'X'.

l_t_out-tddelete = ' '.

l_t_out-tdnoprev = 'X'.

l_t_out-tdimmed = 'X'.

l_t_out-tddest = p_prtid .

l_t_out-tddataset = 'SMART'.

l_t_out-tdcopies = '001'.

Regards,

Former Member
0 Kudos

Hi Geetha,

Execute SE37 and enter outputspool*,

Then it will dispaly all the FMs which u want.

Hope this helps you, reply for queries, Shall post you the updates.

Regards.

Kumar. .