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

spool list

Former Member
0 Likes
353

hi,

If i have saved the output list in a spool using submit to sap-spool and a particular variant

how do i retrieve the saved list for that same variant?

Nidhi

2 REPLIES 2
Read only

Former Member
0 Likes
323

Hi,

Use FM RSPO_RETURN_ABAP_SPOOLJOB

Best regards,

Prashant

Read only

Former Member
0 Likes
323

Hi,

call function 'RSPO_RETURN_ABAP_SPOOLJOB_RAW'

exporting

rqident = ws_spool

tables

buffer = i_rdidata

exceptions

no_such_job = 1

not_abap_list = 2

job_contains_no_data = 3

selection_empty = 4

no_permission = 5

can_not_access = 6

read_error = 7

others = 8.

Krishna