cancel
Showing results for 
Search instead for 
Did you mean: 

Spool not seen in SP01

Former Member
0 Kudos

Hi All,

I am creating spool from the output off ALV list display.

by passing parameters of ls_print as 'X'.

ls_print_alv-print = 'X'.

ls_print_-no_coverpage = 'X'.

ls_print_-print_ctrl-PRI_PARAMS-PEXPI = 2.

ls_print_-print_ctrl-PRI_PARAMS-PRREL = ' '.

ls_print_-print_ctrl-PRI_PARAMS-PRIMM = ' '.

when I run the the report the an information message appears as

"Spool request XXXXX created without immediate output"

When I check the spool in SP01 the spool does not exist.

I need this spool for further process.

Can anyone please help me how can I get the spool in SP01.

Thanks in advance.

Gayatri

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

You have to set paramets when passing print parameters like below.

Print Immediatly = ''.

Delete afer pringing = ''.

print preview = ''.

kesavadas_thekkillath
Active Contributor
0 Kudos

TYou can try the two ways below.

pass ls_print_-print_ctrl-PRI_PARAMS-PRIMM = 'X'.

or if its a custom device then goto SPAD->There should be a plce for marking the output immediately.

Former Member
0 Kudos

Use ls_print_-print_ctrl-PRI_PARAMS-PRIMM = 'X'. to print it immediately, so that it can be viewed on spool. And

Use ls_print_-print_ctrl-PRI_PARAMS-PRREL = ' '. for not to delete the spool after creation.

aidan_black
Active Contributor
0 Kudos

Hi,

Then either the spool was not created or it was subsequently deleted. perhaps the fla 'delete after print' was set by the application.

Regards,

Aidan

aidan_black
Active Contributor
0 Kudos

Hi,

Does your user have authorizations to view spools in SP01? Can a user with SAP_ALL authorizations see this spool number in SP01? Can you find the spool number in table TSP01, field RQIDENT?

Regards,

Aidan

Former Member
0 Kudos

Hi Aidan,

THe request number cannot be seen in TSP01 and any user is not able to view the spool.

Thanks

Gayatri