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

QINF table-value updation

former_member225134
Participant
0 Likes
773

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.

2 REPLIES 2
Read only

Former Member
0 Likes
646

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

Read only

former_member202818
Active Contributor
0 Likes
646

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.