MFBF - Enter WBS Element error

Dear All
Flow is as follow.
0. While performing MFBF-Make-To-Order with Planned Order and Material as input field and save in component screen, I am getting error "Enter WBS Element".
1. Material is with Planning strategy: 85
2. Material is attached to WBS->Network->Activity (Internal)->Material Component in CJ20N-Project Builder
3. Requirement is generated with MD51 for WBS Element and thus Planned Order created with A/c assignement Category: Q, Special Stock: Project Stock, Consumption: Project
4. Now Step: 0 is performed
Actually, in component screen in MFBF, WBS Element column in grid is blank and disabled and components are with 261/Q.
Please propose the solution, if any body worked on above scenario.
Regards,
Tanuj Parikh

Dear Sravan,
Thanks for reply.
The WBS i am talking is generated in PS, not in MDL1 (Production Lot).
So I tried with your suggestion, MFBF accepts the WBS Element [created in PS-CJ20N and attached in Planned Order] in Initial Selection screen of MFBF->Production by lot->Production Lot.
But while pressing enter, Backflush qty is not default from planned order. When I enter Backflush Qty manually and click Post with Correction, it takes in Component screen but Qty is blank and WBS element that I entered in initial Selection screen is appearing here as disabled. Now after putting qty for components manually and save, system behaves abnormally i.e. it does nothing. (No production Lot is created in MDL1).
As I already said in my question, I am entering planned order and material in MFBF->Make-to-Order tab, where I am getting Backflush qty default from planned order and also components with required qty but without WBS Element and on save, System generates error "Enter WBS Element".
Do reply if you click something. Is there any Note to this?
Regards,
Tanuj Parikh

Similar Messages

  • IDOC error u201CPlease enter WBS element for This Cost centeru201D

    Hello SAP gurus,
    While doing PGI through IDOC u2013 basic type u2013 DELVRY03. I am getting error message u201CPlease enter WBS element for This Cost centeru201D
    Can some one please help me where I can check the settings?
    Thanks
    Sha

    Hello Arakish,
    That link is good one but not helpful for my issue and I have checked this forum then I posted my doubt. Still my issue is not resolved. Can someone please help me on this, I think only for this cost center I am getting this error.
    Thanks again.
    Sha

  • Update termination error "Enter WBS element" while confirming Tranfer Order

    Hi Gurus,
    I am getting an update termination "Enter WBS element" while confirming Transfer Order. One thing that i noticed is that this issue is occuring with line items that are having special stock indicator "K".
    Please let me know as to what could be root cause and how could this be avoided.
    Do let me know for any clarification.
    Regards,
    Trishul

    Any suggestions?
    Regards,
    Tanuj Parikh

  • Automatically enter WBS element when IO is entered

    Dear Experts,
    Can I check whether is there a way to automate the entry of wbs element when IO is entered in both FI document and Purchase order.
    Thank you.
    Regards
    Bc

    Hi Bc,
    There is no standard way of automating the entry process of WBS in IO or Purchasing Document.
    Writing Substitutions will not work in your case. you need to go by the enhancing the T- Codes..
    You need to get it done by your Technical people. But before embarking on modifying the Creation process of IO and PO, can you please elaborate on the  business requirement for such a change??
    Cheers
    Sammar

  • GI-WBS ELEMENT-ERROR MESSAGE SETTINGS

    Hi
    GI posing happens in a plant with a reference of a WBS element of other plant
    I want to set a error message to avoid this
    Please help me out how i do this error message settings, what is the error message Number?
    Thanks in advance
    Chris
    any answers?
    Edited by: CHRIS MM on Apr 23, 2009 5:35 AM

    Thanks Amol,
    If i tick on account assignment and Billing element then i need to tick statistical also without that system is not able to save the wbs and when i pass it to sale order then msg. coming wbs is a statistical element means we required a wbs that should not a statistical at order level and billing element at PGI level. if i saved wbs only with billing tick in cj20n then error is coming "wbs is not a account assignment element " at order level please guide
    vivek

  • WBS element creation error

    Hi All,
    I am trying to create WBS element using BAPI BAPI_BUS2054_CREATE_MULTI. The sequence is as follows:
    BAPI_PS_INITIALIZATION
    BAPI_BUS2054_CREATE_MULTI
    BAPI_PS_PRECOMMIT
    The error while creating element is :
    Final check of the project definition and the WBS elements: Error
    Any pointers on this why I am getting this error and what needs to be done?
    Thanks,
    Seema

    Hi Seema,
    After the BAPI BAPI_PS_PRECOMMIT you have to call explicitily
    COMMIT WORK AND WAIT.
    You can have those details in the documentation of the BAPI "BAPI_BUS2054_CREATE_MULTI".
    Regards,
    Smart Varghese

  • Issue in BAPI_PS_PRECOMMIT in mass creation of WBS Elements

    Hi,
    I am facing a issue with BAPI_PS_PRECOMMIT.
    we have the following WBS Hierarchy:
    S - Proj, (level1)
    S-XXX WBS Element (level2)
    S-XXX-001 WBS Element (level3)
    I have created a program for mass creation of WBS elements creation
    which uses the following BAPI's
    BAPI_PS_INITIALIZATION
    BAPI_BUS2054_CREATE_MULTI
    BAPI_PS_PRECOMMIT
    BAPI_TRANSACTION_COMMIT
    The proj: 'S' and the level2 WBS element: 'S-XXX' already exist in the system.
    When I run the program for delta load, so as to create the following level3 WBS elements:
    S-XXX-001
    S-XXX-002
    S-XXX-003
    The system is throwing the following errors at the BAPI_PS_PRECOMMIT:
    1. Final Check of the project definition and WBS elements: Error
    2. Validation unsuccessful
    Pls help me on this.
    Thanks,
    Deepak

    Check the WBS elements doesn't exist already in your system.
    Here is what I coded some days back for deletion of Network Activities, most of the things are same.
    You are doing for WBS element.
    * Call to initialization BAPI Before Delete
          CALL FUNCTION 'BAPI_PS_INITIALIZATION'.
    * Call to Network Activity Deletion BAPI
          CALL FUNCTION 'BAPI_BUS2002_ACT_DELETE_MULTI'
            EXPORTING
              i_number           = t_bapi_activity-network
            TABLES
              it_delete_activity = l_t_del_vornr
              et_return = l_t_bapiret2.
          DELETE l_t_bapiret2 WHERE type <> 'E'.
          READ TABLE l_t_bapiret2 INDEX 1.
          IF sy-subrc EQ 0.                                      "If error in Deletion
            MOVE: f_idoc_contrl-docnum TO t_idoc_status-docnum,
                  l_t_bapiret2-type TO t_idoc_status-msgty,
                  'CNIF_PI' TO t_idoc_status-msgid,
                  l_t_bapiret2-number TO t_idoc_status-msgno,
                  l_t_bapiret2-message TO t_idoc_status-msgv1.
                  MOVE c_idoc_status_error TO t_idoc_status-status.
                  APPEND t_idoc_status.
                  ROLLBACK WORK.
                  EXIT.
          ELSE.                                                  "If Delete is successful COMMIT
    * Call to PreCOMMIT BAPI
            CALL FUNCTION 'BAPI_PS_PRECOMMIT'
             TABLES
               ET_RETURN       = l_t_bapiret3.
    * Call COMMIT BAPI
    *        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
          ENDIF.
    The other solution is use BAPI_PROJECT_MAINTAIN.

  • How to post actual in WBS element.

    Hi There,
    I have one typical situation here.
    My company dont have Project system in SAP. now they are implementing PS.
    They wanted to bring all projects and Wbs element in SAP
    They have budget on XYZ wbs elemnt is about 150,000 USD. and they have spend 100,000.
    so i want to post 100,000 as actual.
    So they can have avialable balance of 50,000 USD.
    can anyone tell me the procedure. ?
    Thanks in advance..

    For any movement of goods receipt or goods issues, system posts FI documenet and system looks for WBS element also.
    After entering WBS element only system posts FI document. 
    In some cases we need to buy without purchase order (Oils/Lubricants/Spare parts etc.), in such case we use direct FI purchases (F-02) and posts  FI document and enters WBS element and system posts directly to WBS
    Srinivas

  • ALV Filter Selection w/ error "WBS element 0000000000000000 does not exist"

    Hello,
    In a few ALV reports, we have WBS Element column showed in ALV list and WBS Element defined as type BSEG-PROJK, which has conversion routine ABPSP.
    When WBS Element is used for ALV list Filter, in Selection screen, error message "WBS element 0000000000000000 does not exist" is pop up as we hit Enter key or click on u201CSelection optionsu201D button with no value entered in Input fields.
    We get same error even after we enter an existing WBS Element in Low selection input field and hit Enter key.
    Itu2019s ok if we enter existing WBS Element value in both Low and High selection input fields.
    We know we have workaround by entering both Low and High input field, and we can fix ALV reports by using character based WBS Element, such as PRPS-POSKI.
    BUT, as users told me, they donu2019t have this problem before and it just happened. We checked the recent Transports and couldnu2019t see anything relevant.
    Could any of you let me know if you have any clue or if thereu2019s any other way to fix it besides changing report by report.
    Thank you.
    SL

    Hello,
    In a few ALV reports, we have WBS Element column showed in ALV list and WBS Element defined as type BSEG-PROJK, which has conversion routine ABPSP.
    When WBS Element is used for ALV list Filter, in Selection screen, error message "WBS element 0000000000000000 does not exist" is pop up as we hit Enter key or click on u201CSelection optionsu201D button with no value entered in Input fields.
    We get same error even after we enter an existing WBS Element in Low selection input field and hit Enter key.
    Itu2019s ok if we enter existing WBS Element value in both Low and High selection input fields.
    We know we have workaround by entering both Low and High input field, and we can fix ALV reports by using character based WBS Element, such as PRPS-POSKI.
    BUT, as users told me, they donu2019t have this problem before and it just happened. We checked the recent Transports and couldnu2019t see anything relevant.
    Could any of you let me know if you have any clue or if thereu2019s any other way to fix it besides changing report by report.
    Thank you.
    SL

  • Error when I execute CJ88 form WBS element to AUC asset.

    Hi,
    We have one WBS element which was created to settle the values to AUC asset at the period end. Now we are in 2012 fiscal year 8th period. Asset accounting books were closed for company code of the 2011 fiscal year. This company code currency AUD and Controlling area currency is EUR.
    User has booked some expenses to this WBS element in company code currency in 2012 fiscal year 1st period. When he tried to settle in 2012 fiscal year 1st period, he is getting error like "First clear the values in previous year". when we go and see the WBS element for the 12th period of 2011 fiscal year, still there is a difference "0.01".
    When we go and see the CJI3 for this WBS element, fiscal year 2011 and period 12 still there is some 0.01 value. My doubt is why system is showing this difference in CJI3, even I have posted transactions in company code current. Client was able to close the Asset accounting books without any errors. 
    User has posted expenses debit and credit amount to this WBS element during the period in 2012 fiscal year, still system is showing 5.25 difference  for the same WBS element in CJI3 transaction code.
    Could any body help me to know why this difference is showing even we post the amounts in company code currency. Why system has not given any error in 2011 fiscal year when user was closing books for asset accounting?
    Thanks and regards,
    Yelamanda Rao.

    When closing the year, the system checks to see if Periodic Posting has been recently run, and throws error if it still needs running.  System performs other checks too, such as checks for incomplete asset records.
    However, the system doesn't check for missed settlements.  We have to manually check for settlement errors, and for pending settlements, before closing out the AA year.
    There could be an OSS Note on this topic, do not know.  You may need to reopen the fiscal year and AA year and complete your asset support transactions, settlement, periodic posting, AFAR, AFAB.
    Since the year is already audited, stay in touch with accounting and your auditor before taking these steps.
    It is possible to enter offsetting g/l entries to nullify and defer the impact of your settlement, etc., to FY12 if your requirement is to not alter the FY11 g/l balances audited.  But the AA sub-ledger will be slightly changed.
    Regards,
    Greg

  • Error while Creating WBS element using BAPI 'BAPI_BUS2054_CREATE_MULTI'

    Hi Expert,
    I've a requirement to create WBS elements using BAPI. And I am using BAPIs in the following manner.
    CALL FUNCTION 'BAPI_PS_INITIALIZATION'
      CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'
        EXPORTING
          i_project_definition = g_pdwbs
      TABLES
        it_wbs_element             = it_wbs_element
       et_return                  = it_return
      EXTENSIONIN                =
      EXTENSIONOUT               =
        CALL FUNCTION 'BAPI_PS_PRECOMMIT'
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    When I do so I am getting the below errors. Please suggest.
    "Individual check for creating the object WBS Element C-497082 required ".
    "Individual check for creating the object WBS Element C-497082-0001 required".
    Please suggest how to correct this error. 
    <REMOVED BY MODERATOR - REQUEST OR OFFER POINTS ARE FORBIDDEN>
    Edited by: Alvaro Tejada Galindo on Aug 18, 2008 5:25 PM

    I am getting the same error, but I cannot figure it out how to detect it and fix it.  Will you please share your solution?
    Thanks,

  • Error while creating WBS element.. regarding source structure

    I am creating a project and then a WBS element. Its a investment project. While creating WBS element XXX, it gives me error that "WBS element XXX: SOurce assignments for source structure A1 missing in Investment Profile ZZZZZ."
    What shall I check? what could be the reason?
    Thanks,
    A

    hi,
    In this IMG activity, you define the source structures used when settling and costing joint products.
    A source structure contains several source assignments, each of which contains the individual cost elements or cost element intervals to be settled using the same distribution rules
    Just consult with your CO Consultant...
    Venkatesh

  • Error while uploading Journal with wbs element

    Hi SAP Folks,
    I am trying to upload journal through a customized transaction.
    The journal line item has wbs elements in it.
    While uploading journal it is showing the below error only when I am using a particular cost element from XXXX Cost element group.
    For other cost element from ZZZZ cost element group, it is not showing any error.
    ERROR: This G/L Code is only valid for Capital Projects (C-WBS elem.
    Is there  any transaction code which will link the cost elements to the project codes.
    Please help.
    Thanks in advance.

    Hi Paulo,
    This G/L code is only valid for Capital Projects (C-WBS elem
    Message no. ZCO002
    Prerequisite
    CO Area = 'XXXX'
    AND G/L >= '10000' AND G/L <= '19999'
    Check
    ( WBS Element >= 'x.1' AND
    WBS Element <= 'x.9.99.999.9.9.9' )
    OR
    ( Network >= 'x1' AND
    Network <= 'xZZZZZZZZZZZ' )
    OR
    ( Order >= '700000000000' AND
    Order <= '799999999999' )
    "| PM Orders can use Capital GL codes for Capital Works |"
    Message
    message type - E
    message no. - 002
    Message class - ZCO
    message text - This G/L code is only valid for Capital Projects (C-WBS elem
    Do i need to change anything.
    Error message no. ZCO002 is matching with the message of Validation.
    How do I proceed further??
    Thanks in advance
    Regards,
    Sophia

  • Message error Item wbs element budget exceeded

    Hi
    when I do a purchase requisition imputed to WBS element, WBS element consuming, but when I'm going to make the budget document of the reserve (R) in a transaction FMX1 jumps me an error message:wbs element budget exceeded ,it is trying to consumed WBS element , when it has consumed in the purchase requisition.
    I have solved it error with limits tolerance but in the funds commitments consumed other time , we see these results  in the report S_ALR_8713558.
    Where is the problem????
    Than you

    You have to differentiate the beaviour of the availability control in customizing for PS > Costs > Budget > Define tolerance limit
    With the "transaction group" you can differentiate for:
    ++     All activity groups
    00     Purchase requisition
    01     Purchase order
    07     Funds reservation
    Ciao
    Giorgio

  • Error in WBS element while doing the purchase requisition

    Dear All,
    While doing the purchase requisition in ps
    the error is : Item 010 WBS element IN05-PR09-16 . 04 budget exceeded.
    Kindly parovide any solution.
    Best Regards,
    Venkat.

    Hi Venkar,
    Check the available budget against WBSE - IN05-PR09-16 . 04 (S_ALR_87013558 - Budget/Actual/Commitment/Rem Plan/Assigned ), and the PR amount. Available Budget should be more than PR amount. Based on the tolerance limits set for the  budget profile, maintain the Current Budget with budget updates and try to create a PR accordingly.
    Hope this solves your problem !!
    Br
    Hari.
    Edited by: Hari Krishna Kudaravalli on Aug 20, 2009 3:25 PM

Maybe you are looking for

  • Ipod touch3g in infinite loop with apple logo and download swirl

    have tried to restore multiple times by pressing power and home key at same time. now ipod touch 3 gen 32 gig cannot be found by itunes to resync.  Is it a paperweight now or is there something i missed to fix it?  This all started by not being able

  • Printhead Problem Error

    Hello, I have an HP 8500 a909g all in one or 8500ag im not sure but it has a touch screen on it and when I turn it on I get the error message the following printhead has a problem Black/Yellow (k/Y)  I tried power resets, pulled the printhead out cle

  • PSE 13 open macbook Photos

    re PSE 13 will not allow me to open images from macbook Photos. Every time I attempt to open an image from Photos PSE 13 crashes. I have to copy image to Desktop and open that way. Any suggestions? RLT

  • Sharepoint 2010 dbo.AllDocStreams big

    I have a sharepoint 2010 farm and 100 mysites. When I do stsadm -o enumsites and get a list of all mysites the total size of all site collections is around 30GB (actual) The used space in the database on the SQL server is in the dbo.AllDocStreams tab

  • Two identical profile in system preference – display – color?

    Hello to all. I am a new Mac user and I would ask for clarification. My  hobby is photography. When selecting a different color profile in the Display preferences pene in system preferences I noticed that I have two profiles with the same name (for e