<?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>Question Re: Limit PO is creating with the category &amp;quot;D&amp;quot; in Spend Management Q&amp;A</title>
    <link>https://community.sap.com/t5/spend-management-q-a/limit-po-is-creating-with-the-category-quot-d-quot/qaa-p/7840808#M120599</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Bharathi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check out the BADI BBP_CREATE_BE_PO_NEW or BBP_ECS_PO_OUT_BADI. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The behaviour you are experiencing is standard system behaviour so a BADI should be used to make these changes to the PO data for the backend PO creation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 May 2011 10:18:25 GMT</pubDate>
    <dc:creator>lisa_sheil</dc:creator>
    <dc:date>2011-05-09T10:18:25Z</dc:date>
    <item>
      <title>Limit PO is creating with the category "D"</title>
      <link>https://community.sap.com/t5/spend-management-q-a/limit-po-is-creating-with-the-category-quot-d-quot/qaq-p/7840804</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;We are facing an issue with the Limit PO is not getting transferred to Backend . &lt;/P&gt;&lt;P&gt;We are creating the limit shopping cart with option of Invoice only. So user is expecting do only the invoice and not the confirmations. We can also see Invoice receipt indicator only  in BBP_PDPSET&lt;/P&gt;&lt;P&gt; But when PO gets created with ERS vendor, it will get creates with GR_IND, GR_BASEDIV, IR_IND and ERS indicators.&lt;/P&gt;&lt;P&gt;With the limit PO- confirmations u2013 PO is trying to create with the cateogory u201CDu201D in the backend . But  we want  the limit PO has to be get create with the cateogory u201CBu201D. &lt;/P&gt;&lt;P&gt;Could you please suggest us , how this can be reached ?&lt;/P&gt;&lt;P&gt;Thank s in advance .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2011 20:49:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/spend-management-q-a/limit-po-is-creating-with-the-category-quot-d-quot/qaq-p/7840804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-05T20:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: Limit PO is creating with the category "D"</title>
      <link>https://community.sap.com/t5/spend-management-q-a/limit-po-is-creating-with-the-category-quot-d-quot/qaa-p/7840805#M120596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried to clear the GR_indicator in the DOC_CHANGE_BADI . Its working fine while changing the PO . We were able to clear the indicator .But same is not happening while creating the PO .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2011 21:31:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/spend-management-q-a/limit-po-is-creating-with-the-category-quot-d-quot/qaa-p/7840805#M120596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-05T21:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: Limit PO is creating with the category "D"</title>
      <link>https://community.sap.com/t5/spend-management-q-a/limit-po-is-creating-with-the-category-quot-d-quot/qaa-p/7840806#M120597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Baarati, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per the standard system behavior in case of ECS, the item category for limit items is whether (D) or (B) is depended on the following header flags.&lt;/P&gt;&lt;P&gt;GR_IND&lt;/P&gt;&lt;P&gt;IR_IND&lt;/P&gt;&lt;P&gt;GR_BASEDIV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This check is determined at Include: LBBP_BD_DRIVER_46AF16&lt;/P&gt;&lt;P&gt;FORM Generate_bapi_srvitem&lt;/P&gt;&lt;P&gt;============================================================&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;check for limit without service items&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;for limit SC without GR required create blanked PO&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF iv_limits_for_package_exist EQ gc_yes AND&lt;/P&gt;&lt;P&gt;     iv_services_for_package_exist EQ gc_no AND&lt;/P&gt;&lt;P&gt;     iv_header-gr_ind     EQ gc_no AND&lt;/P&gt;&lt;P&gt;     iv_header-gr_basediv EQ gc_no AND&lt;/P&gt;&lt;P&gt;     iv_header-ir_ind      EQ gc_yes.&lt;/P&gt;&lt;P&gt;    es_bapi_poitem-item_cat = '1'.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Item Type = 9&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you mention a Limit PO in SRM , this means you are creating a PO with ITM_TYPE = LIMI , without any PRODUCT_TYPE.&lt;/P&gt;&lt;P&gt;In this case , two Kinds of PO could be created in Backend :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1,In SRM PO ITM_TYPE = LIMI , GR_IND = Blank. in Backend system a framework order (Item category B) is created . It was also called limit PO in old MM release, but as of 470 it should be called as Framework order. It would be used for whatever small materials or servies&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2,In SRM PO ITM_TYPE = LIMI , GR_IND = X. A Service order (Item category D) with a item limit tab is created. It could be used for services not yet decided  till a service entry sheet with a detailed description is created .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 May 2011 11:03:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/spend-management-q-a/limit-po-is-creating-with-the-category-quot-d-quot/qaa-p/7840806#M120597</guid>
      <dc:creator>lisa_sheil</dc:creator>
      <dc:date>2011-05-06T11:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: Limit PO is creating with the category "D"</title>
      <link>https://community.sap.com/t5/spend-management-q-a/limit-po-is-creating-with-the-category-quot-d-quot/qaa-p/7840807#M120598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lisa &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for you inputs . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Limit PO with the confirmation Indicators u2013 PO will get create with cateogory u201CDu201D in the backend &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But we want in all the cases limit PO has to be get create with the category u201CBu201D.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So PO should not have GR_IND . When we are creating limit PO with the ERS vendor , GR_IND are getting checked from vendor master data. So PO is getting create with GR_IND and trying to transfere it to cateogory u201CDu201D.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to clear the GR_indicator in the DOC_CHANGE_BADI . Its working&lt;/P&gt;&lt;P&gt;fine while changing the PO .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We were able to clear the indicator which changing PO (after PO gets created)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But same is not happening while creating the PO . Even the BADI code clearing the gr_ind , somewhere in the standard code program is trying to map gr indicators from vendor master data base as it is ERS vendor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please suggest us , how this can be reached ?&lt;/P&gt;&lt;P&gt;Thank you ,&lt;/P&gt;&lt;P&gt;Bharathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 May 2011 18:47:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/spend-management-q-a/limit-po-is-creating-with-the-category-quot-d-quot/qaa-p/7840807#M120598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-06T18:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: Limit PO is creating with the category "D"</title>
      <link>https://community.sap.com/t5/spend-management-q-a/limit-po-is-creating-with-the-category-quot-d-quot/qaa-p/7840808#M120599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Bharathi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check out the BADI BBP_CREATE_BE_PO_NEW or BBP_ECS_PO_OUT_BADI. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The behaviour you are experiencing is standard system behaviour so a BADI should be used to make these changes to the PO data for the backend PO creation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2011 10:18:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/spend-management-q-a/limit-po-is-creating-with-the-category-quot-d-quot/qaa-p/7840808#M120599</guid>
      <dc:creator>lisa_sheil</dc:creator>
      <dc:date>2011-05-09T10:18:25Z</dc:date>
    </item>
  </channel>
</rss>

