‎2007 May 23 4:51 PM
Hi,
I am doing one BDC Program.
I am using Session Method.
And i want to pass CTUPARMS value in the 'BDC_INSERT' function module
how to pass the value of it.
Thanks in Advance.
Kumar A.
‎2007 May 23 4:55 PM
data: f_option type ctu_params,
f_option-updmode = 'S'.
f_option-defsize = 'X'.
f_option-dismode = 'N'.
call transaction 'VA01' using bdcdata options from f_option messages into bdcerror.
‎2007 May 23 4:55 PM
data: f_option type ctu_params,
f_option-updmode = 'S'.
f_option-defsize = 'X'.
f_option-dismode = 'N'.
call transaction 'VA01' using bdcdata options from f_option messages into bdcerror.