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

interactive report-2

Former Member
0 Likes
229

interactice report >>when i click on customer no .then in secandary list i want to see the customer no and customer name at the top and down order list

1 REPLY 1
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
206

Very simple approach here..........


report zrich_0004.

data: ikna1 type table of kna1 with header line.

start-of-selection.

select * into table ikna1 from kna1 up to 20 rows.

loop at ikna1.

     format hotspot on.
       write:/ ikna1-kunnr.
       hide ikna1-kunnr.
     format hotspot off.

endloop.

at line-selection.
    read table ikna1 with key ikna1-kunnr.
     write:/ ikna1-kunnr, ikna1-name1.

Regards,

Rich Heilman