‎2007 Jun 14 2:53 PM
Hi,
Can anybody send me a sample program in which CTU_PARAMS is used
in call transaction in BDC Recording and also where the Screen is Controlled
using CTU_PARAMS.
Regards,
Kevin Nick.
‎2007 Jun 14 2:59 PM
Hi,
Check this
data: begin of i_options occurs 0.
include structure ctu_params.
data: end of i_options.
refresh : i_bdc, i_message, i_options.
move : 'N' to i_options-dismode,
'L' to i_options-updmode,
c_x to i_options-defsize.
append i_options.
call transaction v_tcode using i_bdc options from i_options
messages into i_message.
aRs
‎2007 Jun 14 3:16 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.