Reputation: 1
I've created Table control which is used while entering data. Data will flow from table control to internal table and then to the database. For reading data into internal table, subroutines will be used. Currently I'm stuck in building Table Control logic. There are 8 rows displayed initially in TC, after 1st row is filled and user presses enter, the data inside TC is gone. I tried debugging default SAP program's to check their logic, but the naming convention is confusing me a lot. Another issue is of blank row. Suppose the user enters value in 4th row (keeping the 3rd row blank) the row should move UP automatically after user click's enter.
Any solution for the above problem ? Or any useful link which I can refer ?
Upvotes: 0
Views: 2487
Reputation: 424
Assuming the internal table for the table control is declared as a global variable, ensure you populate the data stored in this internal table to your table control at PBO time.
Please provide some coding to get a clue what exactly you are doing.
Upvotes: 0