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

CALL TRANSACTION

Former Member
0 Likes
631

Hi All,

I am currently modifying a report where it call to MB52

Please let me know how to pass the parameters to checked or unchecked some checkbox

for example :

[] Display batch stocks

[/] No zero stock lines

I know that the checkbox have no parameters, what should I do that?

Thanks in advance.

Regards,

Tiwa Noitawee

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
547

Hi,

You can pass the check box using the WITH ..

Ex..

SUBMIT RM07MLBS <b>WITH nozero = 'X'</b>

Thanks,

Naren

Hi All,

I am currently modifying a report where it call to MB52

Please let me know how to pass the parameters to checked or unchecked some checkbox

for example :

[] Display batch stocks

[/] No zero stock lines

I know that the checkbox have no parameters, what should I do that?

Thanks in advance.

Regards,

Tiwa Noitawee

3 REPLIES 3
Read only

Former Member
0 Likes
548

Hi,

You can pass the check box using the WITH ..

Ex..

SUBMIT RM07MLBS <b>WITH nozero = 'X'</b>

Thanks,

Naren

Read only

Former Member
0 Likes
547

HI Tiwa

MB52 being a report program, we can directly use the SUBMIT statement instead of CALL TRANSACTION.

SUBMIT <program>
  WITH <selection-criteria>.

Please try it this way.

Kind Regards

Eswar

Message was edited by:

Eswar Rao Boddeti

Oops Naren has already provided an example, please try as per the example.

Read only

jayanthi_jayaraman
Active Contributor
0 Likes
547

Hi,

As suggested, you should use submit.

Another way is to record a BDC and then call the transaction in mode N.