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

how can we update data base table in an report program

Former Member
0 Likes
556

can any one explain in detail how can we update data base table in an report program

can any one explain in detail how can we update data base table in an report program

4 REPLIES 4
Read only

andreas_mann3
Active Contributor
Read only

Former Member
0 Likes
529

Hi,

it's very simple,

suppose take a dbtable <b>'SBOOK'</b>

if you want to update <b>CONNID</b> value with some other value where <b>CARRID = 'abc'</b> suppose.

then

tables: sbook.

<b>update sbook set connid = 45 where carrid = 'abc'.</b>

the existing value of connid chages

please assign points if it helps you

Regards,

Sowjanya

Read only

Former Member
0 Likes
529

Raja,

you can insert, modify and delete DB records usign work area as following stmets..

INSERT INTO zppa_idr_payscal VALUES wa_payscal.

MODIFY zppa_idr_curr FROM wa_curr.

DELETE TABLE t_jobs FROM wa_jobs.

-Anu

Read only

Former Member
0 Likes
529

Hi

U can use update or modify statement to update database tables.