‎2009 May 14 2:07 PM
Hi,
I'm trying to call function th_create_mode for transaktion CM25, but I should pass 4 parameters with the call function.
the function has an importing parameter: REFERENCE(PARAMETERS) TYPE STRING OPTIONAL.
So it seems all the passing parameters should be placed in a string.
What format should this string have? In other words, how do I place the passing parameters in the string?
Thx.
‎2009 May 14 2:10 PM
HI christophe,
see the sample code how to pass apramteres to FM 'TH_CREATE_MODE'
concatenate 'GUID=' l_async_data-id into l_async_parameter.
CALL FUNCTION 'TH_CREATE_MODE'
EXPORTING
transaktion = 'SWO_ASYNC'
parameters = l_async_parameter
process_dark = 'X'
del_on_eot = 1
IMPORTING
mode = mode_id .
Regards,
Prabhudas
‎2009 May 14 2:10 PM
HI christophe,
see the sample code how to pass apramteres to FM 'TH_CREATE_MODE'
concatenate 'GUID=' l_async_data-id into l_async_parameter.
CALL FUNCTION 'TH_CREATE_MODE'
EXPORTING
transaktion = 'SWO_ASYNC'
parameters = l_async_parameter
process_dark = 'X'
del_on_eot = 1
IMPORTING
mode = mode_id .
Regards,
Prabhudas