<?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: HIDE AREA in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312604#M506722</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Latha,&lt;/P&gt;&lt;P&gt;Hide is normaly used in Intractive report. Temp it will alocate Memory Area. &lt;/P&gt;&lt;P&gt;when You click on Basic List it Jump to Secondary List.&lt;/P&gt;&lt;P&gt;There are 1 Basic List and 20 Secondary List.&lt;/P&gt;&lt;P&gt;if you go more than that , then it show dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward If Help full&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 May 2007 14:07:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-24T14:07:51Z</dc:date>
    <item>
      <title>HIDE AREA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312595#M506713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is hide area used for?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 11:19:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312595#M506713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T11:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE AREA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312596#M506714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Hide is used to hide the field values and retrive that value whnever required.&lt;/P&gt;&lt;P&gt;This is used in interactive reports.&lt;/P&gt;&lt;P&gt;Hide is awlys used after WRITE statement and not BEFORE write stattement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rvert back if any issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward with points if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 11:22:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312596#M506714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T11:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE AREA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312597#M506715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hide - it stores currenrt record when user select on field or line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ itab-matnr,itab-maktx.&lt;/P&gt;&lt;P&gt;hide itab-matnr.&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;at line-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/itab-matnr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 11:22:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312597#M506715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T11:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE AREA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312598#M506716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;See this&lt;/P&gt;&lt;P&gt;The HIDE statement is one of the fundamental statements for interactive reporting. &lt;/P&gt;&lt;P&gt;You use the HIDE technique when creating a basic list.&lt;/P&gt;&lt;P&gt;It defines the information that can be passed to subsequent detail lists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The example below presents some of the essential features of interactive reporting. The basic list contains summarized information. With the HIDE technique, it is possible to branch to more detailed information on subsequent lists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following program is connected to the logical database F1S.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_list_hide NO STANDARD PAGE HEADING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: spfli, sbook.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: num TYPE i,&lt;/P&gt;&lt;P&gt;dat TYPE d.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;num = 0.&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'FLIGHT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET spfli.&lt;/P&gt;&lt;P&gt;num = num + 1.&lt;/P&gt;&lt;P&gt;WRITE: / spfli-carrid, spfli-connid,&lt;/P&gt;&lt;P&gt;spfli-cityfrom, spfli-cityto.&lt;/P&gt;&lt;P&gt;HIDE: spfli-carrid, spfli-connid, num.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;CLEAR num.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;WRITE 'List of Flights'.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;P&gt;WRITE 'CA CONN FROM TO'.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE DURING LINE-SELECTION.&lt;/P&gt;&lt;P&gt;CASE sy-pfkey.&lt;/P&gt;&lt;P&gt;WHEN 'BOOKING'.&lt;/P&gt;&lt;P&gt;WRITE sy-lisel.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;P&gt;WHEN 'WIND'.&lt;/P&gt;&lt;P&gt;WRITE: 'Booking', sbook-bookid,&lt;/P&gt;&lt;P&gt;/ 'Date ', sbook-fldate.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;CASE sy-ucomm.&lt;/P&gt;&lt;P&gt;WHEN 'SELE'.&lt;/P&gt;&lt;P&gt;IF num NE 0.&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'BOOKING'.&lt;/P&gt;&lt;P&gt;CLEAR dat.&lt;/P&gt;&lt;P&gt;SELECT * FROM sbook WHERE carrid = spfli-carrid&lt;/P&gt;&lt;P&gt;AND connid = spfli-connid.&lt;/P&gt;&lt;P&gt;IF sbook-fldate NE dat.&lt;/P&gt;&lt;P&gt;dat = sbook-fldate.&lt;/P&gt;&lt;P&gt;SKIP.&lt;/P&gt;&lt;P&gt;WRITE / sbook-fldate.&lt;/P&gt;&lt;P&gt;POSITION 16.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;NEW-LINE.&lt;/P&gt;&lt;P&gt;POSITION 16.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;WRITE sbook-bookid.&lt;/P&gt;&lt;P&gt;HIDE: sbook-bookid, sbook-fldate, sbook-custtype,&lt;/P&gt;&lt;P&gt;sbook-smoker, sbook-luggweight, sbook-class.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;WRITE / 'No bookings for this flight'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;num = 0.&lt;/P&gt;&lt;P&gt;CLEAR sbook-bookid.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;WHEN 'INFO'.&lt;/P&gt;&lt;P&gt;IF NOT sbook-bookid IS INITIAL.&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'WIND'.&lt;/P&gt;&lt;P&gt;SET TITLEBAR 'BKI'.&lt;/P&gt;&lt;P&gt;WINDOW STARTING AT 30 5 ENDING AT 60 10.&lt;/P&gt;&lt;P&gt;WRITE: 'Customer type :', sbook-custtype,&lt;/P&gt;&lt;P&gt;/ 'Smoker :', sbook-smoker,&lt;/P&gt;&lt;P&gt;/ 'Luggage weigtht :', sbook-luggweight UNIT 'KG',&lt;/P&gt;&lt;P&gt;/ 'Class :', sbook-class.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDCASE.&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;Tushar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 11:23:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312598#M506716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T11:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE AREA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312599#M506717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friend,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hide is generally used for interactive reports where u can drilldown detailed output list from main list using hide statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 11:23:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312599#M506717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T11:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE AREA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312600#M506718</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;see the below program, copy paste in your zprogram and run in debug mode you will find the real meaning&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this program (just copy paste)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(it will show u hidden fileds)&lt;/P&gt;&lt;P&gt;(it will display 2 lines, then on double-clicking,&lt;/P&gt;&lt;P&gt;it will show the hidden values 1000,2000)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : a(10) TYPE c.&lt;/P&gt;&lt;P&gt;DATA : b(10) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a = '1000'.&lt;/P&gt;&lt;P&gt;b = 'mittal'.&lt;/P&gt;&lt;P&gt;WRITE : b.&lt;/P&gt;&lt;P&gt;HIDE a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a = '2000'.&lt;/P&gt;&lt;P&gt;b = 'hello'.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; b.&lt;/P&gt;&lt;P&gt;HIDE a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'hidden field a is : ' , a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;nazeer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 11:25:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312600#M506718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T11:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE AREA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312601#M506719</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;The hide command temporarily stores the contents of the field at the current line in a system-controlled memory called the HIDE AREA.  At an interactive event, the contents of the field are restored from the HIDE AREA. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba42335c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba42335c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;sandeep&lt;/P&gt;&lt;P&gt;Reward if helpful &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 11:25:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312601#M506719</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T11:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE AREA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312602#M506720</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;The HIDE statement is one of the fundamental statements for interactive reporting. You use the HIDE technique when creating a basic list. It defines the information that can be passed to subsequent detail lists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Madhukar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 09:24:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312602#M506720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-24T09:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE AREA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312603#M506721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HIDE statement make the field available in Secondary list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mostly used in INTERACTIVE REPORTING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points to all useful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SaiRam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 09:32:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312603#M506721</guid>
      <dc:creator>former_member196280</dc:creator>
      <dc:date>2007-05-24T09:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE AREA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312604#M506722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Latha,&lt;/P&gt;&lt;P&gt;Hide is normaly used in Intractive report. Temp it will alocate Memory Area. &lt;/P&gt;&lt;P&gt;when You click on Basic List it Jump to Secondary List.&lt;/P&gt;&lt;P&gt;There are 1 Basic List and 20 Secondary List.&lt;/P&gt;&lt;P&gt;if you go more than that , then it show dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward If Help full&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 14:07:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312604#M506722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-24T14:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE AREA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312605#M506723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HIDE is a memory area which is created Parallely along with the WRITE , where ever we use HIDE that particular value is stored in the HIDE area.&lt;/P&gt;&lt;P&gt;There is one draw back  is using hide, it doesn't follow the same index pattern what internal table follows. Index of HIDE starts from o (zero) and of internal Table its 1. SO here discrepancy comes while accessing values for the secondry list when the user clicks on the Header line.&lt;/P&gt;&lt;P&gt;So it is always advisible to use clear the hide area before the control enters the next itteration of the LOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope justice is done to ur querry...........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudhaker Dev Sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 12:15:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312605#M506723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T12:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE AREA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312606#M506724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Latha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    The hide command temporarily stores the contents of the field at the current line in a system-controlled memory called the HIDE AREA.  At an interactive event, the contents of the field are restored from the HIDE AREA. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the end of the processing block END-OF-SELECTION, delete the contents of one or more fields you previously stored for valid lines using the HIDE statement.  At the event AT LINE-SELECTION, check whether the work area is initial or whether the HIDE statement stored field contents there. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD IF USEFUL..!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 07:39:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-area/m-p/2312606#M506724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T07:39:11Z</dc:date>
    </item>
  </channel>
</rss>

