‎2008 Sep 04 6:06 AM
Hi in my requirment i need 3 dates report date,posting date and asset value date...Have already got the report date and posting date now have to get the asset value date..actually the posting date start date is the "from date" of asset value date and report date end date is the "to date" of asset value date.
consider if posting date start date is lv_start the same value should be moved to the from date of asset value and if report date end date is lv_end this same should be moved to asset value end date.How to do it?
‎2008 Sep 04 1:41 PM
If this question is pertains to internal table then apply the loop to the internal table and use MODIFY itab statement in loop.
‎2008 Sep 04 1:45 PM
Hi Hema,
Try this way :
In AT SELECTION-SCREEN OUTPUT event , Loop at screen table.
AT SELECTION-SCREEN OUTPUT .
loop at screen.
if screen-name cs 'S_ASSET'.
S_ASSET-LOW = LV_START.
S_ASSET-HIGH = LV_END.
APPEND S_ASSET.
endif.
modify screen.
endloop.This will work.
Regards,.
Swapna.
Edited by: NagaSwapna Thota on Sep 4, 2008 6:16 PM