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 locking lines for new entry

Former Member
0 Likes
481

Dear All

I have a table control on PBO its populating data, when displayed its locking all fields for new entry. i want to capture new entry, what can i do. its not a wizard table control.

Please help

William Mutero

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
436

Hi,

Go through this program: DEMO_DYNPRO_TABCONT_LOOP_AT

Hope this helps.

Regards,

Deepthi.

3 REPLIES 3
Read only

Former Member
0 Likes
436

Hi:

In the flow logic use the sample code for removing the lock on the fields. means to make the input field enable again

process after input.
  loop at g_ac123_itab.
    chain.
      field ztn_record-mandt.
      field ztn_record-empid.
      field ztn_record-empphno.
      field ztn_record-empname.
      field ztn_record-newfield.
      module ac123_modify on chain-request.
    endchain.
  endloop.

Read only

Former Member
0 Likes
436

use INSERT INITIAL LINE INTO itab.

Read only

Former Member
0 Likes
437

Hi,

Go through this program: DEMO_DYNPRO_TABCONT_LOOP_AT

Hope this helps.

Regards,

Deepthi.