cancel
Showing results for 
Search instead for 
Did you mean: 

WBS Elements

Former Member
0 Kudos

Hi All,

I want know the WBS Measure can you tell the table name and use of these, basically i am fico, i don't no wbs

so any one help me out

regards

Kumar T

Mumbai

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi kumarfico.t ,

Use function module to get the details for WBS

go to se37 -->BAPI_BUS2054_GETDATA

fill the I_PROJECT_DEFINITION = project number ,you will get all the wbs details for that project id

same can be varified in se16-->PRPS table

Create WBS for a project using BAPI 
* Initialization of BAPIs
  CALL FUNCTION 'BAPI_PS_INITIALIZATION'.
* Add location Pifs
  CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'
    EXPORTING
      I_PROJECT_DEFINITION = P_F_PIFID (Project ID)
    TABLES
      IT_WBS_ELEMENT       = P_L_T_WBSELEMENTS
      ET_RETURN            = P_L_T_RETURN.




  REFRESH P_L_T_WBSELEMENTS.
  CLEAR G_F_ERROR.
  LOOP AT P_L_T_RETURN INTO G_R_RETURN.
    IF G_R_RETURN-TYPE CA G_C_AEX.
      G_F_ERROR = G_C_X.
    ENDIF.
  ENDLOOP.

for more details http://www.sapmatrix.org/2011/10/function-module-for-create-wbs-for.html

With regards,

Amit

Former Member
0 Kudos

Hi,

Are you working on something related to Investment projects? PRPS is the table for viewing the WBS details. Please provide more inputs on your query.

Regards,

Gokul

Former Member
0 Kudos

this ECC6 to ECC6 enhp5, so i am doing on master data object migration, and i have another doubt, suppose if

we go to fss0, if we see in field technical information, table name, field name and data element we can see, so this fields are stored in skb1, So my question is how we can say that this field stored in skb1, is there with field name,Structure and data elements how we know the table name,

Former Member
0 Kudos

Hi,

Are you working on something related to Investment projects? PRPS is the table for viewing the WBS details. Please provide more inputs on your query.

Regards,

Gokul