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

IA06transacton

Former Member
0 Likes
752

Hi

I had written following code:

Set parameter ID 'AEN' field ''W49.2006''.

call transaction 'IA06' skip initial screen.

Here AEN is the parameter id of Change No Field Level in IA06 transaction. But when I execute the progran the chnag no field is not getting populated with 'W49.2006'

Change No is mandatory field.

Pls Help

Hi

I had written following code:

Set parameter ID 'AEN' field ''W49.2006''.

call transaction 'IA06' skip initial screen.

Here AEN is the parameter id of Change No Field Level in IA06 transaction. But when I execute the progran the chnag no field is not getting populated with 'W49.2006'

Change No is mandatory field.

Pls Help

5 REPLIES 5
Read only

Former Member
0 Likes
693

Hi,

Please try this with single quotes instead.


SET PARAMETER ID 'AEN' FIELD 'W49.2006'.
CALL TRANSACTION 'IA06' SKIP INITIAL SCREEN.

Hope this will help.

Regards,

Ferry Lianto

Read only

0 Likes
693

hi

it still not working.

Read only

Former Member
0 Likes
693

Hi,

Please try this.


DATA: P_AENNR TYPE RMMG1-AENNR.

MOVE 'W49.2006' TO P_AENNR.

SET PARAMETER ID 'AEN' FIELD P_AENNR.
CALL TRANSACTION 'IA06' SKIP INITIAL SCREEN.

Regards,

Ferry Lianto

Read only

0 Likes
693

Still not

Read only

Former Member
0 Likes
693

Hi Praveen,

I think your problem is here.


DATA: P_AENNR TYPE RMMG1-AENNR.
 
MOVE 'W49.2006' TO P_AENNR.
 
SET PARAMETER ID 'AEN' FIELD P_AENNR.
CALL TRANSACTION 'IA06' AND SKIP FIRST SCREEN.     <--- Change this

Also is 'W49.2006' a valid number? No leading zeroes?

Regards,

Ferry Lianto