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

execute report by selecting radio button from module pool screen

Former Member
0 Likes
1,209

HI,

      The requirement is to execute alv report and interactive report  both by selecting radio button from module pool screen means when i am selecting first radio button automatically execute alv report and same for other report kindly any one help for that

Regards

Anup.Pujari.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
993

Hi Anup,

You can write the 2 reports separately and use the function code in radio button.

On the basis of selection you can use SUBMIT <REPORT> AND Return . statement.

Regards

HI,

      The requirement is to execute alv report and interactive report  both by selecting radio button from module pool screen means when i am selecting first radio button automatically execute alv report and same for other report kindly any one help for that

Regards

Anup.Pujari.

6 REPLIES 6
Read only

Former Member
0 Likes
994

Hi Anup,

You can write the 2 reports separately and use the function code in radio button.

On the basis of selection you can use SUBMIT <REPORT> AND Return . statement.

Regards

Read only

0 Likes
993

Hi,

    Thanks & Regards.

Anup Pujari

Read only

former_member633287
Discoverer
0 Likes
993

Hi Anup,

You can create 2 separate programs  for both the reports and call it using

SUBMIT VIA SELECTION-SCREEN. 

Read only

0 Likes
993

Hi,

    Thanks & Regards.

Anup Pujari

Read only

Former Member
0 Likes
993

You could write creating alv report in one subroutine say display_alv, and creating interactive report in another subroutine say display_interactive.

in the at selection screen output event.

if r_a = 'X'.

  perform display_alv.

else.

perform display_interactive.

endif.

Read only

Former Member
0 Likes
993

Hi,

    Thanks & Regards

Anup Pujari