Application Development 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: 

Submit statement - Check and uncheck

Former Member
0 Kudos

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.

2 REPLIES 2

former_member196280
Active Contributor
0 Kudos

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

former_member235056
Active Contributor
0 Kudos

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