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

modify work area field

Former Member
0 Likes
3,453

dear all,

how can i modify any work area field.

thanks

shashi

Moderator Message: Vague and Basic Question.

Edited by: kishan P on Mar 3, 2011 9:52 AM

dear all,

how can i modify any work area field.

thanks

shashi

Moderator Message: Vague and Basic Question.

Edited by: kishan P on Mar 3, 2011 9:52 AM

1 REPLY 1
Read only

Former Member
0 Likes
1,109

Hi Shashi

suppose you have a work area field like WA_ABC-Field1

you can assign a value for that like WA_ABC-Field1 = 'Value1'

then you want to change WA_ABC-Field1 value you can do it in the same way

WA_ABC-Field1 = 'Value2'

finally you can modify your internal table in following way

MODIFY IT_ABC FROM WA_ABC.

Thanks in Advance