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

SUBMIT 'program'TO SAP-SPOOL LAYOUT

Former Member
0 Likes
3,286

Hi all.,

The problem is i call a transaction from my program ,And the output of the tansaction should not be displayed.. but should be saved in spool and return to the

called report..(i have acheived this ) but i get a warning message.. how to correct it..

code used:

SUBMIT ppio_entry TO SAP-SPOOL LAYOUT 'zlayout'

VIA SELECTION-SCREEN

KEEP IN SPOOL 'X'

WITHOUT SPOOL DYNPRO

AND RETURN.

warning:

The "SUBMIT ... TO SAP-SPOOL WITHOUT SPOOL DYNPRO" statement produces

unexpected results without the essential ("DESTINATION", "IMMEDIATELY",

"KEEP IN SPOOL") print parameters.

thanx in advance.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,342

Hi ,

When you add "WITHOUT SPOOL DYNPRO" , the standard pop up which tells the details like

DESTINATION of the print spool

and when to print ( IMMEDIATELY ) is suppressed

Kindly pass these too

SUBMIT ppio_entry TO SAP-SPOOL LAYOUT 'zlayout'

VIA SELECTION-SCREEN

DESTINATION 'locl'

KEEP IN SPOOL 'X'

IMMEDIATELY 'X'

WITHOUT SPOOL DYNPRO

AND RETURN.

Thanks

Soumyadip

3 REPLIES 3
Read only

Former Member
0 Likes
1,343

Hi ,

When you add "WITHOUT SPOOL DYNPRO" , the standard pop up which tells the details like

DESTINATION of the print spool

and when to print ( IMMEDIATELY ) is suppressed

Kindly pass these too

SUBMIT ppio_entry TO SAP-SPOOL LAYOUT 'zlayout'

VIA SELECTION-SCREEN

DESTINATION 'locl'

KEEP IN SPOOL 'X'

IMMEDIATELY 'X'

WITHOUT SPOOL DYNPRO

AND RETURN.

Thanks

Soumyadip

Read only

0 Likes
1,342

thankx the problem was solved,w r t ur idea.

Read only

Former Member
0 Likes
1,342

Hai hedule the Report in the Back Groung Mode,

And make sure that no manual inputs are needed.

Hope this helps you.

Regds,

Rama chary.Pammi