<?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: -&amp;gt;* operator in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/gt-operator/m-p/1447302#M212130</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What it does, it takes the underlying DATA object from a dynamically created a element, and assigns that to the data element. Other wise there is no way dealing with the dynamically created object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Jun 2006 14:46:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-15T14:46:16Z</dc:date>
    <item>
      <title>-&gt;* operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gt-operator/m-p/1447300#M212128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;Im reading the documentation on -&amp;gt;* operator, and dont really understand how it works, can any body tell me its functionality?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jun 2006 14:39:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gt-operator/m-p/1447300#M212128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-15T14:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: -&gt;* operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gt-operator/m-p/1447301#M212129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically it is a deferencing operator. It is used for refering an anonymus object of any type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this piece of code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:   gt_dyn_table TYPE REF TO data,
        gs_dyn_line  TYPE REF TO data.

FIELD-SYMBOLS: &amp;lt;fs_quota&amp;gt;   TYPE STANDARD TABLE,
               &amp;lt;fs_amount&amp;gt;,
               &amp;lt;fs_quota_wa&amp;gt;.

*Create dynamic internal table
  CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table
               EXPORTING
                  it_fieldcatalog = gt_fldcat
               IMPORTING
                  ep_table        = gt_dyn_table.

  ASSIGN gt_dyn_table-&amp;gt;* TO &amp;lt;fs_quota&amp;gt;.

  CREATE DATA gs_dyn_line LIKE LINE OF &amp;lt;fs_quota&amp;gt;.
  ASSIGN gs_dyn_line-&amp;gt;* TO &amp;lt;fs_quota_wa&amp;gt;.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Naren Somen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jun 2006 14:40:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gt-operator/m-p/1447301#M212129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-15T14:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: -&gt;* operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gt-operator/m-p/1447302#M212130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What it does, it takes the underlying DATA object from a dynamically created a element, and assigns that to the data element. Other wise there is no way dealing with the dynamically created object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jun 2006 14:46:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gt-operator/m-p/1447302#M212130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-15T14:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: -&gt;* operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gt-operator/m-p/1447303#M212131</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;PRE&gt;&lt;CODE&gt;CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table
EXPORTING
it_fieldcatalog = t_fieldcat
IMPORTING
ep_table = r_dyn_table
EXCEPTIONS
generate_subpool_dir_full = 1
OTHERS = 2.

IF sy-subrc &amp;lt;&amp;gt; 0.
MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.

* Get access to new table using field symbol.

ASSIGN r_dyn_table-&amp;gt;* TO &amp;lt;t_dyn_table&amp;gt;.
* Create work area for new table.

CREATE DATA r_wa_dyn_table LIKE LINE OF &amp;lt;t_dyn_table&amp;gt;.

* Get access to new work area using field symbol.

ASSIGN r_wa_dyn_table-&amp;gt;* TO &amp;lt;wa_dyn_table&amp;gt;.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jun 2006 15:00:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gt-operator/m-p/1447303#M212131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-15T15:00:57Z</dc:date>
    </item>
  </channel>
</rss>

