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

Parameter ID not set

Former Member
0 Likes
657

I have the following code, why the value '0010279879' is not in screen of the TCODE ME57?

SET PARAMETER ID 'BAN' FIELD '0010279879'.

CALL TRANSACTION 'ME57'.

4 REPLIES 4
Read only

rvinod1982
Contributor
0 Likes
571

Hi

Try this.

Data :w_banfn type banfn value '0010279879'.

SET PARAMETER ID 'BAN' FIELD w_banfn.

CALL TRANSACTION 'ME57'.

Regards,

Vinod

Read only

former_member188827
Active Contributor
0 Likes
571

use:

SUBMIT rm06bz00 VIA SELECTION-SCREEN

with ba_banfn = w_banfn.

Read only

0 Likes
571

Thanks for you reply, another question, why the check box in the next screen is disabled?

Read only

Former Member
0 Likes
571

Use BDC