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

Calling Double Screen Simultaniously

Former Member
0 Likes
457

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
Read only

Former Member
0 Likes
427

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
Read only

Former Member
0 Likes
427

I don't think it is possible..

Thanks

Seshu

Read only

Former Member
0 Likes
428

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.