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: 

Set Parameter id Problem

Former Member
0 Kudos

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

Former Member
0 Kudos

instead of using 9600000000

use the field name

Former Member
0 Kudos

g_variable = '9600000000'.

SET PARAMETER ID 'RBN' FIELD g_variable.

CALL TRANSACTION 'MIR6' AND SKIP FIRST SCREEN.

Former Member
0 Kudos

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.