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_FOUND

Former Member
0 Likes
1,008

Hi,

I am trying to execute the following program directly taking from ABAP docu, but I am getting an runtime error "Dynpro does not exist"

"REPORT Y_DEMO_DYNPRO_INPUT_OUTPUT.

PROGRAM demo_dynpro_dictionary.

TABLES demo_conn.

DATA wa_spfli TYPE spfli.

CALL SCREEN 100.

MODULE init_screen_100 output.

CLEAR demo_conn-mark.

MOVE-CORRESPONDING wa_spfli TO demo_conn.

CLEAR wa_spfli.

ENDMODULE.

MODULE user_command_0100 input.

IF demo_conn-mark = 'X'.

LEAVE PROGRAM.

ENDIF.

MOVE-CORRESPONDING demo_conn TO wa_spfli.

SELECT SINGLE

cityfrom airpfrom cityto airpto fltime deptime arrtime

INTO CORRESPONDING FIELDS OF wa_spfli

FROM spfli

WHERE carrid = wa_spfli-carrid AND connid = wa_spfli-connid.

ENDMODULE.

Can any one please help me in this case.

Regards,

Koushik

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
977

Hi,

Double click on 100. You will get a pop up whether to create screen.

select yes.

In the module screen, uncomment the module stmts in PBO AND PAI, save and activate.

Now execute ur prg.,

Regards,

Subramanian

8 REPLIES 8
Read only

Former Member
0 Likes
978

Hi,

Double click on 100. You will get a pop up whether to create screen.

select yes.

In the module screen, uncomment the module stmts in PBO AND PAI, save and activate.

Now execute ur prg.,

Regards,

Subramanian

Read only

former_member195383
Active Contributor
0 Likes
977

you are calling screen 100.if that is not existing u will get this error.Create the screen 100 if already have not created...If u hav created screen 100 then see if it is active or not..Other wise activate it...

Hope this helps u out...

Reward points if ans is useful

Read only

0 Likes
977

Yes... now the scree is appraring but there is no objects, means no textbox,no level etc ...

Why this is happening and how to resolve this one.

Regards,

Koushik

Read only

0 Likes
977

Hi,

Check the standard example prg. check the layout in screen 100, and create your screen also similar to that.

Regards,

Subramanian

Read only

0 Likes
977

Hi,

As I have specified I have taken a direct example from ABAP docu. So, which stardard program you are talking about, can you please specify.

Regards,

Koushik

Read only

0 Likes
977

Hi,

Actually I am not able to edit the screen element part (except name). How could I edit this part?

Regards,

Koushik

Read only

Former Member
0 Likes
977

Hi Koushik,

you get this error as the Screen 100 is not created for that program...

so go to SE51 and specify the program name and also give 100 and check whether any screen is persent or not for this program....

if not create the screen if possible with another number and change the screen number in your program...

Hope this would help you.

Regards,

Narin Nandivada

Read only

0 Likes
977

Hi,

My question is now how can I will be modify the element list?

It is appears to be non editable.

Regards,

Koushik