Error while Creation of WBS

Dear Experts,
When i am trying to create the WBS under project definition i am getting the following error, Please guide me to resolve this error.
" i am geting error as several WBS elements on level 1 not allowed".
Thanks in advance
Sreekanth

Hi,
We have option to create a either project with single root or multiple root. Root means level 1 WBS. If you want Multiple WBS  at level 1 then goto OPSA give you project profile number and in Control TAB  remove the tick  for  only one root. Or else when you create the WBS change the level to 2 .
Thanking you
Vengaiah Chowdary

Similar Messages

  • Error while creation of service entry via BAPI_ENTRYSHEET_CREATE

    Hi All,
    I am struggling while creation of service entry using the BAPI, BAPI_ENTRYSHEET_CREATE. I am getting error ""No account assignment exists for service line 0000000010". I am passing the essr, eskn,eskl, esll structures as-
    Please help sorting out what is the issue in the parameters, I am able to manually create an SER via ML81N though.
    CALL FUNCTION 'BAPI_PO_GETDETAIL'
      EXPORTING
        PURCHASEORDER    = WS_PO
        ITEMS            = 'X'
        SERVICES         = 'X'
      IMPORTING
        PO_HEADER        = WA_PO_HEADER
      TABLES
        PO_ITEMS         = PO_ITEMS
        PO_ITEM_SERVICES = PO_SERVICES
        RETURN           = BAPI_RETURN_PO.
    Entry sheet header
    LOOP AT PO_ITEMS.
      BAPI_ESSR-PO_NUMBER = PO_ITEMS-PO_NUMBER.
      BAPI_ESSR-PO_ITEM   = PO_ITEMS-PO_ITEM.
      BAPI_ESSR-SHORT_TEXT = 'Sample'.
       bapi_essr-acceptance = 'X'.
      BAPI_ESSR-DOC_DATE = SY-DATUM. " wa_po_header-doc_date.
      BAPI_ESSR-POST_DATE = SY-DATUM. "po_items-price_date.
      IF PO_ITEMS-ACCTASSCAT = 'U'.
        BAPI_ESSR-ACCASSCAT = 'K'.
      ELSE.
        BAPI_ESSR-ACCASSCAT = PO_ITEMS-ACCTASSCAT.
      ENDIF.
      BAPI_ESSR-PCKG_NO = PO_ITEMS-PCKG_NO.
      APPEND BAPI_ESSR.
    ENDLOOP.
    LINE_NO = 1.
    SERIAL_NO = 0.
    LOOP AT PO_SERVICES. " WHERE NOT short_text IS INITIAL.
      CLEAR BAPI_ESLL.
      BAPI_ESLL-PCKG_NO = PO_SERVICES-PCKG_NO.
      BAPI_ESLL-LINE_NO = LINE_NO.
      BAPI_ESLL-EXT_LINE = PO_SERVICES-EXT_LINE.
      BAPI_ESLL-OUTL_IND = PO_SERVICES-OUTL_IND.
      BAPI_ESLL-SUBPCKG_NO = PO_SERVICES-SUBPCKG_NO.
      BAPI_ESLL-SERVICE = PO_SERVICES-SERVICE.
      BAPI_ESLL-BASE_UOM = PO_SERVICES-BASE_UOM.
      BAPI_ESLL-UOM_ISO = PO_SERVICES-UOM_ISO.
      BAPI_ESLL-PRICE_UNIT = PO_SERVICES-PRICE_UNIT.
      BAPI_ESLL-FROM_LINE = PO_SERVICES-FROM_LINE.
      BAPI_ESLL-TO_LINE = PO_SERVICES-TO_LINE.
      BAPI_ESLL-SHORT_TEXT = PO_SERVICES-SHORT_TEXT.
      BAPI_ESLL-PLN_PCKG = '2'.
      BAPI_ESLL-PLN_LINE = LINE_NO.
      APPEND BAPI_ESLL.
      LINE_NO = LINE_NO + 1.
    ENDLOOP.
    Now we wanted to create SES based on entered Quantity & NetValue.
    LOOP AT BAPI_ESLL.
      IF BAPI_ESLL-LINE_NO = '2'.
        BAPI_ESLL-QUANTITY = PO_SERVICES-QUANTITY.
        BAPI_ESLL-GR_PRICE = WS_PR. "po_services-gr_price.
        MODIFY BAPI_ESLL INDEX SY-TABIX TRANSPORTING QUANTITY GR_PRICE.
      ENDIF.
    ENDLOOP.
    LOOP AT PO_ITEMS.
      CLEAR BAPI_ESKL.
      BAPI_ESKL-LINE_NO = 2.
      BAPI_ESKL-SERNO_LINE = 1.
      BAPI_ESKL-PERCENTAGE = 100.
      BAPI_ESKL-SERIAL_NO = 1.
      APPEND BAPI_ESKL.
      SERIAL_NO = SERIAL_NO + 1.
      BAPI_ESKN-GL_ACCOUNT = PO_ITEMS-MAT_GRP.
      BAPI_ESKN-PCKG_NO = '2'.
      BAPI_ESKN-SERIAL_NO = SERIAL_NO.
      APPEND BAPI_ESKN.
    ENDLOOP.
    CALL FUNCTION 'BAPI_ENTRYSHEET_CREATE'
      EXPORTING
        ENTRYSHEETHEADER            = BAPI_ESSR
        TESTRUN                     = ''
      IMPORTING
        ENTRYSHEET                  = WS_ENTRYSHEET_NO
      TABLES
        ENTRYSHEETACCOUNTASSIGNMENT = BAPI_ESKN
        ENTRYSHEETSERVICES          = BAPI_ESLL
        ENTRYSHEETSRVACCASSVALUES   = BAPI_ESKL
        RETURN                      = I_RETURN.
    Thanks!!

    The issue resolved now by passing the following parameters-
    EntrySheet header-
    BAPI_ESSR-PO_NUMBER = PO_NUMBER.
    BAPI_ESSR-PO_ITEM   = PO_ITEM.
    BAPI_ESSR-SHORT_TEXT = as entered by user
    BAPI_ESSR-ACCEPTANCE = u2018Xu2019 or space.
    BAPI_ESSR-DOC_DATE = Todayu2019s date.
    BAPI_ESSR-POST_DATE = Todayu2019s date.
    BAPI_ESSR-PCKG_NO = '0000000001'.
    Entry Sheet Account Assignment-
    BAPI_ESKN-COSTCENTER = Cost Center
    BAPI_ESKN-WBS_ELEMENT = WBS element
    BAPI_ESKN-AUFNR = Order
    Entry Sheet Services-
    Unplanned line-
    BAPI_ESLL-PCKG_NO = '0000000001'.
    BAPI_ESLL-LINE_NO = LINE_NO (000001).
    BAPI_ESLL-EXT_LINE = '0000000000'.
    BAPI_ESLL-OUTL_LEVEL = 0.
    BAPI_ESLL-OUTL_IND = 'X'.
    BAPI_ESLL-SUBPCKG_NO = '0000000002'.
    Planned line-
      BAPI_ESLL-LINE_NO = LINE_NO (000002).
      BAPI_ESLL-PCKG_NO = '0000000002'.
      BAPI_ESLL-SUBPCKG_NO = '0000000000'.
      BAPI_ESLL-EXT_LINE =   '0000000010'.
      BAPI_ESLL-SERVICE = '0000000000'.
      BAPI_ESLL-OUTL_LEVEL = 0.
      BAPI_ESLL-OUTL_IND = ' '.
      BAPI_ESLL-QUANTITY = as entered by user
      BAPI_ESLL-BASE_UOM = PO_SERVICES-BASE_UOM.
      BAPI_ESLL-GR_PRICE = as entered by user
      BAPI_ESLL-PLN_PCKG = '0000000000'.
      BAPI_ESLL-PLN_LINE = '0000000001'.
    Entry Sheet Service access values-
    BAPI_ESKL-LINE_NO = '2'.
    BAPI_ESKL-PCKG_NO = '0000000002'.
    BAPI_ESKL-PERCENTAGE = '100'.
    Thankyou!

  • Error while creation of web service model in web dynpro

    Hi,
    I am getting following error "no services available or local server not accessible"  while creation of web service model.
    I have already created my web service nad deployed it. It was deployed successfully.
    In the web service model creation wizard I am not able to see neither my web service nor any other standard service.
    Regards,
    Anubha Pandey

    Are you using the deprecated Web Services model or the new adaptive web services model?
    Take a look in this document: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b2bc0932-0d01-0010-6d8e-cff1b2f22bc7

  • Error while settlement of WBS - Funds Management

    Hi,
    We have maintain derivation rule as - WBS to Fund Center. This Fund center is DUMMY because we need not want to control WBS through Funds Management.
    There is always one Cost center in each WBS. while settling this WBS we are getting error as -
    Asset ABC 000127000000 0000: no subnumber with FM assignment DUMMY / /
    Message no. AW851
    ABC - Company code
    000127000000 - asset number
    DUMMY - Fund center
    suggest.

    alex ice wrote:
    Hi, 1 change FC in AS02 to dummy if it applicable.
    > 2 Check note 618269 it applicable.
    > 3 remove FC from asset master data
    Hi Alex, how are u!?
    I've got the same issue than Harsh Vaidya in my system ...
    Ive already read this notes: [618269|https://service.sap.com/sap/support/notes/618269] (no apply to me, because Joint Venture Accounting isn't active), [844262|https://service.sap.com/sap/support/notes/844262], [1473357|https://service.sap.com/sap/support/notes/1473357], [446029|https://service.sap.com/sap/support/notes/446029] and [440396|https://service.sap.com/sap/support/notes/440396]
    All very interesting notes :P
    But... I couldn't find the solution
    I try to TRACE from FMDERIVE too, but when I go to KO88, FMDERIVE's trace doesn't track anything.
    Any help to throw some more light on this thread, would be very useful.
    Thanks a lot!
    Regards from Argentine.

  • Error while creation of Service PO

    Hi,
    While creation of service PO I am not able to put Material Text as that column is grayed & system asks me to put material text which is input disabled.
    Procedure I follows to create Service PO as below:
    PO type standard (NB).
    Then I put vendor, Org data & payment terms.
    Then Account assigmnment cat. 'K' (Cost Cetner) & Item Cat. D(Service).
    After that when put enter. Sytsem asks me to enter either material number or material text. But material text coulmn is grayed (Input dusabled). So I am not able to put it because of which I am not able to proceed further & not able to create Service PO.
    Awaiting your reply to solve this problem.
    R/-
    Pradip

    Hi V S,
    Please change the screen layout for respective field selection key for Material description as optional, then you can  edit the text in the material description
    Regards,
    Rao

  • Error while Creation on Track(create/save) CBS authorization exception?

    Hi All,
    I am trying to create Track in CMS in NWDI. When I am saving after importing relevant SC (ESS/MSS),
    I got below error while saving.
    CBS (URL http://sapdevep:50000/tc.CBS.Appl/archiveapi2/) authorization exception: User not authorized to log into build server. ( Service call exception; nested exception is: com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (401) Unauthorized. The requested URL was:"http://sapdevep:50000/CBSWebService/CBSHttpSOAP?style=rpc" )
    request you guide me for this problem.
    Thanks,
    Rafi Shaik

    Rafi,
    You might want to refer to this
    Cannot create a new track:  User not authorized to log into build server
    Also check this SAP Note
    #840523 -- NWDI server configuration: user, group and security role
    Thanks
    Prashant

  • Error while creation of waste approval in waste management in EH&S

    hi all,
    while creating waste approval i got some error message when i am using the process status as released. The error message is
    'Release status cannot be assigned to the waste approval 0000000010'
    or tell me how to create a waste approval.
    thanks
    regards
    sathish. R

    Hi sathish,
    waste approval can be created after business partner creation and assignment.
    in transaction waa02, create generator, generation and disposal channel. then you select for which generation and disposal channel you want to create waste approval.
    go to waste approval tab and give inputs like set status  01(in progress), authwasteappr number(plant_disposer_transporter), waste approval tyoe(0001), disposal doc type based on country eg for india (WD_IN), then validity period. press enter waste approval numer will be assigned internally.
    then select the created waste approval and assign waste code, partners and disposal channel details.
    This is the procedure to create waste approval. hope this will help you. if still error comes send your steps and screenshot to [email protected]
    -Ram

  • Error while creation of BP

    Hi all,
            while trying to add a BP, I'm getting an error,"The connected value was not found in table pricelists". I logged in as manager and set an alert to get a list  for BP creation. When i log in the database as a different user, then i'm unable to add a BP in the database, however, when i log in as manager, i can add the BP. Can anyone please tell me whats the cause of this error?
    Thanks in advance,
    Joseph

    Hi Gordon,
                   Yes, the issue was in authorization. The user was not a super user but authorization was not administered. Thanks  Gordon.
    Regards,
    Joseph
    Edited by: Joseph Antony on Mar 3, 2009 1:21 PM

  • Runtime Error while creation of rule for IU elimination

    Hi,
    Following runtime error occuring while creating a rule under IU elimination method.
    Error analysis                                                                               
    A RAISE statement in the program "CL_UC_SINGLESELCOND_FACTORY===CP" raised the               
         exception                                                                               
    condition "NOT_FOUND".                                                                               
    Since the exception was not intercepted by a superior                                        
        program, processing was terminated.                                                          
        Short description of exception condition:                                                    
       For detailed documentation of the exception condition, use                              
        Transaction SE37 (Function Library). You can take the called                                 
        function module from the display of active calls.
    Trigger Location of Runtime Error                                                                
        Program                                 CL_UC_SINGLESELCOND_FACTORY===CP                     
        Include                                 CL_UC_SINGLESELCOND_FACTORY===CM001                  
        Row                                     33                                                   
        Module type                             (METHOD)                                             
        Module Name                             IF_UC_CUST_FACTORY~GET_INSTANCE_BY_GUID              
    Please advice...
    Edited by: VNK on Nov 25, 2008 11:18 AM

    Hi,
    please check SAP note 859500:
    - implement all relevant notes
    - send a message to SAP support for checking and solving the GUID inconsistencies.
    best regards
    Thomas

  • Error while creation of role menu

    Dear All,
    I am creating role for my functional team. In Menu,  I want to copy the area menu W10T meant for IS Retail. But, it gives me following dump:
    Runtime Errors         CALL_FUNCTION_PARM_MISSING
    Except.                CX_SY_DYN_CALL_PARAM_MISSING
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_DYN_CALL_PARAM_MISSING', was
    not caught in
    procedure "MENU_AREA_F4_HELP_HIERARCHY" "(FUNCTION)", nor was it propagated by
    a RAISING clause.
    Since the caller of the procedure could not have anticipated that the exception would occur, the current program is terminated.The reason for the exception is:
    When calling the function module  "MENU_AGR_TREE_GET_SELECTED", one of the
    parameters needed according to the interface description was not specified.
    This parameter was "INPUT_DTLS".
    I searched for notes but no help, google didnt work either for this dump for menu creation.
    Any help please.
    regards, Sean.

    Shantanu,
    Have you tried narrowing down the problem to only this area menu or does it happen if you attempt to change/copy any of your menus in your system?
    What release is your SAP System?
    regards,
    Ronald Meyer

  • Error while creation financial document while cancellation

    Dear all,
    After reversing the invoice, the financial accounting document is not getting saved. It is giving error message to select a particular number range. But after this invoice a few more invoices were reversed and the system has not issued any error messages and financial document also has been generated successfully. Now I want to debug the program to check what could have went wrong while generating this particular invoice with the error message.
    Request you to advice me when exactly does the system assigns the number internally to the financial document to set the break point at that level and hence probably will be able to resolve the issue. I have tried to take the help of my abaper but am unsuccessful in finding out the error. please do the needful.
    Thanks,
    Andy.

    Dear Ahemmed,
    The error message is pasted below
    VF11 is the T-code used for cancellation of the invoice.
    And for document type RV, please find the screen shot below
    For reverse document type VR,
    Thanks,
    Andy

  • Error:While creation of Classification view using-'BAPI_OBJCL_CREATE'

    Hi all,
    I am using function module -
    CALL FUNCTION 'BAPI_OBJCL_CREATE'
      EXPORTING
        OBJECTKEYNEW            = OBJECTKEYNEW1
        OBJECTTABLENEW          = 'MARA'
        CLASSNUMNEW             = CLASSNUMNEW1
        CLASSTYPENEW            = CLASSTYPENEW1
      STATUS                  = '1'
      STANDARDCLASS           =
      CHANGENUMBER            =
      KEYDATE                 = SY-DATUM
      NO_DEFAULT_VALUES       = ' '
    IMPORTING
      CLASSIF_STATUS          =
      TABLES
      ALLOCVALUESNUM          =
        ALLOCVALUESCHAR         = ALLOCVALUESCHAR1
      ALLOCVALUESCURR         =
        RETURN                  = RETURN1
    for creation of classification of material.But it gives me afollowin errors -
    1)Assignment does not exist or is not valid on
    2)Table   not supported for class type
    3)Assignment was not created
    in return table.
    Thanks.

    Hi,
      Please follow the below steps.
    Creating the Classification View using the Function module 'BAPI_OBJCL_CREATE'.
    Check the Class Type and Class Number which you are passing.
    Generally it will be Class type - 001 (Material Class) and Number will be ENGINEERING.
    It depends.
    But, what you can do is, Check material which has classification data filled.
    And just use the same class Type and Class Number Details.
    Try this way.It should work.
    To know the Available Class Types refer to table TCLA.
    Please let me know, if you want further help.
    Thanks & Regards,
    Vamsi.

  • Error while creation of Collective contract account

    HI experts,
    While creating Collective  contract account  thru CAA1,i am getting Error as "is collective invoice acct category but collective invoices not active" though i have defined no ranges & have done necessary config. Pls help me in this regard thru ur valuable experience.
    Regards,
    Raman

    Hi Raman,
    That should be error >3573.
    Set field 'Collective Bills' (XUSSR) in table TFK000C and that should workout for you. Through SM30 or
    Customizing -> Fin Acctg -> Contract Accounts Receivable and Payable -> Basic Functions  -> Posting and Documents -> Basic Settings -> Maintain Central settings for posting.
    Best regards,
    David
    Edited by: David Tonade on Nov 27, 2009 3:39 PM

  • Error while clicking on WBS in CJ20N

    Hi,
    When i run CJ20N and click on WBS element it giving me dump saying -
    Runtime Errors         DYNPRO_NOT_FOUND
    ShrtText
         Screen does not exist
    What happened?
         Error in ABAP application program.
         The current ABAP program "SAPLCSCR" had to be terminated because one of the
         statements could not be executed.
         This is probably due to an error in the ABAP program.
         The program had to be terminated.
    Error analysis
         Program " " tried to use screen 0000.
         The screen does not exist.
    Trigger Location of Runtime Error
         Program                                 SAPLCSCR
         Module Name                             SYSTEM-EXIT
    What should be done for this and which points should i consider to solve this?
    Pls. help.

    HI,
    I checked all the exits u have mentioned but none of them were implemented.
    What can i do now?

  • Shopping cart error while creation

    Hello.
    In PPOMA_BBP, i  moved a user from an organisational unit to another one manually.
    2) while creating a shopping cart with this user, i get the following errors:
       i) No data found for partner '000000134', inform system admin
       ii) No address found....
       iii) Fill in the supplier.
    I launched the transaction BP to find the cause. i found out that my partner is still related to the old organisational unit. You have the Relations button on the top right in the transaction BP which shows this.
    I tried to modify the relationship in the SRM portal by Modifying partner data to the new organisational unit but i get a popup which says the user is blocked every time i try to save the modification.
    Edited by: Antish  Awootar on Feb 9, 2009 7:02 AM

    Hi,
    Give the below parameters.
    For Example--
    Activity Category --> 06 (Deletion)
    Relationship/Role Def.Category--> BUR010 (employee of)
    Business Partner 1 --> your employee BP number
    BP role (Business Partner 1) --> BUP003 (employee)
    Business Partner 2 --> your purchase organisation BP no. (exp.)
    Regards,
    Sachin

Maybe you are looking for

  • Crash in loadlocale()

    I am porting a C++ app from Windows to OSX (10.6.8) and I'm getting a seemingly thread related crash in std::ostream::operator<<(). The function loadlocale crashes with Exception Type:  EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE

  • How to install iFS and iAS on the same machine?

    I have successfully installed iFS on a Windows NT 4 machine. Now, I would like to install iAS Enterprise Edition on the same machine. The installation guide for iAS says that I should first deinstall all products from the default ORACLE_HOME. I have

  • How to monitor RAC services and nodeapps in Grid Control

    Hi, I have created a number of RAC service names such as GL on a 2-node RAC and would like to use Grid control 10.2.0.2 to monitor the availability of those services and nodeapps. I was not able to find anything in Grid Control that would allow me to

  • SAXParseException: character conversion error: Illegal character 0x9A...

    This is my problem: I use JDom to parse remote XML document with DTD linked to it. But I get that error. Request is: SAXBuilder builder = new SAXBuilder(); Document doc = builder.build(new URL(url)); This works fine when I use these XML and DTD docs

  • I have a ram problem, can somebody please help me?

    Hello This is the first time I've put a computer together from scratch (I got some help from a friend though). What I wonder is if there is a manual for the MSI mothercards somewhere on the net because I didn't get any good description  in the packag