‎2008 Jun 10 10:48 AM
hi all,
is it possible to update one screen field (which is not a field of d table control) in CHAIN ENDCHAIN of a table control.
plz suggest.
rgds,
Avijit
‎2008 Jun 10 11:04 AM
sure is.. simply don't do it within the loop of the table control
‎2008 Jun 10 11:13 AM
hi paul,
i want 2 update d other field when validation fails 4 one table control field and cursor is on that table control field and error msg is showing.
plz help.
rgds,
Avijit
‎2008 Jun 10 11:22 AM
Thats different then what you first asked, but you should be able to do this
LOOP AT wt_zlmpers.
CHAIN.
FIELD wt_zlmpers_rec-fname.
FIELD wt_zlmpers_rec-lname.
FIELD wt_zlmpers_rec-birthdat.
FIELD wt_zlmpers_rec-hobby.
MODULE EDIT_ME. "<== in this module if edit fails.. update your other field
ENDCHAIN.
FIELD wt_zlmpers_rec-sel
MODULE tblclt_zlmpers_mark ON REQUEST. " <== maybe here.. not sure exactly
ENDLOOP.
‎2008 Jun 10 11:38 AM
hi paul,
thnks 4 ur reply.
kindly explain in detail.
i am updating d other fld as u have suggested but it is not getting updated as error msg is showing and PBO is not firing and the other fld is not in chain-endchain block of table control.
plz help.
rgds,
Avijit