<?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 PP help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pp-help/m-p/2263750#M491022</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have material no, plant &amp;amp; operation no(VORNR).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I wanted to get the short text for operation (LTXA1). Anybody will please suggest me the how to get it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 13 May 2007 11:14:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-13T11:14:04Z</dc:date>
    <item>
      <title>PP help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pp-help/m-p/2263750#M491022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have material no, plant &amp;amp; operation no(VORNR).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I wanted to get the short text for operation (LTXA1). Anybody will please suggest me the how to get it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2007 11:14:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pp-help/m-p/2263750#M491022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-13T11:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: PP help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pp-help/m-p/2263751#M491023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Get it from table PLPO or AFVC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this FM - CEV5_DISPLAY_OPERATION_TEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, check this piece of caode it may be of some help.&lt;/P&gt;&lt;P&gt;  SELECT MAPL~MATNR&lt;/P&gt;&lt;P&gt;         MAPL~WERKS&lt;/P&gt;&lt;P&gt;         MAPL~PLNNR&lt;/P&gt;&lt;P&gt;         MAPL~PLNTY&lt;/P&gt;&lt;P&gt;         PLKO~ANDAT&lt;/P&gt;&lt;P&gt;         PLKO~PROFIDNETZ&lt;/P&gt;&lt;P&gt;         MAKT~MAKTX&lt;/P&gt;&lt;P&gt;         INTO TABLE T_MAPL  FROM MAPL JOIN PLKO ON MAPL&lt;SUB&gt;PLNNR = PLKO&lt;/SUB&gt;PLNNR AND&lt;/P&gt;&lt;P&gt;                                                   MAPL&lt;SUB&gt;PLNTY = PLKO&lt;/SUB&gt;PLNTY&lt;/P&gt;&lt;P&gt;                                     JOIN MAKT ON MAPL&lt;SUB&gt;MATNR = MAKT&lt;/SUB&gt;MATNR&lt;/P&gt;&lt;P&gt;         WHERE MAPL~MATNR IN S_MATNR AND&lt;/P&gt;&lt;P&gt;               MAPL~WERKS IN S_WERKS AND&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             PLKO~ANDAT IN S_STTAG  AND&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;               PLKO~PROFIDNETZ = P_PROF AND&lt;/P&gt;&lt;P&gt;               MAPL~PLNTY = 'N'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT T_MAPL IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT MAPL~MATNR&lt;/P&gt;&lt;P&gt;           PLPO~VORNR&lt;/P&gt;&lt;P&gt;           PLPO~LTXA1&lt;/P&gt;&lt;P&gt;           PLPO~BMSCH&lt;/P&gt;&lt;P&gt;           PLPO~VGW01&lt;/P&gt;&lt;P&gt;           PLPO~VGE01&lt;/P&gt;&lt;P&gt;           PLPO~LAR01&lt;/P&gt;&lt;P&gt;           INTO TABLE T_PLPO&lt;/P&gt;&lt;P&gt;           FROM PLPO JOIN MAPL ON PLPO&lt;SUB&gt;PLNNR = MAPL&lt;/SUB&gt;PLNNR AND&lt;/P&gt;&lt;P&gt;                                  PLPO&lt;SUB&gt;PLNTY = MAPL&lt;/SUB&gt;PLNTY&lt;/P&gt;&lt;P&gt;           FOR ALL ENTRIES IN T_MAPL&lt;/P&gt;&lt;P&gt;           WHERE PLPO~PLNNR = T_MAPL-PLNNR AND&lt;/P&gt;&lt;P&gt;                 PLPO~PLNTY = T_MAPL-PLNTY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Amit Khare&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2007 11:25:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pp-help/m-p/2263751#M491023</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-05-13T11:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: PP help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pp-help/m-p/2263752#M491024</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;Hit Where-used-list on VORNR field to know in which are all the tables this field is used. Apart from Master table there will be another table which contains descriptions usually starts with 'T'. From that T table you will get descriptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;sksingh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2007 11:45:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pp-help/m-p/2263752#M491024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-13T11:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: PP help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pp-help/m-p/2263753#M491025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know the database table name. I would like to ask How I can get the PLPO-LTXA1 field based on material(MATNR), operation no(VORNR) &amp;amp; plant(WERKS).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PLPO there is no material field. PLPO having operation no &amp;amp; plant. As per my understanding for a same plant we have N no of material &amp;amp; may be for different material we have same operation no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say like we have Plant 100 having material N1, N2, N3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now for N1 material having operation no A1, A2, A3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly for N2 material we have operation no A1, A2, A4, A5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly for N3 also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have Plant 100 having material N2. I have operation no A2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I would like to get the short text (PLPO-LTXA1) based on above selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anybody will tell me how to navigate between different database table so that I can get short text for routing (PLPO-LTXA1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any help will be appriciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2007 11:47:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pp-help/m-p/2263753#M491025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-13T11:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: PP help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pp-help/m-p/2263754#M491026</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;It is true that same Operation Number can be attached to multiple TaskLists. The concept is on a particular material let us say, a WorkOrder is generated with some Tasks that need to be performed on that material. Each individual Task will have further Operations to be carried out. Hence whatever the criteria is, please follow the method Where-used-list on the dataelement of field VORNR which i described in my previous message, you will get the table which contains descriptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;sksingh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2007 12:06:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pp-help/m-p/2263754#M491026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-13T12:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: PP help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pp-help/m-p/2263755#M491027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Simply use the VIEW&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;VIAUF_AFVC&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;You have Material(SERMAT), Plant(WERKS), VORNR(operation) and the required&lt;/P&gt;&lt;P&gt;LTXA1 (operation short text field)&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2007 14:19:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pp-help/m-p/2263755#M491027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-13T14:19:36Z</dc:date>
    </item>
  </channel>
</rss>

