2007 Oct 11 4:55 AM
Hi ,
I'm calling a standard SAP program RM06ENP0 by using the following statement.
SUBMIT RM06ENP0 AND RETURN
WITH i_ebeln IN s_ebeln
WITH i_ekorg IN s_ekorg
WITH i_ekgrp IN s_ekgrp
WITH WQ_SIMUL EQ SPACE.
The std program RM06ENP0 also has a check box named 'Test Run' as a selection screen parameter which is checked by default because of which submit fails to work.
So how do we uncheck this check box within the submit statement.
Thanks.
2007 Oct 11 7:17 AM
I guess this will solve your problem, create a variant with check box un-ticked.
SUBMIT RM06ENP0
VIA SELECTION-SCREEN
USING SELECTION-SET 'VARIANT1'
AND RETURN
WITH i_ebeln IN s_ebeln
WITH i_ekorg IN s_ekorg
WITH i_ekgrp IN s_ekgrp
WITH WQ_SIMUL EQ SPACE.
Close the thread once your question is answered.
Regards,
SaiRam
2007 Oct 11 12:25 PM
Dear friend,
U have this in ur program,
<b>INITIALIZATION.
WQ_SIMUL = 'X'.
SET TITLEBAR '001'.</b>
Just do this,
<b>INITIALIZATION.
WQ_SIMUL = ' '.
SET TITLEBAR '001'.</b>
I hope got the difference.
Pls reward all helpful points.
Regards,
Ameet