2007 Feb 17 2:42 PM
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
2007 Feb 17 2:51 PM
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
2007 Feb 17 2:57 PM
2007 Feb 17 3:00 PM
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
2007 Feb 17 3:02 PM
2007 Feb 17 3:12 PM
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