Application Development 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: 

display reports in a tree structure

former_member185116
Active Participant
0 Kudos

hello all,

we have some 30 Reports,

module wise we want to display those reports under nodes such as PS,PM and FI...

on double clicking the report text it should call the corresponding report,

how do i achieve this...

2 REPLIES 2

FredericGirod
Active Contributor
0 Kudos

Hi,

that looks like menu painter --> SE43

regards

Fred

0 Kudos

Hi Vinay,

You can use an interactive list for doing this. In your landing page have a write statement for various keywords -

Write 'PS'.

uline.

write 'FI'.

....

At line-selection.

     get cursor field <field name> value <field value>. " any field name

     case <field value>

          when 'PS'.

               submit <ps report> and return.

          when 'FI'.

               submit <FI report> and return.

          ...

     endcase.

Please do not copy paste as I have just typed it and refer to SAP documentation for correct syntax.

Best of luck.

Best regards,

Saurabh