<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic ABAP DYNPRO DOES NOT EXIST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dynpro-does-not-exist/m-p/12066560#M1969730</link>
    <description>&lt;P&gt;I cannot run this simple abap program:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;REPORT  ZSAM11.

data: ok_code type sy-ucomm.

parameters: p_carrid type sflight-carrid.
start-of-selection.
  call screen 100.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
module status_0100 output.
  set pf-status '0100'.
*  SET TITLEBAR 'xxx'.

endmodule.                 " STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  USER_COMMAND_0100  INPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
module user_command_0100 input.

  case ok_code.
    when 'BACK'.

      set screen 0.
      leave screen.
  endcase.

endmodule.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;I am getting:&lt;/P&gt;
  &lt;BLOCKQUOTE&gt; 
   &lt;P&gt;The system attempted to use dynpro 100 in program zsam11. This dynpro does not exist.&lt;/P&gt;
  &lt;/BLOCKQUOTE&gt;
  &lt;P&gt;Maybe I do not have dynpro installed in sap or something. you know how to add this dynpro or screen to sap or how else this can be fixed?&lt;/P&gt;</description>
    <pubDate>Wed, 21 Aug 2019 09:39:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2019-08-21T09:39:51Z</dc:date>
    <item>
      <title>ABAP DYNPRO DOES NOT EXIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dynpro-does-not-exist/m-p/12066560#M1969730</link>
      <description>&lt;P&gt;I cannot run this simple abap program:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;REPORT  ZSAM11.

data: ok_code type sy-ucomm.

parameters: p_carrid type sflight-carrid.
start-of-selection.
  call screen 100.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
module status_0100 output.
  set pf-status '0100'.
*  SET TITLEBAR 'xxx'.

endmodule.                 " STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  USER_COMMAND_0100  INPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
module user_command_0100 input.

  case ok_code.
    when 'BACK'.

      set screen 0.
      leave screen.
  endcase.

endmodule.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;I am getting:&lt;/P&gt;
  &lt;BLOCKQUOTE&gt; 
   &lt;P&gt;The system attempted to use dynpro 100 in program zsam11. This dynpro does not exist.&lt;/P&gt;
  &lt;/BLOCKQUOTE&gt;
  &lt;P&gt;Maybe I do not have dynpro installed in sap or something. you know how to add this dynpro or screen to sap or how else this can be fixed?&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 09:39:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dynpro-does-not-exist/m-p/12066560#M1969730</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-08-21T09:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP DYNPRO DOES NOT EXIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dynpro-does-not-exist/m-p/12066561#M1969731</link>
      <description>&lt;P&gt;You have to create screen 100 under your program. You can learn more about dynpro on &lt;A href="https://help.sap.com/doc/abapdocu_750_index_htm/7.50/en-US/abapcall_screen.htm"&gt;https://help.sap.com/doc/abapdocu_750_index_htm/7.50/en-US/abapcall_screen.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 10:20:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dynpro-does-not-exist/m-p/12066561#M1969731</guid>
      <dc:creator>jitendra_it</dc:creator>
      <dc:date>2019-08-21T10:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP DYNPRO DOES NOT EXIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dynpro-does-not-exist/m-p/12066562#M1969732</link>
      <description>&lt;P&gt;You only copied one of the objects required (the main code source, but forgot Dynpro and probably menu, texts, etc.&lt;/P&gt;&lt;P&gt;Double-click on the 100 after call screen, or use SE51 to create the dynpro with attributes, fields, layout and execution logic. &lt;/P&gt;&lt;P&gt;Do the same operation for the menu after set pf-status or use SE41. &lt;/P&gt;&lt;P&gt;(Or use SE80 and its contextual menu/tree display for navigation)&lt;/P&gt;&lt;P&gt;But, first, find and read some book or course on Abap.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 11:31:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dynpro-does-not-exist/m-p/12066562#M1969732</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2019-08-21T11:31:14Z</dc:date>
    </item>
  </channel>
</rss>

