<?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: My new program DUMP : in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/my-new-program-dump/m-p/4675759#M1099643</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sam,&lt;/P&gt;&lt;P&gt;First of all check whether you are using any key or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
ranges: r_name2 for kna1-name2.
" Populate r_name2 to store*, 
"also create one more entry in the gt_soldto1 table with value space.

    SELECT *                " kunnr name2 j_3astcu
      FROM kna1
      INTO CORRESPONDING FIELDS OF TABLE gt_kna1
     FOR ALL ENTRIES IN gt_soldto1
     WHERE ( name2 in r_name2
     AND     land1     = 'US'  )
     OR   ( j_3astcu   space
     AND    j_3astcu  = gt_soldto1-store_no
     AND   land1     = 'US'  ).

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Oct 2008 03:20:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-22T03:20:04Z</dc:date>
    <item>
      <title>My new program DUMP :</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/my-new-program-dump/m-p/4675756#M1099640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My new program is dumping at the below stmt:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF NOT gt_soldto1[] IS INITIAL.
    SELECT *                " kunnr name2 j_3astcu
      FROM kna1
      INTO CORRESPONDING FIELDS OF TABLE gt_kna1
     FOR ALL ENTRIES IN gt_soldto1
     WHERE ( name2   LIKE 'STORE%'
     OR      name2   LIKE 'Store%'
     OR      name2   LIKE 'store%'
     AND     land1     = 'US'  )
     OR   ( j_3astcu  &amp;lt;&amp;gt; space
     AND    j_3astcu  = gt_soldto1-store_no
     AND   land1     = 'US'  ).

  ENDIF.   "   IF NOT gt_soldto[] IS INITIAL.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Could you please suggest me hwo to correct performane wise? &lt;/P&gt;&lt;P&gt;In  order to improve performance I tried to keep as much as possible in where condition. we are using SAP - AFS system.&lt;/P&gt;&lt;P&gt;=============================================&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;DUMP :&lt;/STRONG&gt;&lt;/U&gt; &lt;/P&gt;&lt;P&gt;Short text&lt;/P&gt;&lt;P&gt;    No more storage space available for extending an internal table.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;What happened?&lt;/P&gt;&lt;P&gt;    You attempted to extend an internal table, but the required space was&lt;/P&gt;&lt;P&gt;    not available.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Error analysis&lt;/P&gt;&lt;P&gt;    The internal table "???" could not be further extended. To enable&lt;/P&gt;&lt;P&gt;    error handling, the table had to be delete before this log was written.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   As a result, the table is displayed further down or, if you branch to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    the ABAP Debugger, with 0 rows.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    At the time of the termination, the following data was determined for&lt;/P&gt;&lt;P&gt;    the relevant internal table:&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    Memory location: "Session memory"&lt;/P&gt;&lt;P&gt;    Row width: 3704&lt;/P&gt;&lt;P&gt;    Number of rows: 230136&lt;/P&gt;&lt;P&gt;    Allocated rows: 230136&lt;/P&gt;&lt;P&gt;    Newly requested rows: 4 (in 1 blocks)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to correct the error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    The amount of storage space (in bytes) filled at termination time was:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Roll area...................... 199624160&lt;/P&gt;&lt;P&gt;    Extended memory (EM)........... 251630992&lt;/P&gt;&lt;P&gt;    Assigned memory (HEAP)......... 484209696&lt;/P&gt;&lt;P&gt;    Short area..................... " "&lt;/P&gt;&lt;P&gt;    Paging area.................... 32768&lt;/P&gt;&lt;P&gt;    Maximum address space.......... 4294967295&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    If the error occures in a non-modified SAP program, you may be able to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    find an interim solution in an SAP Note.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    If you have access to SAP Notes, carry out a search with the following&lt;/P&gt;&lt;P&gt;    keywords:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    "TSV_TNEW_PAGE_ALLOC_FAILED" " "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    "ZADI_V_R_869_870_STATUS" or "ZADI_V_R_869_870_STATUS"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    "GET_DATA_DBTABLES_NEW4"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    If you cannot solve the problem yourself and want to send an error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    notification to SAP, include the following information:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    1. The description of the current problem (short dump)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       To save the description, choose "System-&amp;gt;List-&amp;gt;Save-&amp;gt;Local File&lt;/P&gt;&lt;P&gt;    (Unconverted)".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    2. Corresponding system log&lt;/P&gt;&lt;P&gt;       Display the system log by calling transaction SM21.&lt;/P&gt;&lt;P&gt;       Restrict the time interval to 10 minutes before and five minutes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    after the short dump. Then choose "System-&amp;gt;List-&amp;gt;Save-&amp;gt;Local File&lt;/P&gt;&lt;P&gt;    (Unconverted)".&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  3. If the problem occurs in a problem of your own or a modified SAP&lt;/P&gt;&lt;P&gt;  program: The source code of the program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     In the editor, choose "Utilities-&amp;gt;More&lt;/P&gt;&lt;P&gt;  Utilities-&amp;gt;Upload/Download-&amp;gt;Download".&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  4. Details about the conditions under which the error occurred or which&lt;/P&gt;&lt;P&gt;  actions and input led to the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Source Code Extract&lt;/P&gt;&lt;P&gt;Line  SourceCde&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 4568   DATA : gt_soldto2 TYPE TABLE OF  t_soldto1.&lt;/P&gt;&lt;P&gt; 4569   DATA :  wa_bstnk_storeno_kunnr LIKE LINE OF  gt_bstnk_storeno_kunnr.&lt;/P&gt;&lt;P&gt;4570 * Get ztable fields&lt;/P&gt;&lt;P&gt; 4571   SELECT * FROM zadi_869_870_sta&lt;/P&gt;&lt;P&gt; 4572           INTO TABLE gt_soldto1&lt;/P&gt;&lt;P&gt; 4573           FOR ALL ENTRIES IN gt_bstnk_storeno_kunnr&lt;/P&gt;&lt;P&gt; 4574           WHERE edi_tr_par = gt_bstnk_storeno_kunnr-edi_tr_par.&lt;/P&gt;&lt;P&gt; 4575 ***************************************************************&lt;/P&gt;&lt;P&gt; 4576 * gt_soldto1 should contain store no of gt_bstnk_storeno_kunnr&lt;/P&gt;&lt;P&gt; 4577 *  IF NOT gt_soldto1[] IS INITIAL.&lt;/P&gt;&lt;P&gt; 4578   LOOP AT gt_soldto1 INTO gs_soldto.&lt;/P&gt;&lt;P&gt; 4579&lt;/P&gt;&lt;P&gt; 4580 *  READ TABLE gt_bstnk_storeno_kunnr INTO wa_bstnk_storeno_kunnr&lt;/P&gt;&lt;P&gt; 4581 *        WITH key edi_tr_par = gs_soldto-edi_tr_par BINARY SEARCH.&lt;/P&gt;&lt;P&gt; 4582     LOOP AT gt_bstnk_storeno_kunnr INTO wa_bstnk_storeno_kunnr&lt;/P&gt;&lt;P&gt; 4583                  WHERE edi_tr_par = gs_soldto-edi_tr_par.&lt;/P&gt;&lt;P&gt; 4584       gs_soldto-store_no = wa_bstnk_storeno_kunnr-store_no.&lt;/P&gt;&lt;P&gt; 4585       wa_bstnk_storeno_kunnr-sold_to =  gs_soldto-sold_to.&lt;/P&gt;&lt;P&gt; 4586       MODIFY  gt_bstnk_storeno_kunnr FROM wa_bstnk_storeno_kunnr.&lt;/P&gt;&lt;P&gt; 4587       APPEND  gs_soldto TO gt_soldto2 .&lt;/P&gt;&lt;P&gt; 4588     ENDLOOP.&lt;/P&gt;&lt;P&gt; 4589     CLEAR : gs_soldto.&lt;/P&gt;&lt;P&gt; 4590 *    MODIFY gt_soldto1 FROM gs_soldto.&lt;/P&gt;&lt;P&gt; 4591   ENDLOOP.&lt;/P&gt;&lt;P&gt; 4592   REFRESH : gt_soldto1[].&lt;/P&gt;&lt;P&gt; 4593   gt_soldto1[] = gt_soldto2[].&lt;/P&gt;&lt;P&gt;4594   REFRESH : gt_soldto2[].&lt;/P&gt;&lt;P&gt;4595&lt;/P&gt;&lt;P&gt;4596 * Get Shiptos from knvp table.&lt;/P&gt;&lt;P&gt;4597   IF NOT gt_soldto1[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;     SELECT *                " kunnr name2 j_3astcu&lt;/P&gt;&lt;P&gt;4599       FROM kna1&lt;/P&gt;&lt;P&gt;4600       INTO CORRESPONDING FIELDS OF TABLE gt_kna1&lt;/P&gt;&lt;P&gt;4601      FOR ALL ENTRIES IN gt_soldto1&lt;/P&gt;&lt;P&gt;4602      WHERE ( name2   LIKE 'STORE%'&lt;/P&gt;&lt;P&gt;4603      OR      name2   LIKE 'Store%'&lt;/P&gt;&lt;P&gt;4604      OR      name2   LIKE 'store%'&lt;/P&gt;&lt;P&gt;4605      AND     land1     = 'US'  )&lt;/P&gt;&lt;P&gt;4606      OR   ( j_3astcu  &amp;lt;&amp;gt; space&lt;/P&gt;&lt;P&gt;4607      AND    j_3astcu  = gt_soldto1-store_no&lt;/P&gt;&lt;P&gt;4608      AND   land1     = 'US'  ).&lt;/P&gt;&lt;P&gt;4609 *    AND   land1     = 'US'.&lt;/P&gt;&lt;P&gt;4610   ENDIF.   "   IF NOT gt_soldto[] IS INITIAL.&lt;/P&gt;&lt;P&gt;4611&lt;/P&gt;&lt;P&gt;4612 * Formation new internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4613   IF NOT gt_kna1[] IS INITIAL.&lt;/P&gt;&lt;P&gt;4614     LOOP AT gt_kna1 INTO gs_kna1.&lt;/P&gt;&lt;P&gt;4615&lt;/P&gt;&lt;P&gt;4616       LOOP AT gt_soldto1 INTO gs_soldto.&lt;/P&gt;&lt;P&gt;4617&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS IN ADV.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2008 23:11:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/my-new-program-dump/m-p/4675756#M1099640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-21T23:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: My new program DUMP :</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/my-new-program-dump/m-p/4675757#M1099641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Sam,&lt;/P&gt;&lt;P&gt;                   The select statement is selecting lots of records to the internal table(gt_kna1). I think the select statement should be restructured to get less no of records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ranganathan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 00:03:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/my-new-program-dump/m-p/4675757#M1099641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T00:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: My new program DUMP :</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/my-new-program-dump/m-p/4675758#M1099642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I restructure my select stmt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My logic also important. so how to write alternative or restructure my SELECT ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 00:07:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/my-new-program-dump/m-p/4675758#M1099642</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T00:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: My new program DUMP :</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/my-new-program-dump/m-p/4675759#M1099643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sam,&lt;/P&gt;&lt;P&gt;First of all check whether you are using any key or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
ranges: r_name2 for kna1-name2.
" Populate r_name2 to store*, 
"also create one more entry in the gt_soldto1 table with value space.

    SELECT *                " kunnr name2 j_3astcu
      FROM kna1
      INTO CORRESPONDING FIELDS OF TABLE gt_kna1
     FOR ALL ENTRIES IN gt_soldto1
     WHERE ( name2 in r_name2
     AND     land1     = 'US'  )
     OR   ( j_3astcu   space
     AND    j_3astcu  = gt_soldto1-store_no
     AND   land1     = 'US'  ).

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 03:20:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/my-new-program-dump/m-p/4675759#M1099643</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T03:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: My new program DUMP :</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/my-new-program-dump/m-p/4675760#M1099644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;KUNNR is the only key field in kna1. How ever I don't have values of KUNNR while selecting kna1 to use in where clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so ...I was using as above...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 04:35:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/my-new-program-dump/m-p/4675760#M1099644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T04:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: My new program DUMP :</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/my-new-program-dump/m-p/4675761#M1099645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF NOT gt_soldto1[] IS INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT *                " kunnr name2 j_3astcu&lt;/P&gt;&lt;P&gt;      FROM kna1&lt;/P&gt;&lt;P&gt;      INTO CORRESPONDING FIELDS OF TABLE gt_kna1&lt;/P&gt;&lt;P&gt;     FOR ALL ENTRIES IN gt_soldto1&lt;/P&gt;&lt;P&gt;     WHERE ( name2   LIKE 'STORE%'&lt;/P&gt;&lt;P&gt;     OR      name2   LIKE 'Store%'&lt;/P&gt;&lt;P&gt;     OR      name2   LIKE 'store%'&lt;/P&gt;&lt;P&gt;     AND     land1     = 'US'  )&lt;/P&gt;&lt;P&gt;     OR   ( j_3astcu   space&lt;/P&gt;&lt;P&gt;     AND    j_3astcu  = gt_soldto1-store_no&lt;/P&gt;&lt;P&gt;     AND   land1     = 'US'  ).&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  ENDIF.   "   IF NOT gt_soldto[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There seems to be some problem with your Where clause. &lt;/P&gt;&lt;P&gt;" j_3astcu   space&lt;/P&gt;&lt;P&gt;    AND    j_3astcu  = gt_soldto1-store_no" is not going to lead anywhere. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the Where clause. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nirmal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 04:50:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/my-new-program-dump/m-p/4675761#M1099645</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T04:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: My new program DUMP :</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/my-new-program-dump/m-p/4675762#M1099646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF NOT gt_soldto1[] IS INITIAL.&lt;/P&gt;&lt;P&gt;SELECT * " kunnr name2 j_3astcu&lt;/P&gt;&lt;P&gt;FROM kna1&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF TABLE gt_kna1&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN gt_soldto1&lt;/P&gt;&lt;P&gt;WHERE ( name2 LIKE 'STORE%'&lt;/P&gt;&lt;P&gt;OR name2 LIKE 'Store%'&lt;/P&gt;&lt;P&gt;OR name2 LIKE 'store%'&lt;/P&gt;&lt;P&gt;AND land1 = 'US' )&lt;/P&gt;&lt;P&gt;OR &lt;U&gt;( j&lt;/U&gt;3astcu space_&lt;/P&gt;&lt;P&gt;&lt;U&gt;AND j&lt;/U&gt;3astcu = gt_soldto1-store_no_&lt;/P&gt;&lt;P&gt;&lt;U&gt;AND land1 = 'US' ).&lt;/U&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;i think your problem in where clause.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;j_3astcu space_&lt;/P&gt;&lt;P&gt;&lt;U&gt;AND j&lt;/U&gt;3astcu = gt_soldto1-store_no_&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this stmt.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 05:09:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/my-new-program-dump/m-p/4675762#M1099646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T05:09:32Z</dc:date>
    </item>
  </channel>
</rss>

