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

Problem with Spool Generation

Former Member
0 Likes
563

Hi Experts,

I am facing one issue with Spool No.

When I run my Report in Background it is running properly and getting "Finished".

But I am unable to see the Spool No since there is no Spool is generated.

Please help me on this.

Regards,

Praveen G.V.S

3 REPLIES 3
Read only

arindam_m
Active Contributor
0 Likes
529

Hi,

Check for SAP notes that might be helpful. Check the following places:

RZ20 -> SAP CCMS Monitor Template -> Spool System -> Spool wide -> Spool -> Spool number

and

SNRO T-Code -> Table SPO_NUM -> Number Ranges -> Status

Cheers,

Arindam

Read only

Former Member
0 Likes
529

Sorry.. Mistake for User side.

For the Input provided, there is no data available in the Fineal Internal Table.So only Spool is not generated.

Thanks

Closing the Thread.

Read only

Former Member
0 Likes
529

Hi Praveen,

    First using the following FM find the spool number is gen rated or not or else use the following query

to find the latest spool number..

RSPO_OPEN_SPOOLREQUEST

or

SELECT RQIDENT

    INTO (T_TSP01-RQIDENT)

    FROM TSP01

    WHERE RQOWNER EQ SY-UNAME

      AND RQCLIENT EQ SY-MANDT.

    APPEND T_TSP01.

    ENDSELECT.

I hope this will help you.