<?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 Problem processing results from SO_OBJECT_READ in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790164#M911660</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am calling function SO_OBJECT_READ and it is returning to me a table called OBJCONT which has one field which is a 255 char field. This is the message content of the SBWP email. It seems to split each line using two # like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my first line of text.##This is my second line of text.##This is my third line of text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to process this string by finding the # symbol in the field. I have tried the following but nothing works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIND '#' IN OBJCONT-LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF OBJCONT-LINE CS '#'.&lt;/P&gt;&lt;P&gt;VAR-POS = SY-FDPOS.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT OBJCONT-LINE AT '#' INTO TABLE OBJECT_CONTENTS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;None of the above examples seem to process the '#' characters. It is almost like it is a placeholder for a Carriage return or Line Feed? Has anyone come across this problem before? If I declare another field within my program I can process '#' fine using exact same examples described above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: VAR-TEST(10) TYPE C.&lt;/P&gt;&lt;P&gt;VAR-TEST = '123###456'.&lt;/P&gt;&lt;P&gt;FIND '#' IN VAR-TEST MATCH OFFSET VAR-POS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So why does it not work for the table that I have returned from SO_OBJECT_READ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Apr 2008 23:06:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-22T23:06:57Z</dc:date>
    <item>
      <title>Problem processing results from SO_OBJECT_READ</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790164#M911660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am calling function SO_OBJECT_READ and it is returning to me a table called OBJCONT which has one field which is a 255 char field. This is the message content of the SBWP email. It seems to split each line using two # like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my first line of text.##This is my second line of text.##This is my third line of text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to process this string by finding the # symbol in the field. I have tried the following but nothing works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIND '#' IN OBJCONT-LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF OBJCONT-LINE CS '#'.&lt;/P&gt;&lt;P&gt;VAR-POS = SY-FDPOS.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT OBJCONT-LINE AT '#' INTO TABLE OBJECT_CONTENTS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;None of the above examples seem to process the '#' characters. It is almost like it is a placeholder for a Carriage return or Line Feed? Has anyone come across this problem before? If I declare another field within my program I can process '#' fine using exact same examples described above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: VAR-TEST(10) TYPE C.&lt;/P&gt;&lt;P&gt;VAR-TEST = '123###456'.&lt;/P&gt;&lt;P&gt;FIND '#' IN VAR-TEST MATCH OFFSET VAR-POS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So why does it not work for the table that I have returned from SO_OBJECT_READ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 23:06:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790164#M911660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T23:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problem processing results from SO_OBJECT_READ</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790165#M911661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when ever the person hits an enter in the text field there the # is triggered in the field.. which is called a line field as u suspected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had a scenario where I had a # at the end so I found the string length and removed the last character..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I remember there is some alternative like decelaring the # like &lt;/P&gt;&lt;P&gt;data: c_feed type X value '/OD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this doesn't work for a unicode system though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 23:17:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790165#M911661</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-04-22T23:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem processing results from SO_OBJECT_READ</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790166#M911662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is that the ## is repeated throughout the string just not at the end. I can not change the results that the standard SAP function gives me so I need to somehow process the two ##'s?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 23:26:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790166#M911662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T23:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem processing results from SO_OBJECT_READ</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790167#M911663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;
Hi Brad,
Just remove ## using the following code. It just replaces with space. Try it . It works i believe.
&lt;PRE&gt;&lt;CODE&gt;
DATA objcont LIKE soli  OCCURS 0 WITH HEADER LINE.

objcont-line = 'This ##is my 1 line##'.
APPEND objcont.
CLEAR  objcont.
objcont-line = 'This ##is my 2 line##'.
APPEND objcont.
CLEAR  objcont.
objcont-line = 'This ##is my 3 line##'.
APPEND objcont.
CLEAR  objcont.
objcont-line = 'This ##is my 4 line##'.
APPEND objcont.
CLEAR  objcont.
objcont-line = 'This ##is my 5 line##'.
APPEND objcont.
CLEAR  objcont.

REPLACE ALL OCCURRENCES OF REGEX '##'
  IN TABLE objcont WITH space.

LOOP AT objcont .
  WRITE / objcont.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;

Regards,
Venkat.O
&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 02:16:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790167#M911663</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2008-04-23T02:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem processing results from SO_OBJECT_READ</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790168#M911664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That was a good suggestion,  I tried your REGEX command but it said "the word regex is reserved"..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I then tried:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; REPLACE ALL OCCURENCES OF '##' IN OBJCONT-LINE WITH SPACE. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This gave me SY-SUBRC of 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I then tried:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; TRANSLATE OBJCONT-LINE USING '# '. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This did not return errors but it did not change the contents of the line at all. This is definitely not a normal # symbol we are dealing with...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 02:56:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790168#M911664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-23T02:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem processing results from SO_OBJECT_READ</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790169#M911665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also just to clarify other things I have tried... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought it may have something to do with the character field being 255 characters. So I took the first 72 characters and placed in another temporary field and tried to remove the '#' symbols from the new 72 character field. Still no success...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declaring new fields with # symbol works fine though and allows removal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 03:11:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790169#M911665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-23T03:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem processing results from SO_OBJECT_READ</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790170#M911666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;
Hi Brad,

"the word regex is reserved" ..Is this syntax error or what ? 
I am able to do in ECC 6.0 .

Regards,
Venkat.O
&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 03:16:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790170#M911666</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2008-04-23T03:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem processing results from SO_OBJECT_READ</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790171#M911667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes a syntax error, I am on ECC 5&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 03:19:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790171#M911667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-23T03:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem processing results from SO_OBJECT_READ</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790172#M911668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyone else have any ideas?&lt;/P&gt;&lt;P&gt;Would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 20:19:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790172#M911668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-23T20:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem processing results from SO_OBJECT_READ</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790173#M911669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;
Hi Brad,
Try this. It is working.
&lt;PRE&gt;&lt;CODE&gt;
REPORT  zvenkat_notepad2.

DATA objcont LIKE soli  OCCURS 0 WITH HEADER LINE.

objcont-line = 'This ##is my 1 line##'.
APPEND objcont.
CLEAR  objcont.
objcont-line = 'This ##is my 2 line##'.
APPEND objcont.
CLEAR  objcont.
objcont-line = 'This ##is my 3 line##'.
APPEND objcont.
CLEAR  objcont.
objcont-line = 'This ##is my 4 line##'.
APPEND objcont.
CLEAR  objcont.
objcont-line = 'This ##is my 5 line##'.
APPEND objcont.
CLEAR  objcont.

DATA: offset TYPE i.

LOOP AT objcont .
  REPLACE ALL OCCURRENCES OF '##' IN SECTION LENGTH 255 OF  objcont WITH ''.
  MODIFY objcont INDEX sy-tabix.
  CLEAR   objcont.
ENDLOOP.

LOOP AT objcont .
WRITE / objcont.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;

regards,
Venkat..O
&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 02:24:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790173#M911669</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2008-04-24T02:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem processing results from SO_OBJECT_READ</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790174#M911670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This didn't work for me either, I am thinking this is a special character passed from the SO_OBJECT_READ function. However I have managed to get a temporary solution working, the problem is I can not determine where the new line begins as no commands are processing the ## symbols.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2008 22:39:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790174#M911670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-27T22:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem processing results from SO_OBJECT_READ</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790175#M911671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have also found that if I write to my ZTABLE and try to select from the ZTABLE using ## as my selection criteria it does not find the records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This raises a new question.. What does ## mean when coming from the Database? Is this some sort of Unicode conversion? I think it is just a placeholder for a CRLF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 00:42:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790175#M911671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T00:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem processing results from SO_OBJECT_READ</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790176#M911672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I ended up processing it by writing the character to db table then referencing it. I think that it was a hex character and their is a class which can process this character but I didn't research any further.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 03:42:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790176#M911672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T03:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem processing results from SO_OBJECT_READ</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790177#M911673</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 also ran into the same problem about yours.&lt;/P&gt;&lt;P&gt;My system runs on ECC 5.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please refer my post:&lt;/P&gt;&lt;P&gt;[&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="6686023"&gt;&lt;/A&gt;|&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="6686023"&gt;&lt;/A&gt;]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chan Chih-Chieh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2009 01:27:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790177#M911673</guid>
      <dc:creator>JayChan</dc:creator>
      <dc:date>2009-01-05T01:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem processing results from SO_OBJECT_READ</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790178#M911674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;OL&gt;&lt;LI level="2" type="ol"&gt;&lt;P&gt;is Line Feed Character&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPLACE ALL OCCURRENCES OF CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF IN wa_objcont-line WITH ' '.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 07:03:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-processing-results-from-so-object-read/m-p/3790178#M911674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-04T07:03:08Z</dc:date>
    </item>
  </channel>
</rss>

