Application Development 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: 

Input table control for data entry..

Former Member
0 Kudos

Hi,

In my module pool, one of the screens needs to have a table control with following fields:

Port Date Qty shipped

On F4 in the column Port, list of all ports from say table T615 must be displayed. User must be able to select one of them. Then user must be able to select a date by pressing F4 and then he must be able to enter the value in the last column which needs to be validated !! Finally when user selects save, the rows he entered in this table must be inserted in my custom table.

Can anyone suggest step by step how to achieve this ?

I have tried creating table control based on program internal table which displays data and it works fine.

But this one is for input !! any help ? thks

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Try this.

1. While designing set the table control as input field.

2. In ur program create an internal table, with the same structure as your table control.

3. Whenever an entry is made in the table control, modify your internal table.

4. While saving use the internal table data to update the custom table.

Sharin

1 REPLY 1

Former Member
0 Kudos

Hi,

Try this.

1. While designing set the table control as input field.

2. In ur program create an internal table, with the same structure as your table control.

3. Whenever an entry is made in the table control, modify your internal table.

4. While saving use the internal table data to update the custom table.

Sharin