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: 

DYNPRO Not Defined

former_member51562
Participant
0 Kudos

Hi all.

Trying to create a screen that contains a subscreen area (current-budget-area). I have the subscreen defined as # 0210. THe main screen that contains the subscreen area is screen # 0200.

In the PBO of 0200:

module status_0200.

call subscreen current_budget_area including 'zfcsro400' '0210'.

In the PAI of 0200:

call subscreen current_budget_area.

I have screen 210 defined as a subscreen.

I have everything defined in the same program (zfcsro400).

When I try to test the code, I get the following runtime error: DYNPRO_NOT_FOUND.

Any suggestions would be appreciated and points awarded.

1 ACCEPTED SOLUTION

naimesh_patel
Active Contributor
0 Kudos

Try by putting the program name in Upper Case.

call subscreen current_budget_area including 'ZFCSRO400' '0210'.

Regards,

Naimesh Patel

2 REPLIES 2

naimesh_patel
Active Contributor
0 Kudos

Try by putting the program name in Upper Case.

call subscreen current_budget_area including 'ZFCSRO400' '0210'.

Regards,

Naimesh Patel

former_member188685
Active Contributor
0 Kudos

is 200 and 210 are present in the same program then use this..

call subscreen current_budget_area including  sy-repid   '0210'.