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: 

Calling Double Screen Simultaniously

Former Member
0 Kudos

HI,

Anybody tell me how to call 2 screens at a time by using a button in report (classical report) program.

Thanks in advance.

Anil

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

You can do this as follows :


REPORT  ZWVTEST1.

CALL FUNCTION 'Z_TEST1' starting new task 'WV_TEST' destination 'NONE'.

CALL SCREEN 100.

Code for function module :


FUNCTION Z_TEST1.
*"----------------------------------------------------------------------
*"*"Local Interface:
*"----------------------------------------------------------------------

call screen 100 starting at 6 1 ending at 110 24.

ENDFUNCTION.

You need to RFC enable the function module.

2 REPLIES 2

Former Member
0 Kudos

I don't think it is possible..

Thanks

Seshu

Former Member
0 Kudos

Hi,

You can do this as follows :


REPORT  ZWVTEST1.

CALL FUNCTION 'Z_TEST1' starting new task 'WV_TEST' destination 'NONE'.

CALL SCREEN 100.

Code for function module :


FUNCTION Z_TEST1.
*"----------------------------------------------------------------------
*"*"Local Interface:
*"----------------------------------------------------------------------

call screen 100 starting at 6 1 ending at 110 24.

ENDFUNCTION.

You need to RFC enable the function module.