<?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 PO Release Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907343#M1329163</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;                   I have created PO Using  BAPI_PO_CREATE then I am trying to create Goods receipt  in MIGO Transaction showing following message  &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The Purchase (XXXXXXXXXXX) order is not yet released&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I have used BAPI_PO_RELEASE also for release the PO.&lt;/P&gt;&lt;P&gt;Could you please give me the suggestion to create Goods receipt no in MIGO Transaction for the same PO ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;Sivakumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Jul 2009 13:06:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-22T13:06:14Z</dc:date>
    <item>
      <title>PO Release Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907343#M1329163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;                   I have created PO Using  BAPI_PO_CREATE then I am trying to create Goods receipt  in MIGO Transaction showing following message  &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The Purchase (XXXXXXXXXXX) order is not yet released&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I have used BAPI_PO_RELEASE also for release the PO.&lt;/P&gt;&lt;P&gt;Could you please give me the suggestion to create Goods receipt no in MIGO Transaction for the same PO ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;Sivakumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 13:06:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907343#M1329163</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T13:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: PO Release Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907344#M1329164</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;Did u commit the BAPI.&lt;/P&gt;&lt;P&gt;Use FM BAPI_TRANSACTION_COMMIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Milan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 13:10:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907344#M1329164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T13:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: PO Release Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907345#M1329165</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;In Tcode Me22n there is tab Release Strategy at header level of PO, You will find PO Release Code there, in my case it was 10 and 20.&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 g_count EQ 1.&lt;/P&gt;&lt;P&gt;      g_po_rel_code = '10'.   " Code For Executive Release&lt;/P&gt;&lt;P&gt;    ELSEIF g_count EQ 2.&lt;/P&gt;&lt;P&gt;      g_po_rel_code = '20'.   " Code For Manager Release&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF return[] IS INITIAL.&lt;/P&gt;&lt;P&gt;      PERFORM bapi_po_release USING po_number.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    return[] = gt_return[].&lt;/P&gt;&lt;P&gt;    IF g_count EQ 2 AND return[] IS INITIAL.&lt;/P&gt;&lt;P&gt;      return-type = 'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CONCATENATE 'Purchase Order'&lt;/P&gt;&lt;P&gt;                   po_number&lt;/P&gt;&lt;P&gt;                   'successfully released.'&lt;/P&gt;&lt;P&gt;           INTO  return-message&lt;/P&gt;&lt;P&gt;           SEPARATED BY space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      APPEND return.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    g_count = g_count + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDWHILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form bapi_po_release  using    p_po_number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_PO_RELEASE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      purchaseorder                = p_po_number&lt;/P&gt;&lt;P&gt;      po_rel_code                  = g_po_rel_code&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    USE_EXCEPTIONS               = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    NO_COMMIT                    = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     REL_STATUS_NEW               = g_rel_status_new&lt;/P&gt;&lt;P&gt;     REL_INDICATOR_NEW            = g_rel_indicator_new&lt;/P&gt;&lt;P&gt;     RET_CODE                     = g_ret_code&lt;/P&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;P&gt;     RETURN                       = gt_return&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     AUTHORITY_CHECK_FAIL         = 1&lt;/P&gt;&lt;P&gt;     DOCUMENT_NOT_FOUND           = 2&lt;/P&gt;&lt;P&gt;     ENQUEUE_FAIL                 = 3&lt;/P&gt;&lt;P&gt;     PREREQUISITE_FAIL            = 4&lt;/P&gt;&lt;P&gt;     RELEASE_ALREADY_POSTED       = 5&lt;/P&gt;&lt;P&gt;     RESPONSIBILITY_FAIL          = 6&lt;/P&gt;&lt;P&gt;     OTHERS                       = 7&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    " &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Defaulty this BAPI do Commit work. There is Field Called No_Commit. IF you have marked as X then you have to use BAPI_COMMIT_WORK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For complete release of PO you have to use all the PO Release Code.&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 &amp;amp; regards,&lt;/P&gt;&lt;P&gt;ShreeMohan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ShreeMohan Pugalia on Jul 22, 2009 3:17 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 13:17:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907345#M1329165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T13:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: PO Release Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907346#M1329166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Where should i give the below variable ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF g_count EQ 1.&lt;/P&gt;&lt;P&gt;  g_po_rel_code = '10'. " Code For Executive Release&lt;/P&gt;&lt;P&gt;ELSEIF g_count EQ 2.&lt;/P&gt;&lt;P&gt;  g_po_rel_code = '20'. " Code For Manager Release&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you plese give some more info for the variables ?&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,&lt;/P&gt;&lt;P&gt;Sivakumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 13:26:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907346#M1329166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T13:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: PO Release Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907347#M1329167</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;CALL FUNCTION 'BAPI_PO_RELEASE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;purchaseorder = p_po_number&lt;/P&gt;&lt;P&gt;po_rel_code = g_po_rel_code       &amp;lt;================  Give it here in FM 'BAPI_PO_RELEASE'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;USE_EXCEPTIONS = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;NO_COMMIT = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;REL_STATUS_NEW = g_rel_status_new&lt;/P&gt;&lt;P&gt;REL_INDICATOR_NEW = g_rel_indicator_new&lt;/P&gt;&lt;P&gt;RET_CODE = g_ret_code&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;RETURN = gt_return&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;AUTHORITY_CHECK_FAIL = 1&lt;/P&gt;&lt;P&gt;DOCUMENT_NOT_FOUND = 2&lt;/P&gt;&lt;P&gt;ENQUEUE_FAIL = 3&lt;/P&gt;&lt;P&gt;PREREQUISITE_FAIL = 4&lt;/P&gt;&lt;P&gt;RELEASE_ALREADY_POSTED = 5&lt;/P&gt;&lt;P&gt;RESPONSIBILITY_FAIL = 6&lt;/P&gt;&lt;P&gt;OTHERS = 7&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 13:28:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907347#M1329167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T13:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: PO Release Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907348#M1329168</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;This is giving following exception,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exception       RESPONSIBILITY_FAIL&lt;/P&gt;&lt;P&gt;Message ID:          ME                         Message number:           104&lt;/P&gt;&lt;P&gt;Message:&lt;/P&gt;&lt;P&gt;Release outside field of responsibility&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;Sivakumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 13:36:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907348#M1329168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T13:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: PO Release Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907349#M1329169</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;What is the value u are passing in  po_rel_code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it 10 or 20?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If yes then you are wrong and do below step.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to ME22n&lt;/P&gt;&lt;P&gt;Enter PO Number&lt;/P&gt;&lt;P&gt;At header Level of PO, You will find tab called RELEASE STRATEGY.&lt;/P&gt;&lt;P&gt;In that Tab there would be a small ALV Grid. The First Column in the field called Code.&lt;/P&gt;&lt;P&gt;Take that value and pass it po_rel_code in BAPI_PO_RELEASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can test this in SE37&lt;/P&gt;&lt;P&gt;Key in BAPI_PO_RELEASE.&lt;/P&gt;&lt;P&gt;Press F8&lt;/P&gt;&lt;P&gt;then key in PO number in Import Parameter PURCHASEORDER.&lt;/P&gt;&lt;P&gt; PO Release Code in Field PO_REL_CODE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 13:45:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907349#M1329169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T13:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: PO Release Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907350#M1329170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;  I have done but there i found 3 code ie., i1 , i2 ,i3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i1 and i2 are relesed but i3 is showing yellow status ?&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 ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sivakumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 13:53:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907350#M1329170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T13:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: PO Release Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907351#M1329171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the message you are geting when you are passing i3 in return table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please let me know&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ShreeMohan Pugalia on Jul 22, 2009 3:55 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 13:55:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907351#M1329171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T13:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: PO Release Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907352#M1329172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt; I did n't get any message in return table  and REL_STATUS_NEW = XXX ,&lt;/P&gt;&lt;P&gt;EL_INDICATOR_NEW = R.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;every thing ok but it is showing yellow staus.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I1    Release level1   released &lt;/P&gt;&lt;P&gt;I2    Release level2   released &lt;/P&gt;&lt;P&gt;I3    Release level1   release possible &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am unable to Create Goods recepit in MIGO .&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;Sivakumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sivakumar Arumugam on Jul 22, 2009 7:32 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 13:59:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907352#M1329172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T13:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: PO Release Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907353#M1329173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF you are geting value in return table as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REL_STATUS_NEW = XXX ,&lt;/P&gt;&lt;P&gt;EL_INDICATOR_NEW = R.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It Means PO is released.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please ask your Function Consultant why are u not able to do MIGO.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 14:04:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907353#M1329173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T14:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: PO Release Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907354#M1329174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear ShreeMohan Pugalia,&lt;/P&gt;&lt;P&gt;                                                                                Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 14:07:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/po-release-problem/m-p/5907354#M1329174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T14:07:48Z</dc:date>
    </item>
  </channel>
</rss>

