<?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: MD_PEGGING in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/md-pegging/m-p/3263225#M779748</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 got a similar requirement.  In my production order outbound idoc(LOIPRO01) I have extended with some custom fields. In that one of the custom filed is there by named &lt;STRONG&gt;BackOrder&lt;/STRONG&gt; with length char(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using Function Module MD_PEGGING and if the Pegging Source is a Sales Order, I need to send the Flag as 'X' to Backorder filed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can give input &lt;STRONG&gt;Material Number and Plant&lt;/STRONG&gt; fields. Apart from this,from where I can get the values for&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;edelkz,edelnr,edelps,eplaab&lt;/STRONG&gt; etc. &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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ranjith.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 May 2008 05:43:23 GMT</pubDate>
    <dc:creator>former_member297642</dc:creator>
    <dc:date>2008-05-23T05:43:23Z</dc:date>
    <item>
      <title>MD_PEGGING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/md-pegging/m-p/3263222#M779745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not able to view the Pegging details using the FM MD_PEGGING using the Material # and Plant details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any table containing these details?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Ramana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 09:20:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/md-pegging/m-p/3263222#M779745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T09:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: MD_PEGGING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/md-pegging/m-p/3263223#M779746</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;Try the table PLAF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find further information on the necessary Customizing activities in the SAP IMG under Logistics -&amp;gt; Project System -&amp;gt;Costs -&amp;gt;Automatic and Periodic Allocations -&amp;gt;Pegging.&lt;/P&gt;&lt;P&gt;&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;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 09:28:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/md-pegging/m-p/3263223#M779746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T09:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: MD_PEGGING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/md-pegging/m-p/3263224#M779747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Apart from MATNR and PLANT you've to pass Purchase Req. Number as well to get Pegging details.. I'm sending you some sample code to pegging details which I'm using...may be you'll get some idea...&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'MD_PEGGING'
      EXPORTING
        edelet                = '0000'
        edelkz                = 'BA'
        edelnr                = req_num  "Requisition number
        edelps                = '000010'
        eplscn                = 000
        ematnr                = material
        ewerks                = plant
        eberid                = ' '
        eplwrk                = ' '
        eplaab                = '02'
        eplanr                = ' '
        everto                = ' '
        display_only          = ' '
        edelvr                = ' '
        edat00                = d_date
      TABLES
        itab                  = peg_tab
      EXCEPTIONS
        error                 = 1
        no_requirements_found = 2
        order_not_found       = 3
        OTHERS                = 4.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 09:38:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/md-pegging/m-p/3263224#M779747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T09:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: MD_PEGGING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/md-pegging/m-p/3263225#M779748</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 got a similar requirement.  In my production order outbound idoc(LOIPRO01) I have extended with some custom fields. In that one of the custom filed is there by named &lt;STRONG&gt;BackOrder&lt;/STRONG&gt; with length char(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using Function Module MD_PEGGING and if the Pegging Source is a Sales Order, I need to send the Flag as 'X' to Backorder filed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can give input &lt;STRONG&gt;Material Number and Plant&lt;/STRONG&gt; fields. Apart from this,from where I can get the values for&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;edelkz,edelnr,edelps,eplaab&lt;/STRONG&gt; etc. &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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ranjith.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 05:43:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/md-pegging/m-p/3263225#M779748</guid>
      <dc:creator>former_member297642</dc:creator>
      <dc:date>2008-05-23T05:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: MD_PEGGING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/md-pegging/m-p/3263226#M779749</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 got a similar requirement.  In my production order outbound idoc(LOIPRO01) I have extended with some custom fields. In that one of the custom filed is there by named &lt;STRONG&gt;BackOrder&lt;/STRONG&gt; with length char(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using Function Module MD_PEGGING and if the Pegging Source is a Sales Order, I need to send the Flag as 'X' to Backorder filed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can give input &lt;STRONG&gt;Material Number and Plant&lt;/STRONG&gt; fields. Apart from this,from where I can get the values for&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;edelkz,edelnr,edelps,eplaab&lt;/STRONG&gt; etc. &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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ranjith.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 06:23:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/md-pegging/m-p/3263226#M779749</guid>
      <dc:creator>former_member297642</dc:creator>
      <dc:date>2008-05-23T06:23:49Z</dc:date>
    </item>
  </channel>
</rss>

