<?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: FM for finding Lower level WBS ELEMENTS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453710#M214603</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use BAPI_PROJECT_GETINFO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass the PROJECT_DEFINITION and X in the import parameter WITH_SUBTREE and you will get the hierarchy data in the table EWBSHIERARCHIETABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Jul 2006 12:40:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-17T12:40:10Z</dc:date>
    <item>
      <title>FM for finding Lower level WBS ELEMENTS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453704#M214597</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;Am supposed to find the sub ordinate WBS(lower level towards downwards) list for the WBS Element am giving.&lt;/P&gt;&lt;P&gt;Is there any Function module for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnx in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Mohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2006 09:45:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453704#M214597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-17T09:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: FM for finding Lower level WBS ELEMENTS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453705#M214598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get the subordinate element.&lt;/P&gt;&lt;P&gt;Use the pRPS Table where STUFE NE 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF STUFE = 1 then First level WBS element&lt;/P&gt;&lt;P&gt;IF STUFE ne 1 then SUb WBS element&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use this code.&lt;/P&gt;&lt;P&gt;  DATA: LV_PSPID TYPE PS_POSID.&lt;/P&gt;&lt;P&gt;  CLEAR: G_T_PRPS.&lt;/P&gt;&lt;P&gt;  REFRESH: G_T_PRPS.&lt;/P&gt;&lt;P&gt;  LOOP AT S_WBS.&lt;/P&gt;&lt;P&gt;    CONCATENATE S_WBS-LOW '*' INTO S_WBS-LOW.&lt;/P&gt;&lt;P&gt;    S_WBS-OPTION = 'CP'.&lt;/P&gt;&lt;P&gt;    MODIFY S_WBS.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  SELECT * FROM PRPS INTO CORRESPONDING FIELDS OF TABLE G_T_PRPS&lt;/P&gt;&lt;P&gt;                                          WHERE POSID IN S_WBS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If useful please reward the points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2006 09:49:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453705#M214598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-17T09:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: FM for finding Lower level WBS ELEMENTS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453706#M214599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MAP_BAPI_WBS_ELEMENT_2_PRPS   &lt;/P&gt;&lt;P&gt;MAP_BAPI_WBS_ELEMENT_2_PRPS_UP&lt;/P&gt;&lt;P&gt;MAP_BAPI_WBS_ELEMENT_2_VSPRPS &lt;/P&gt;&lt;P&gt;MAP_PRPS_2_BAPI_WBS_ELEMENT_EX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;TM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2006 09:53:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453706#M214599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-17T09:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: FM for finding Lower level WBS ELEMENTS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453707#M214600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the bapi function module 'BAPI_PROJECT_GETINFO' In that there is a table parameter 'e_wbs_hierarchie_table' ans this gives the entire hierarchy of WBS elements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regrds,&lt;/P&gt;&lt;P&gt;Dinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2006 09:55:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453707#M214600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-17T09:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: FM for finding Lower level WBS ELEMENTS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453708#M214601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Vasanth,&lt;/P&gt;&lt;P&gt;Am going to give only one WBS Element not more than one ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Mohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2006 10:48:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453708#M214601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-17T10:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: FM for finding Lower level WBS ELEMENTS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453709#M214602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To find the next WBS element without using a function, look at DB table PRHI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MattG.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2006 12:34:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453709#M214602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-17T12:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: FM for finding Lower level WBS ELEMENTS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453710#M214603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use BAPI_PROJECT_GETINFO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass the PROJECT_DEFINITION and X in the import parameter WITH_SUBTREE and you will get the hierarchy data in the table EWBSHIERARCHIETABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2006 12:40:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453710#M214603</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-17T12:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: FM for finding Lower level WBS ELEMENTS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453711#M214604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Say for example &lt;/P&gt;&lt;P&gt;ur 1st level WBS is DH/535/4001650&lt;/P&gt;&lt;P&gt;ur 2nd level WBS element is DH/535/4001650/04&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now look in table PRHI with posnr = DH/535/4001650/04&lt;/P&gt;&lt;P&gt;u can see two fields UP = DH/535/4001650&lt;/P&gt;&lt;P&gt;if anything below its showing in down.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2006 12:53:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-finding-lower-level-wbs-elements/m-p/1453711#M214604</guid>
      <dc:creator>saikat_pal2</dc:creator>
      <dc:date>2006-07-17T12:53:38Z</dc:date>
    </item>
  </channel>
</rss>

