‎2007 Mar 22 11:23 PM
hi..
I am having the situation like...
If one field value is something like 0003 i have to blank the remaining filed values for that record....
eg:
if t001l-lgort = '0003' the i have to blank the remaining fields like mard-lgort, ekpo-ebelp ...
how to do that can anyone guide me
SIRI
‎2007 Mar 22 11:32 PM
if you are talking about program then -
if t001l-lgort = '0003' .
move spaces to mard lgort, ekpo-ebelp.
endif.
Regards,
Amit
‎2007 Mar 22 11:30 PM
blank where? if it is in your program, use clear ie
if t001l-lgort = '0003' .
CLEAR: mard-lgort, ekpo-ebelp.
endif.
~Suresh
‎2007 Mar 22 11:32 PM
if you are talking about program then -
if t001l-lgort = '0003' .
move spaces to mard lgort, ekpo-ebelp.
endif.
Regards,
Amit
‎2007 Mar 23 4:14 AM
Hello ,
Clear will be best use for doing this .
If you mean work area or if you want to change the records in database..
you can use UPDATE by giving all the key fields in the where condition of it .
Thanks .