‎2008 Jun 27 7:29 AM
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
‎2008 Jun 27 7:32 AM
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
‎2008 Jun 27 7:32 AM
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
‎2008 Jun 27 7:35 AM
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
‎2008 Jun 27 7:43 AM
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
‎2008 Jun 27 7:48 AM
Hi,
Check the standard example prg. check the layout in screen 100, and create your screen also similar to that.
Regards,
Subramanian
‎2008 Jun 27 7:51 AM
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
‎2008 Jun 27 8:16 AM
Hi,
Actually I am not able to edit the screen element part (except name). How could I edit this part?
Regards,
Koushik
‎2008 Jun 27 8:23 AM
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
‎2008 Jun 27 8:49 AM
Hi,
My question is now how can I will be modify the element list?
It is appears to be non editable.
Regards,
Koushik