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

Set Parameter id Problem

Former Member
0 Likes
603

Dear experts,

I try to post the following coding:

SET PARAMETER ID 'RBN' FIELD '9600000000'.

CALL TRANSACTION 'MIR6' AND SKIP FIRST SCREEN.

when I execute this program, the Document number field is blank in MIR6,

I try to press F1 in the Document number,the Parameter ID is RBN,

which I use correcly in my coding. Can anyone tell me why data is not passed in the Document number field in MIR6?

Regards,

Sam

3 REPLIES 3
Read only

Former Member
0 Likes
562

instead of using 9600000000

use the field name

Read only

Former Member
0 Likes
562

g_variable = '9600000000'.

SET PARAMETER ID 'RBN' FIELD g_variable.

CALL TRANSACTION 'MIR6' AND SKIP FIRST SCREEN.

Read only

Former Member
0 Likes
562

hi,

Because of range factor in MIR6 its not able to fill in Document number value.if you try for MIR4 it will work.Please check it.