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

Not Getting Second screen value in ALV Interactive

Former Member
0 Likes
515

HI Gurus,         I have created ALV INteractive for Vendor Report,but here second screen is not showing, In the first screen i have sumed all DMBTR and NETWR entries, and i need indivisual entries for perticulat lifnr on second screen.Which was not showing at all. Please let me know where I am doing wrong. Thanks Sankil

3 REPLIES 3
Read only

Former Member
0 Likes
485

I have done it. Thanks

Read only

arivazhagan_sivasamy
Active Contributor
0 Likes
485

Hi Sankil,

You are not appending the value.

        LOOP AT wt_ekbe into wa_ekbe WHERE ebeln = wa_final-ebeln.

          wa_final1-lifnr  =   wa_lfa1-lifnr.

          wa_final1-ebeln  =   wa_ekbe-ebeln.

          wa_final1-dmbtr  =   wa_ekbe-dmbtr.

        APPEND WA_FINAL1.

        ENDLOOP.

Arivazhagan S

Read only

former_member187748
Active Contributor
0 Likes
485

Hi Sankil,

when you have looped at  wt_ekbe into wa_ekbe WHERE ebeln = wa_final-ebeln.

you have to use append srtructure, so that it can be polpulated there in second list.

Please see this code

LOOP AT wt_ekbe into wa_ekbe WHERE ebeln = wa_final-ebeln.

           wa_final1-lifnr  =   wa_lfa1-lifnr.

           wa_final1-ebeln  =   wa_ekbe-ebeln.

           wa_final1-dmbtr  =   wa_ekbe-dmbtr.

APPEND wa_final1 TO wt_final1.

         ENDLOOP.