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

table control-bdc

rcvalluri
Explorer
0 Likes
919

hi!

when the screen resolution changes visible lines in table control changes.we handle this using ctu_params in call transaction method.how do we achieve this in session method?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
831

Yes. The code is perfect.

Award points if my replies are helpfull.

5 REPLIES 5
Read only

Former Member
0 Likes
831

When you use BDC_INSERT function module there is an import parameter CTUPARAMS. Pass CTU_PARAMS to this import parameter.

Read only

0 Likes
831

hi sudhir!

thanq. how do we pass value to that parameter.see below.is it right?

data: ctup like ctu_params.

ctup-defsize = 'X'.

call function 'BDC_INSERT'

exporting

ctuparams = ctup

....

.

Read only

Former Member
0 Likes
831

Hi nani,

do you mean the ctu_params in CALL TRANSACTION?

i do it like this:

...

DATA: CTU_PARAMS_0 LIKE CTU_PARAMS.

...

  • More Information

  • look at SE11 with CTU_PARAMS

MOVE 'E ' TO CTU_PARAMS_0.

CALL TRANSACTION 'FB03' USING BDCDATA OPTIONS FROM CTU_PARAMS_0.

Regards, Dieter

Read only

Former Member
0 Likes
831

HI,

See the link for example program, how to handle table control in Session method:-

http://www.sap-basis-abap.com/abap/handling-table-control-in-bdc.htm

<b>also, refer this thread:</b>

Regards

Sudheer

Read only

Former Member
0 Likes
832

Yes. The code is perfect.

Award points if my replies are helpfull.