‎2008 Feb 20 2:56 PM
hi experts,
I have a program in which I am submitting another program via its selection screen to SAP-POOL and printing the output . something like this:
SUBMIT z_tstpicklist TO SAP-SPOOL
SPOOL PARAMETERS params WITHOUT SPOOL
DYNPRO USING SELECTION-SCREEN 1000
WITH p_werks = p_werks
WITH s_wadat IN s_wadat
WITH s_kunnr IN s_kunnr
WITH s_vbeln IN s_vbeln
WITH r_bar = r_bar
WITH p_rpt = p_rpt
WITH p_pal = p_pal
with p_seq = p_seq
AND RETURN.
Now the problem is.... the output is being printed, but along with it another page containing the selection parameters of the submitted program is also being printed.
I dont want the selection page to print. How can I suppress it?
Thank you all in advance.
goldie.
‎2008 Feb 20 3:08 PM
Hi Goldie,
You don't include the code where you populate the spool parameters in params, but the field that triggers is extra page is PRBIG. Set this to blank and you will remove the extra page.
Regards,
Nick
‎2008 Feb 20 3:08 PM
Hi Goldie,
You don't include the code where you populate the spool parameters in params, but the field that triggers is extra page is PRBIG. Set this to blank and you will remove the extra page.
Regards,
Nick
‎2008 Feb 20 3:17 PM
Hi Nick,
I am actually getting the spool parameters from the FM 'GET_PRINT_PARAMETERS'.
But I shall change the PRBIG parameter and try it.
Thanks for the tip.
goldie.
‎2008 Feb 20 3:25 PM