<?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: create object in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-object/m-p/2319751#M509101</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello srinivasan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;container-name is a parameter in constructor of cl_gui_custom_container class, it holds the name of th 'custom control'  which u have pasted on the screen and this inturn holds the alv grid at run time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so when u create an instance of cl_gui_custom_container it asks for the parameter container_name, give the name of the custom control  u have pasted in your screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 May 2007 12:36:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-31T12:36:02Z</dc:date>
    <item>
      <title>create object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-object/m-p/2319748#M509098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am new to OO-ABAP.&lt;/P&gt;&lt;P&gt;i am creating an object with ref to a class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data:       g_custom_container type ref to cl_gui_custom_container,

create object g_custom_container
                  exporting container_name = 'CUST_CONT'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could anybody pls clarify that what is the parameter &amp;lt;b&amp;gt;CONTAINER_NAME&amp;lt;/b&amp;gt; is for? i cannot see that parameter in the class. could somebody pls explain me the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;srini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2007 08:02:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-object/m-p/2319748#M509098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-25T08:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: create object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-object/m-p/2319749#M509099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Srinivasan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look at the sample report &amp;lt;b&amp;gt;BCALV_GRID_DEMO&amp;lt;/b&amp;gt;. The container name is the name of the custom control on the dynpro where you want to display your ALV list. This way you "attach" your container instance to this custom control element on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2007 08:07:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-object/m-p/2319749#M509099</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2007-05-25T08:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: create object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-object/m-p/2319750#M509100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to go in se24 to display "cl_gui_custom_container"&lt;/P&gt;&lt;P&gt;see the signatur of the CONSTRUCTOR method &lt;/P&gt;&lt;P&gt;and container_name is "Name of the dynpro CustCtrl name to link this container to".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have first to define in your DYNPRO a custom container with the SCREEN PAINTER and give it a name, for ex 'CUST_CONT'. &lt;/P&gt;&lt;P&gt;Then you create the object and can use it (for example to display a grid...)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2007 08:11:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-object/m-p/2319750#M509100</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-25T08:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: create object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-object/m-p/2319751#M509101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello srinivasan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;container-name is a parameter in constructor of cl_gui_custom_container class, it holds the name of th 'custom control'  which u have pasted on the screen and this inturn holds the alv grid at run time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so when u create an instance of cl_gui_custom_container it asks for the parameter container_name, give the name of the custom control  u have pasted in your screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 12:36:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-object/m-p/2319751#M509101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T12:36:02Z</dc:date>
    </item>
  </channel>
</rss>

