‎2009 Aug 05 11:21 AM
Dear All,
I am trying to pass paramter to a transaction but this call doesn't work.
SET PARAMETER ID 'XXX' FIELD XXX-value.
CALL TRANSACTION 'ME59N' AND SKIP FIRST SCREEN.
Pls note ME59N is a report
Do have an idea what can cause this occurance.
Regards
Marco M.
Edited by: Marco M on Aug 5, 2009 12:22 PM
‎2009 Aug 05 11:36 AM
Hi Marco,
<li>Try this way.
<li>Some times when you pass value to destination transaction or program using SET, it may not be reflected. the reason is that there should be GET statement to get the value sent to memory id. If that statement is not used, value is not available.
Thanks
Venkat.ODATA:
it_rsparams TYPE STANDARD TABLE OF rsparams,
wa_rsparams LIKE LINE OF it_rsparams.
wa_rsparams-selname = 'SD_SAKNR'. "Screen field name SD_SAKNR for G/L account
wa_rsparams-kind = 'S'. "S=Select-options P=Parameters
wa_rsparams-sign = 'I'.
wa_rsparams-option = 'EQ'.
wa_rsparams-low = '11010'.
wa_rsparams-high = space.
APPEND wa_rsparams TO it_rsparams.
SUBMIT fagl_account_items_gl VIA SELECTION-SCREEN
WITH SELECTION-TABLE it_rsparams AND RETURN.
‎2009 Aug 05 11:24 AM
‎2009 Aug 05 11:24 AM
HI,
For which field are you setting the parameter ID?
Regards,
Ankur Parab
‎2009 Aug 05 11:30 AM
Hi,
Please check PARAMETER ID 'XXX' is same of the field on Secreen.
To check parameter Id of a field press F1 on the field and then click Technical Information button.
Tou will get Parameter ID Field on Pop up.
For Example in ME59n, Field Plant has Parameter ID as WRK.
Thanks & Regards,
ShreeMohan
‎2009 Aug 05 11:31 AM
> Pls note ME59N is a report
> Marco M.
ME59N is a transaction for sure.
Edited by: Rainer Hübenthal on Aug 5, 2009 12:31 PM
‎2009 Aug 05 11:33 AM
Hi,
Could you please give for which field you are seting parameter ID.
‎2009 Aug 05 11:36 AM
Hi Marco,
<li>Try this way.
<li>Some times when you pass value to destination transaction or program using SET, it may not be reflected. the reason is that there should be GET statement to get the value sent to memory id. If that statement is not used, value is not available.
Thanks
Venkat.ODATA:
it_rsparams TYPE STANDARD TABLE OF rsparams,
wa_rsparams LIKE LINE OF it_rsparams.
wa_rsparams-selname = 'SD_SAKNR'. "Screen field name SD_SAKNR for G/L account
wa_rsparams-kind = 'S'. "S=Select-options P=Parameters
wa_rsparams-sign = 'I'.
wa_rsparams-option = 'EQ'.
wa_rsparams-low = '11010'.
wa_rsparams-high = space.
APPEND wa_rsparams TO it_rsparams.
SUBMIT fagl_account_items_gl VIA SELECTION-SCREEN
WITH SELECTION-TABLE it_rsparams AND RETURN.