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

DYNPRO Not Defined

former_member51562
Participant
0 Likes
505

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

naimesh_patel
Active Contributor
0 Likes
453

Try by putting the program name in Upper Case.

call subscreen current_budget_area including 'ZFCSRO400' '0210'.

Regards,

Naimesh Patel

2 REPLIES 2
Read only

naimesh_patel
Active Contributor
0 Likes
454

Try by putting the program name in Upper Case.

call subscreen current_budget_area including 'ZFCSRO400' '0210'.

Regards,

Naimesh Patel

Read only

Former Member
0 Likes
453

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

call subscreen current_budget_area including  sy-repid   '0210'.