‎2009 Feb 01 10:44 AM
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
‎2009 Feb 01 1:00 PM
Hi,
Go through this program: DEMO_DYNPRO_TABCONT_LOOP_AT
Hope this helps.
Regards,
Deepthi.
‎2009 Feb 01 10:54 AM
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.
‎2009 Feb 01 10:54 AM
‎2009 Feb 01 1:00 PM
Hi,
Go through this program: DEMO_DYNPRO_TABCONT_LOOP_AT
Hope this helps.
Regards,
Deepthi.