<?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: Pointers in ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointers-in-abap/m-p/2806427#M655866</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;there is no concept of pointer in abap.&lt;/P&gt;&lt;P&gt;here we have a concept called field-symbols.these fields are same as like pointers in other languages.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ex1:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF LINE OCCURS 0,&lt;/P&gt;&lt;P&gt;        COL1 TYPE I VALUE '11',&lt;/P&gt;&lt;P&gt;        COL2 TYPE I VALUE '22',&lt;/P&gt;&lt;P&gt;        COL3 TYPE I VALUE '33',&lt;/P&gt;&lt;P&gt;      END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA COMP(5) VALUE 'COL2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;F1&amp;gt;, &amp;lt;F2&amp;gt;, &amp;lt;F3&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN LINE TO &amp;lt;F1&amp;gt;.&lt;/P&gt;&lt;P&gt;ASSIGN COMP TO &amp;lt;F2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 3 TIMES.&lt;/P&gt;&lt;P&gt;  ASSIGN COMPONENT SY-INDEX OF STRUCTURE &amp;lt;F1&amp;gt; TO &amp;lt;F3&amp;gt;.&lt;/P&gt;&lt;P&gt;  WRITE &amp;lt;F3&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT &amp;lt;F2&amp;gt; OF STRUCTURE &amp;lt;F1&amp;gt; TO &amp;lt;F3&amp;gt;.&lt;/P&gt;&lt;P&gt;WRITE / &amp;lt;F3&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ex2:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;data:var1(10) value 'var2'.&lt;/P&gt;&lt;P&gt;data:var2(10) value 'var3'.&lt;/P&gt;&lt;P&gt;data:var3(10) value 'var4'.&lt;/P&gt;&lt;P&gt;data:var4(10) value 'output'.&lt;/P&gt;&lt;P&gt;field-symbols:&amp;lt;fs&amp;gt; type any.&lt;/P&gt;&lt;P&gt;field-symbols:&amp;lt;fs1&amp;gt; type any.&lt;/P&gt;&lt;P&gt;field-symbols:&amp;lt;fs2&amp;gt; type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign (var1) to &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;assign (&amp;lt;fs&amp;gt;) to &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;assign (&amp;lt;fs1&amp;gt;) to &amp;lt;fs2&amp;gt;.&lt;/P&gt;&lt;P&gt;write:/ &amp;lt;fs&amp;gt;, / &amp;lt;fs1&amp;gt;,/ &amp;lt;fs2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Sep 2007 04:53:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-03T04:53:07Z</dc:date>
    <item>
      <title>Pointers in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointers-in-abap/m-p/2806425#M655864</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;can any one plz tell me what are pointers in ABAP n how they can be used in report?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 04:48:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pointers-in-abap/m-p/2806425#M655864</guid>
      <dc:creator>VikasB</dc:creator>
      <dc:date>2007-09-03T04:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Pointers in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointers-in-abap/m-p/2806426#M655865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in ABAP Pointers call as Field symbols and see the example programs :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT CHAP2401.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Defining a Field Symbol&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Variable for later use&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA FIELD VALUE 'X'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Assigning a field to a Field Symbol&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ASSIGN FIELD TO &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Using a Field Symbol which has an assigned field&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;WRITE &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another one :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zfield_symbols .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF t_p0121,&lt;/P&gt;&lt;P&gt;pernr TYPE pa0121-pernr,&lt;/P&gt;&lt;P&gt;rfp01 TYPE pa0121-rfp01,&lt;/P&gt;&lt;P&gt;rfp02 TYPE pa0121-rfp02,&lt;/P&gt;&lt;P&gt;rfp03 TYPE pa0121-rfp03,&lt;/P&gt;&lt;P&gt;rfp04 TYPE pa0121-rfp04,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END OF t_p0121.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: it_p0121 TYPE STANDARD TABLE OF t_p0121 INITIAL SIZE 0,&lt;/P&gt;&lt;P&gt;wa_p0121 TYPE t_p0121.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: gd_index TYPE string,&lt;/P&gt;&lt;P&gt;gd_rfp0 TYPE string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;fs1&amp;gt;, &amp;lt;fs2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;*Start-of-selection.&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT pernr&lt;/P&gt;&lt;P&gt;rfp01&lt;/P&gt;&lt;P&gt;rfp02&lt;/P&gt;&lt;P&gt;rfp03&lt;/P&gt;&lt;P&gt;rfp04&lt;/P&gt;&lt;P&gt;UP TO 10 ROWS&lt;/P&gt;&lt;P&gt;FROM pa0121&lt;/P&gt;&lt;P&gt;INTO TABLE it_p0121.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;*End-of-selection.&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WA_P0121-RFP01 = '1234'.&lt;/P&gt;&lt;P&gt;CONCATENATE 'WA_P0121-RFP01' gd_index INTO gd_rfp0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Now watch how the values change as you loop around the table fields&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;LOOP AT it_p0121 INTO wa_p0121.&lt;/P&gt;&lt;P&gt;write:/.&lt;/P&gt;&lt;P&gt;write:/ wa_p0121-pernr.&lt;/P&gt;&lt;P&gt;CLEAR: gd_index.&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;gd_index = gd_index + 1.&lt;/P&gt;&lt;P&gt;CONCATENATE 'WA_P0121-RFP0' gd_index INTO gd_rfp0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;assign with brackets&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ASSIGN (gd_rfp0) TO &amp;lt;fs1&amp;gt;. "assigns the value of field name contained in variable&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;fs1 value would be the value of the field WA_P0121-RFP01..21&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;i.e. if index 1 and WA_P0121-RFP01 = 1234 then fs1 would = 1234&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;assign without brackets&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ASSIGN gd_rfp0 TO &amp;lt;fs2&amp;gt;. " assigns the exact value contained in the field&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;fs1 value would literally be the same as the field WA_P0121-RFP01..21&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;i.e. if index 1 then fs2 would = 'WA_P0121-RFP01'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;index 2 then fs2 would = 'WA_P0121-RFP02' etc...&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;you may also notice that once assigned any change made to the field gd_rfp0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;is instantly reflected in the field symbol (fs2) so technically you could perform&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;the assign command once outside of the loop, but i have left it here to aid&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;readability.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;write:/ &amp;lt;fs2&amp;gt;, &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;IF gd_index GE 21. "exit once last field has been read&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 04:52:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pointers-in-abap/m-p/2806426#M655865</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T04:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: Pointers in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointers-in-abap/m-p/2806427#M655866</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;there is no concept of pointer in abap.&lt;/P&gt;&lt;P&gt;here we have a concept called field-symbols.these fields are same as like pointers in other languages.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ex1:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF LINE OCCURS 0,&lt;/P&gt;&lt;P&gt;        COL1 TYPE I VALUE '11',&lt;/P&gt;&lt;P&gt;        COL2 TYPE I VALUE '22',&lt;/P&gt;&lt;P&gt;        COL3 TYPE I VALUE '33',&lt;/P&gt;&lt;P&gt;      END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA COMP(5) VALUE 'COL2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;F1&amp;gt;, &amp;lt;F2&amp;gt;, &amp;lt;F3&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN LINE TO &amp;lt;F1&amp;gt;.&lt;/P&gt;&lt;P&gt;ASSIGN COMP TO &amp;lt;F2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 3 TIMES.&lt;/P&gt;&lt;P&gt;  ASSIGN COMPONENT SY-INDEX OF STRUCTURE &amp;lt;F1&amp;gt; TO &amp;lt;F3&amp;gt;.&lt;/P&gt;&lt;P&gt;  WRITE &amp;lt;F3&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT &amp;lt;F2&amp;gt; OF STRUCTURE &amp;lt;F1&amp;gt; TO &amp;lt;F3&amp;gt;.&lt;/P&gt;&lt;P&gt;WRITE / &amp;lt;F3&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ex2:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;data:var1(10) value 'var2'.&lt;/P&gt;&lt;P&gt;data:var2(10) value 'var3'.&lt;/P&gt;&lt;P&gt;data:var3(10) value 'var4'.&lt;/P&gt;&lt;P&gt;data:var4(10) value 'output'.&lt;/P&gt;&lt;P&gt;field-symbols:&amp;lt;fs&amp;gt; type any.&lt;/P&gt;&lt;P&gt;field-symbols:&amp;lt;fs1&amp;gt; type any.&lt;/P&gt;&lt;P&gt;field-symbols:&amp;lt;fs2&amp;gt; type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign (var1) to &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;assign (&amp;lt;fs&amp;gt;) to &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;assign (&amp;lt;fs1&amp;gt;) to &amp;lt;fs2&amp;gt;.&lt;/P&gt;&lt;P&gt;write:/ &amp;lt;fs&amp;gt;, / &amp;lt;fs1&amp;gt;,/ &amp;lt;fs2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 04:53:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pointers-in-abap/m-p/2806427#M655866</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T04:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: Pointers in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointers-in-abap/m-p/2806428#M655867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vikas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            we use pointers to point address of variable . So you can use the data of variable by pointing address to the variable . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The good thing for pointer is you need not to keep data in your variable .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;DATA NAME(4) VALUE 'JOHN'. &lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;F&amp;gt; TYPE ANY. &lt;/P&gt;&lt;P&gt;ASSIGN NAME TO &amp;lt;F&amp;gt;. &lt;/P&gt;&lt;P&gt;WRITE &amp;lt;F&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output: JOHN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;DATA: NAME(12) VALUE 'JACKJOHNCARL', &lt;/P&gt;&lt;P&gt;      X(10)    VALUE 'XXXXXXXXXX'. &lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;F&amp;gt; TYPE ANY. &lt;/P&gt;&lt;P&gt;ASSIGN NAME+4 TO &amp;lt;F&amp;gt;. &lt;/P&gt;&lt;P&gt;WRITE &amp;lt;F&amp;gt;. &lt;/P&gt;&lt;P&gt;ASSIGN NAME+4(*) TO &amp;lt;F&amp;gt;. &lt;/P&gt;&lt;P&gt;WRITE &amp;lt;F&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output: JOHNCARLXXXX JOHNCARL &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Wiboon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 04:54:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pointers-in-abap/m-p/2806428#M655867</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T04:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: Pointers in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointers-in-abap/m-p/2806429#M655868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The FIELD SYMBOLS used in ABAP are the pointers.. when we assign some field to a field symbol, the field symbol points to the memory location of the field..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if we make any change in the field symboil value, the new values is reflected in the field too..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Best Regards,&lt;/P&gt;&lt;P&gt;Vikas Bittera.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 04:57:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pointers-in-abap/m-p/2806429#M655868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T04:57:44Z</dc:date>
    </item>
  </channel>
</rss>

