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

Copying values

Former Member
0 Likes
615

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?

2 REPLIES 2
Read only

Former Member
0 Likes
518

If this question is pertains to internal table then apply the loop to the internal table and use MODIFY itab statement in loop.

Read only

Former Member
0 Likes
518

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