Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

CTUPARMS IN SESSION METHOD

Former Member
0 Likes
300

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
279

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.

1 REPLY 1
Read only

Former Member
0 Likes
280

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.