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

Regarding Table control in BDC

Former Member
0 Likes
418

Hi every body,

I have one issue in my table control it is showing 4 rows, and in quality it is showing 3 rows , so how to solve this error to upload data, in quality box.

thanks & Ragards,

vinesh.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
403

Hi,

Do the code as below.

data:lv_options like ctu_params.

lv_options-defsize = 'X'.

CALL TRANSACTION tcode.....

OPTIONS lv_options.

Rgds,

Bujji

Hi,

Do the code as below.

data:lv_options like ctu_params.

lv_options-defsize = 'X'.

CALL TRANSACTION tcode.....

OPTIONS lv_options.

Rgds,

Bujji

2 REPLIES 2
Read only

Former Member
0 Likes
404

Hi,

Do the code as below.

data:lv_options like ctu_params.

lv_options-defsize = 'X'.

CALL TRANSACTION tcode.....

OPTIONS lv_options.

Rgds,

Bujji

Read only

Former Member
0 Likes
403

While doing recording for your transaction, do not enter the details directly into the table control.

Always Press "Insert" button and then enter the first record details in table control.

As a result, user command for "insert" button is captured in your recording.

Then in the program, put a loop on the part containing "insert" command and the field values.

Then there qwould be no issue, if the quality server has higher number or lower number of rows in the table control.