2014 Jun 30 8:19 AM
Hi,
In Quality Info record Report i want to display all the fields presented in QINF table,same time one additional column is to be added
with editable option.In some condition user will type some value or (some date)in the editable field and save it,while saving it is to be updated on release date field in Qinf table.May i know how to save and update it.
Hi,
In Quality Info record Report i want to display all the fields presented in QINF table,same time one additional column is to be added
with editable option.In some condition user will type some value or (some date)in the editable field and save it,while saving it is to be updated on release date field in Qinf table.May i know how to save and update it.
2014 Jun 30 8:33 AM
U need to create pushbotton.
after display report and updating value you press that pushbotton.
using PF-status u need to write UPDATE query as per updated value in report.
hope you understand,
Regards,
Sandeep
2014 Jun 30 8:46 AM
Hi Anitha,
To update a DB table from a work area or an internal table, you have to declare the work area or an internal table of type DB table.
While updating using work area make sure that the mandt field is filled.
UPDATE dbtable FROM workarea.
Or.. You can set the value for a particular field using..
UPDATE SFLIGHT SET SEATSOCC = wa-seatsocc
WHERE CARRID = wa-carrid AND
CONNID = wa-connid AND
FLDATE = wa-fldate.