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: 

Classical program possible with more than two screens ?

Former Member
0 Kudos

Hi,

I need a report with 3 screens. To my knowledge, classic report can be done with two screens and module pool with multiple screens. Can the below requirement be achieved with classical programming alone ? If so, can we place some buttons on the second screen to execute further ? If possible, point me to some standard programs or some code as well.

1) An selection screen with input fields on the first screen.

2) Display screen with records on the second along with an execution button on the top.

3) Result of execution on the third screen.

Thanks,

Gaurav.

3 REPLIES 3

Former Member
0 Kudos

Hi,

Why would this be impossible?

I don't think there is such limitation...


PARAMETERS: p_input(10).

START-OF-SELECTION.
   call screen '100'.
"....
MODULE USER_COMMAND input.
"...
  CASE save_ucomm.
    WHEN 'EXEC'. call screen '200'.
  ENDCASE.
ENDMODULE.
"...

Did I misunderstood your question?

Kr,

Manu.

0 Kudos

Any possibility without using 'screen' ? In normal classical reports, we don't call any screen. If it is not possible, then i will go with how you say..

Thanks,

Gaurav.

0 Kudos

Any possibility without using 'screen' ?

of course... by using lists and write statements instead (or ALVs), and gui status to handle your functions...

Kr,

Manu.