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 in Editable mode

Former Member
0 Likes
508

Hello All,

I have created an infotype which has a table control. But all the table control lines are in non-editable mode. I would like to have all the lines in editable mode.

Kindly help out.

Regards,

shails

1 ACCEPTED SOLUTION
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
473

If your internal table contains no record and when you are refering to the table control then all the lines will get disabled.

Now you will be knowing the number of lines your table control displays in singe page...say 10 lines.

So initially in the PBO append 10 initial lines to your itab. then set the property lines of the table control to the total lines of internal table.

Now in pbo capture the user command page down and append 10 initial lines to your itab.

Hope you got the idea.

Now if your itab already has some records , then just set the lines as total record count of your internal table.

Also change the property in the screen attributes for each field of the control

3 REPLIES 3
Read only

Former Member
0 Likes
473

Hello shails81

Specify in the 1° modification group of the fields on this table control the same number that is inserted in the other fields that are editable.

Att.

Kleber Santos

Read only

Former Member
0 Likes
473

Hello Kleber,

The table control is in a display mode. None of the fields are editable. I want all the fields or rows to be enabled for user input.

Regards,

shails

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
474

If your internal table contains no record and when you are refering to the table control then all the lines will get disabled.

Now you will be knowing the number of lines your table control displays in singe page...say 10 lines.

So initially in the PBO append 10 initial lines to your itab. then set the property lines of the table control to the total lines of internal table.

Now in pbo capture the user command page down and append 10 initial lines to your itab.

Hope you got the idea.

Now if your itab already has some records , then just set the lines as total record count of your internal table.

Also change the property in the screen attributes for each field of the control