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

SCREEN PROGRAMS_TABLE_UPDATE

naveen_inuganti2
Active Contributor
0 Likes
304

Hi.... Friend...

Iam having one module pool program....while running the program transaction Iam generating and updating some field entreis into one table...

Now it is working correcty... but previously some records are updated....with out having one field entry, so now that field was empty for those records in the table..

That was the date field, actually i should also genarate while running the program, with some logic...

AND NOW I CAN HANDLE THAT FIELD IN ONE VARIABLE....

So Now how can i update that field into table...

(with programming i want to do this)

I will back if any clarification that you want,

Expect good marks,

Thank You,

Naveen.

1 ACCEPTED SOLUTION
Read only

Sm1tje
Active Contributor
0 Likes
286

If you insist on doing this with programming you can use the UPDATE command.

Select the record you want to update from the database into a workarea. Now change the entry of the field which was not filled before (date field). Next use UPDATE dbtable FROM workarea.

2 REPLIES 2
Read only

Sm1tje
Active Contributor
0 Likes
287

If you insist on doing this with programming you can use the UPDATE command.

Select the record you want to update from the database into a workarea. Now change the entry of the field which was not filled before (date field). Next use UPDATE dbtable FROM workarea.

Read only

Former Member
0 Likes
286

You can have those entries on your module pool screen and update that field , Upon saving those values will be save in the table..