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

update a value in table.

Former Member
0 Likes
416

Hi Gurus,

I needed to write a small program to update the value of TVARV-LOW to F, programatically. for the already existing entries of TVARV where type = P, numb = 0001, sign = I, and option = EQ.

Can you please help..

Rgds

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
390

Hi,

You can do as below:


UPDATE TVARV SET   low = 'F' 
               WHERE type  = 'P'   AND 
                     numb = '0001' AND 
                     sign = 'I' and 
                   option = 'EQ'.

Thanks,

Sriram Ponna.

2 REPLIES 2
Read only

Former Member
0 Likes
391

Hi,

You can do as below:


UPDATE TVARV SET   low = 'F' 
               WHERE type  = 'P'   AND 
                     numb = '0001' AND 
                     sign = 'I' and 
                   option = 'EQ'.

Thanks,

Sriram Ponna.

Read only

0 Likes
390

Thanks a lot... it helped.