<?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 Re: What is the wrong in code while creating a container in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-wrong-in-code-while-creating-a-container/m-p/3493375#M840177</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lisa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the syntax seems to be ok, but what is the problem. Are you getting an error message when checking it? If so, what is the message?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. The =&amp;gt;run_application method should be placed after the set pf-status, better yet, in a separate module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Mar 2008 16:14:16 GMT</pubDate>
    <dc:creator>Sm1tje</dc:creator>
    <dc:date>2008-03-06T16:14:16Z</dc:date>
    <item>
      <title>What is the wrong in code while creating a container</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-wrong-in-code-while-creating-a-container/m-p/3493374#M840176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the wrong in code while creating container.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report  ZTEST_TREE4
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*

REPORT  ztest_tree4.


*----------------------------------------------------------------------*
*       CLASS lcl_application DEFINITION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
CLASS lcl_application DEFINITION CREATE PRIVATE.
  PUBLIC SECTION.
    CLASS-METHODS: run_application.
    METHODS constructor.
  PRIVATE SECTION.
    CLASS-DATA: s_container TYPE REF TO cl_gui_simple_container.

    DATA: container TYPE REF TO cl_gui_simple_container.

ENDCLASS.                    "lcl_application DEFINITION

*----------------------------------------------------------------------*
*       CLASS lcl_implementation DEFINITION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
CLASS lcl_application IMPLEMENTATION.
  METHOD run_application.
    IF lcl_application=&amp;gt;s_container IS INITIAL.
      CREATE OBJECT lcl_application=&amp;gt;s_container.
    ENDIF.


  ENDMETHOD.                    "run_application
  METHOD constructor.
    CREATE OBJECT container.
  ENDMETHOD.                    "constructor
ENDCLASS.                    "lcl_implementation DEFINITION
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
MODULE status_0100 OUTPUT.
  CALL METHOD lcl_application=&amp;gt;run_application.
  SET PF-STATUS 'CO_100'.
  SET TITLEBAR 'CO_100'.

ENDMODULE.                 " STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  USER_COMMAND_0100  INPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
MODULE user_command_0100 INPUT.

ENDMODULE.                 " USER_COMMAND_0100  INPUT
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  exit  INPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
MODULE exit INPUT.
  LEAVE PROGRAM.
ENDMODULE.                 " exit  INPUT

START-OF-SELECTION.
  CALL SCREEN 100.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Lisa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Lisa Roy on Mar 6, 2008 10:15 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Lisa Roy on Mar 6, 2008 10:29 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 15:12:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-wrong-in-code-while-creating-a-container/m-p/3493374#M840176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T15:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: What is the wrong in code while creating a container</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-wrong-in-code-while-creating-a-container/m-p/3493375#M840177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lisa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the syntax seems to be ok, but what is the problem. Are you getting an error message when checking it? If so, what is the message?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. The =&amp;gt;run_application method should be placed after the set pf-status, better yet, in a separate module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 16:14:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-wrong-in-code-while-creating-a-container/m-p/3493375#M840177</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-03-06T16:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: What is the wrong in code while creating a container</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-wrong-in-code-while-creating-a-container/m-p/3493376#M840178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Micky,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The progam is dumping at line  CREATE OBJECT lcl_application=&amp;gt;s_container.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 16:24:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-wrong-in-code-while-creating-a-container/m-p/3493376#M840178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T16:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: What is the wrong in code while creating a container</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-wrong-in-code-while-creating-a-container/m-p/3493377#M840179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lisa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a container must be placed in a respective screen area. Also the module calls must be implemented in your screen input and output sections. Finally you have to place something (a GUI control) in your container.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not see anything like this in your program. So I don't know what you are asking about. Do you get any error message?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 17:25:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-wrong-in-code-while-creating-a-container/m-p/3493377#M840179</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2008-03-06T17:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: What is the wrong in code while creating a container</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-wrong-in-code-while-creating-a-container/m-p/3493378#M840180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello clemens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we create a container with out placing a container in screen area?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 17:29:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-wrong-in-code-while-creating-a-container/m-p/3493378#M840180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T17:29:37Z</dc:date>
    </item>
  </channel>
</rss>

