CO-doc. number assignment not possible for bus.trans. COIN in CO area 1000

Hi,
CO-doc. number assignment not possible for bus.trans. COIN in CO area 1000
i saw someone wrote ( as below )
Go to KANK,select the COIN and then click on Primary posting and save it now COIN is in primary posting then you create your ni range
when i go into KANK i dont see any Primary posting
when i click on the Maintain Group pushbutton (F6) i do see lots of check box but no Primary posting
can someone guide me steps to get rid of this error
points will be awarded even if the solution dont solve my problem
thanks
guanwei

hi
goto kank
select edit group
goto insert group and give group name
goto insert interval
tick group
then select COIN
then assign that element
regards,
sreekanth

Similar Messages

  • Number assignment not possible for bus.trans. COIN in CO area RA01

    Dear All,
    I want to assign COIN group to RA01 in KANK transaction. Will you please let me know how to do this.
    Thanks in Advance,
    Thanks,
    Ranjan

    hi
    goto kank
    select edit group
    goto insert group and give group name
    goto insert interval
    tick group
    then select COIN
    then assign that element
    regards,
    sreekanth

  • CO-doc. number assignment

    hello pp specialist
    syatem shoowing showing this mesage(CO-doc. number assignment not possible for bus.trans. COIN in CO area KR1) how we can resolve this issue

    Hi,
    Just maintain number range in
    In transaction code - KANK
    and enter your controlling area ..
    then maintain number range for your COIN element (by click group change tab)
    kindly check and revert back
    thanks

  • Serialization not possible for material number (SHPCON IDOC error )

    Hello,
       Can any one shed some light on following inbound PGI IDOC (SHPCON) Error from 3PL.
    "Serialization not possible for material number XYZ"
    Message no. IO205
    Diagnosis
      The serial number profile of the material does not allow serialization for the operation you have chosen.
    Procedure
    Maintain the serial number profile.
    Additional info
    1) Serial number profile is maintained in the material master
    2) Serial number populated in the idoc E1EDL11 is not used in any delivery or assigned  and it is valid serial number  and has equipment master record
    3) If i use the same serial number from the IDOC and post PGI manually via VL02N , I am able to post the PGI without any problems and I don;t get the above error
    4) IDOC has all the info required , Delivery number,Valid material # , qty,UOM and Line item number of the delivery .
    Thanks in advance for your help
    GJ

    Dear Jalwadi
    I got exact same problem. How did you solve it?

  • 'BAPI_PO_CREATE1'  Multiple account assignment is not possible for AFS item

    'BAPI_PO_CREATE1'  -> This BAPI works perfectly without the  'account assignment' option . But  for purchase requisitions which have account assignments  BAPI returns the error  - E|8W |185   |Multiple account assignment is not possible for AFS items.
    Can somebody please help me to get this error resoleve .
    My coding I have done like below.
    DATA: pohead  TYPE bapimepoheader.
    DATA: poheadx TYPE bapimepoheaderx.
    CONSTANTS : c_x VALUE 'X'.
    DATA: exp_head TYPE bapimepoheader.
    DATA: return  TYPE TABLE OF bapiret2 WITH HEADER LINE.
    DATA: poitem  TYPE TABLE OF bapimepoitem WITH HEADER LINE.
    DATA: poitemx TYPE TABLE OF bapimepoitemx WITH HEADER LINE.
    DATA: posched  TYPE TABLE OF bapimeposchedule WITH HEADER LINE.
    DATA: poschedx TYPE TABLE OF bapimeposchedulx WITH HEADER LINE.
    DATA: POACCOUNT  TYPE TABLE OF BAPIMEPOACCOUNT WITH HEADER LINE.
    DATA: POACCOUNTX TYPE TABLE OF BAPIMEPOACCOUNTx WITH HEADER LINE.
      pohead-comp_code = '1000'.   "IEQ1 plant. "'1000'.
      pohead-doc_type   = 'NB'     .
      pohead-creat_date = sy-datum   .
      pohead-vendor = EKKO-LIFNR. "'0000500004'.
      pohead-purch_org = purch_org.
      pohead-pur_group = purch_grp.
      pohead-langu      = sy-langu   .
      pohead-doc_date   = sy-datum.
      poheadx-comp_code  = c_x.
      poheadx-doc_type   = c_x.
      poheadx-creat_date = c_x.
      poheadx-vendor     = c_x.
      poheadx-langu      = c_x.
      poheadx-purch_org  = c_x.
      poheadx-pur_group  = c_x.
      poheadx-doc_date   = c_x.
      poitem-po_item    = iLineItem.      "1.
      poitem-material   = req_item-MATERIAL.   " '000000000040000234'.
      poitem-plant      = req_item-PLANT.
      poitem-quantity   = req_item-QUANTITY.
      poitem-net_price  = NET_PRICE.
      poitem-price_unit = PRICE_UNIT.
      poitem-shipping   = 'Z1'.
      poitem-preq_no    = req_item-PREQ_NO.
      poitem-preq_item  = req_item-PREQ_ITEM.
      poitem-acctasscat = 'K'.
      APPEND poitem.
      poitemx-po_item    = iLineItem. "1.
      poitemx-po_itemx   = c_x.
      poitemx-material   = c_x.
      poitemx-plant      = c_x .
      poitemx-quantity   = c_x .
      poitemx-tax_code   = c_x .
      poitemx-item_cat   = c_x .
      poitemx-acctasscat = c_x .
      poitemx-net_price  = c_x.
      poitemx-price_unit = c_x.
      poitemx-shipping   = c_x.
      poitemx-preq_no    = c_x.
      poitemx-preq_item  = c_x.
      poitemx-acctasscat = c_x.
      APPEND poitemx.
      POACCOUNT-PO_ITEM = iLineItem.
      POACCOUNT-SERIAL_NO = iLineItem.
      POACCOUNT-GL_ACCOUNT = '0000211010'.
      POACCOUNT-SD_DOC = '0001001056'.       
      POACCOUNT-ITM_NUMBER = '000100'.       
      POACCOUNT-CO_AREA = '1000'.
      APPEND POACCOUNT.
      POACCOUNTX-PO_ITEM = '00001'.
      POACCOUNTX-SERIAL_NO = '01'." '01'.
      POACCOUNTX-PO_ITEMX = 'X'.
      POACCOUNTX-SERIAL_NOX = 'X'.
      POACCOUNTX-GL_ACCOUNT = 'X'.
      POACCOUNTX-SD_DOC = 'X'.
      POACCOUNTX-ITM_NUMBER = 'X'.
      APPEND POACCOUNTX.
      CALL FUNCTION 'BAPI_PO_CREATE1'
        EXPORTING
          poheader  = pohead
          poheaderx = poheadx
        IMPORTING
        exppurchaseorder = ex_po_number
        expheader        = exp_head
        TABLES
          return    = return
          poitem    = poitem
          poitemx   = poitemx
          POACCOUNT = POACCOUNT
          POACCOUNTX = POACCOUNTX.

    I  found the answer

  • Account assignment not possible (Asset not assigned to a business area)

    HI
    While posting an asset acquisition through F-90 by entering Business area, doc.type AA,TT-100,PK-70, i am getting the error messege AA483 - "Account assignment not possible (Asset not assigned to a business area)".
    I have correctly created asset master and assigned Business area and Cost centre.
    And i am not getting any problem in another company code for same asset class.
    Please suggest
    Bhanu Prakash

    Hello
    Assets are assigned to a single business area in their master record. Every posting to an asset balance sheet account is automatically posted to that business area. The business area for an asset is passed on to all line items connected with the asset. Therefore you do not need to make a manual account assignment for a business area at any point.
    http://help.sap.com/erp2005_ehp_02/helpdata/en/5f/1fac7c4aee11d189740000e8322d00/frameset.htm
    Check the info on the link please
    Reg
    assign points if useful

  • Split valuation not possible for FG

    Dear All,
    Please help me in this. FGs are batch valuated here. We receive the GR of production order as a valuated project / sales order stock.
    For a particular FG, while confirmation when I am trying to save, it is throwing an error "Split valuation is not possible for this material".
    Can anyone tell me what is the issue? We have several orders for the same materials which never had any problem like this. I assume there is some error in order itself.
    I have checked the batch of material, production order, the material master for the same and dont see any irregularity. What else needs to be checked?
    Sumeet

    Hi
    Split Valuation  maintain Diffrent Valuation Type With Diffrence price , and Maintain Diffrent Batches with batch number as Grade, assign the valuation type to batch , at the time of confirmation based on the grade you selct the batch number and confirm , it will be saved with diffrent grade with diffrent valuation.
    What is Split Valuation?
    Split Valuation means managing a material as several partial stocks. Each partial stock is valuated separately.
    Why do you require Split Valuation?
    Split Valuation is required for certain materials in order to valuate them separately.
    Following can be the reasons for opting for split valuation:-
    1) Different origin of the material
    2) Different grades of the material
    3) Different statutes of the material
    4) Differentiation between in -house production and external procurement
    5) Differentiation between deliveries
    IMG -> Materials Managementà Valuation and Account Assignment-> Split Valuation-> Activate Split Valuation
    IMG à Materials Managementà Valuation and Account Assignmentà Split
    Valuationà Activate Split Valuation à Configure Split Valuation
    IMG à Materials Managementà Valuation and Account Assignmentà Split
    Valuationà Activate Split Valuation à Configure Split Valuation
    2.2 Create Valuation type
    IMG à Materials Managementà Valuation and Account Assignmentà Split Valuationà Activate Split Valuation à Configure Split Valuation
    2.Allocate Valuation type to Valuation categories
    IMG ->Materials Management-> Valuation and Account Assignment-> Split Valuation-> Activate Split Valuation -> Configure Split Valuation
    2.4 Allocate Valuation categories to Valuation areas
    IMG à Materials Managementà Valuation and Account Assignmentà Split Valuationà Activate Split Valuation à Configure Split Valuation
    2.5 Default Valuation type per plant
    IMG à Materials Managementà Valuation and Account Assignmentà Split Valuationà Activate Split Valuation à Configure Split Valuation
    Create Manul batch number tcode- MSC1N Eg : A - Grade , B - Grade like that ,assign the Valution type to batch IN MSC1N Or MSC2N,
    U have to maintain Moving avg. Price for First Valuation type assignment , second time u are assignig the second valuation type u can give the Std Price .
    I hope this will work out
    Madhu
    Edited by: MADHU SUDHANA on Feb 4, 2009 6:46 PM

  • Goods receipt not possible for   delivery 80016425: error code 4   in MIGO

    Hi friends,
    I created STO from ME21N tr.code(document type:UB), then I created outbound delivery from VL10B tr.code based on STO.
    After that, goods issue is made by vl02n.Lastly , when I want to make  a goods receipt based on outbound delivery from MIGO
    (with mvmt type:101),it gives me error about"Goods receipt not possible for   delivery 80016425: error code 4   in MIGO tr.code" .
    Take your opinions

    Hi,
    Error 4 indicates there is/are no delivery item/items.
    Check following options:
    option-1--->Check material number extended to the both plants with storage locations
    option-2--->Check the material received already WRT  the delivery
    option-3---> Check confirmation control key in  material that needed in creation of an inbound delivery to have GR process
    option-4--->Check The latest goods receipt date in STO
    option-5--->Check(done any setting) if any billing to be done after PGI and then can do GR WRT delivery
    Regards,
    Biju K

  • Error in ME59N- Internal number assignment not defined

    Dear Gurus,
    I am getting error while creation automatic PO In ME59N. Below error shows
    Error Name                                                                                          Massage Class          Msg No.
    PO header data still faulty                                                                            MEPO                         2
    Internal number assignment not defined (please enter number)                 06                              243
    I have done all the setting in Material Master & Vendor Master for Automatic PO Genration.
    Aslo I maintain the source list & Info Record for two vendors.
    I assign the source of supply in PR .
    After this when I exicute in ME59N by entering Purchasing Group,Purchasing Org,Vendor,Plant
    and selected the Per Requisition , per contract tab.
    After this above two error is showing in SAP.
    Kindly give us solution to resolve this.
    Regards.
    Abhijit
    Subject changed to reflect the issue-  by: Jürgen L

    Hi
    The error is probably caused because T161-NUMKI = <BLANK>.  Please fill in the valid T161-NUMKI.
    This needs to be done in customising
    Transaction SPRO:
    Material Management -> Purchasing -> Purchase Order -> Define Document types
    Number range in the case of internal number assignment
    Hope this information is of help.
    Kind regards,
    Lorraine

  • Direct Posting is not possible for G/L accounts

    Hi,
    Procurement of Consumables thru Maintenance Order(for Breakdown Maintenance):
    1. Generation of Purchase Requisition thru maintenance order .
    2. Purchase Order from purchase requisition
    3. MIGO
    4. MIRO
    The required consumables are assigned in maintenance order. when converting PR to PO this consumables will automatically flow. According to the valuation class and gl account in material master GL  account  will also flow automatically.
    When converting PR to PO the system throws an error saying that Direct posting is not possible for the G/L account.
    I made this GL account as post automatically to ensure that  there should be no manual postings for such  automatic account determinated GL accounts thru valuation class.
    This error can be resolved by removing the tick mark post automatically but is this correct. If it is so then what is the implication of automatic a/c assignment thru valuation class.
    <removed_by_moderator>
    Thanks in Advance
    Regards,
    Radhika
    When I am trying to use a G/L account for a Consumable (eg: diesel) (that is required for Maintenance) at PO level (through maintenance order) system throws an error sying that Direct posting is not possible for the G/L account.
    Also, teh Same G/L

    Hi,
    Your balance sheet accounts for stock should be defined as for direct postings only. But the P&L accounts should not be marked.
    Regards,
    Eli

  • Parse method is not possible for this type Exception in web dynpro

    I have a file upload component and one button in a view.
    I have created a binary type context element and mapped it with fileupload component.while clicking the submit button I am getting " Parse method is not possible for this type" exception.
    help me out.

    Hi sridhar,
    Use this code for Upload
    context u create one attribute(up),u assign the data type as "Resource"(which is dictionary type)
    InputStream text = null;
        int temp = 0;
        try
             File file = new File(wdContext.currentContextElement().getUp().getResourceName());
             FileOutputStream op = new FileOutputStream(file);
             if(wdContext.currentContextElement().getUp()!=null)
                  text = wdContext.currentContextElement().getUp().read(false);
                   while((temp=text.read())!=-1)
                                                                       op.write(temp);
             op.flush();
             op.close();
        catch(Exception e)
         e.printStackTrace();   

  • Auxiliary Account Assignment not possible

    When i am creating PO with Account category A for Asset Procurement  at the time i assigned Asset master then system giving following error.
    "Auxiliary Account Assignment not possible, remove entry'
    Err No.AA449
    Regards
    Venki

    Hi
    Message No AA449 shows ""Auxiliary account assignment to asset not possible, remove entry""
    Hence check your entries
    Thanks
    Srinivas

  • The reporting point backflush is not possible for make-to-stock repetitive

    Hi All,
    we are using the assembly backflush in the MTS REM process. we are need to do the reporting point backflush
    if we tick against the RP backflush. what will be the effect in the process while confirmation.
    i read the sap library . it say like
    The reporting point backflush is not possible for make-to-stock repetitive manufacturing.
    is it correct.
    Thanks
    VRaj

    Hi mangal,
    i did all the setting as you said. but when click on the reporting point.
    system thru error
    Error reading reporting point information
    Message no. RM111
    Diagnosis
    The repetitive manufacturing profile is set for the reporting point procedure. However, either no reporting points exist for the material or they are incorrect. Two common reasons for this are:
    The repetitive manufacturing profile has been changed in the current session.
    You have not defined any milestone operations in the routing.
    When creating the product cost collector, no reporting points were created.
    Procedure
    Two alternative solutions are possible:
    Assign a repetitive manufacturing profile with no reporting point procedure to the material in the material master record.
    Recreate the reporting points by recosting the product cost collector. To do this, the following prerequisites must be met:
    In the material master record, in the production version, you must enter a routing under either detailed planning (first priority) or under rate-based planning (second priority).
    Milestone operations must exist in this routing. The system ususally automatically creates the reporting points from these milestones when creating a product cost collector or when creating a production version.
    how to create the REPORTING POINT

  • Number group not maintained for WITH HOLDING TAX challan

    Dera frends can you help in solving the problem.
    I have configured WHT it is posting well in vendor a/c and posting in tax account too. but while executing remittence challan System giving message " number group not maintained for CO code xyz section IEQEWT! and business places 194c.
    where company code - XYZ
    official withholding tax code - 194c
    business place EWT1.

    Hi
    Pls follow the path
    IMG>Financial Accounting (New)>Withholding Tax>Extended Withholding Tax>Postings>Certificate Numbering for Withholding Tax
    Pls assign points if the information is useful to you
    Regards
    Sanil Bhandari

  • Internal number assignment not defined (please enter number)

    Hi gurus,
    I am trying to recreate a PO with the BAPI BAPI_PO_CREATE but I always get the following error message 'Internal number assignment not defined (please enter number)'. Can anyone assist please
    Regards,
    Thandi

    Hi,
    Are you passing the purchase requisition number?
    Possibly you cannot use that.
    Check the same.
    First try creating a PO via ME21N with the data you have.
    Check if you face any problems and then try with the BAPI.
    It will save a lot of time in investigating the errors.
    Regards,
    Ankur Parab

Maybe you are looking for

  • Cannot revert to original after editing in Photoshop

    I recently used Photoshop to edit a photo I had in iPhoto. After making my changes in Photoshop, I saved the photo and the changes were reflected in iPhoto. I now want to revert the photo to the original, but when I tried to do this in iPhoto it woul

  • How to validate table entries for that table

    i hav created one ztable se11.how to validate table entries for that table

  • Sales Forecast Scenario - help needed

    Dear Experts I need your help in following forecast scenario: I am have two planning areas, one for actuals and other for planning (The cube structure are similar). The forcast function is written at material and month level in mutiplanning area. I h

  • Error when encrypting external hard drive

    When I tried to encrypt my external harddrive I get the message "Core storage volume is already encrypt". And it isnt. It has been but i decrpyted it for a couple of days, and no I cannot encrypt the disk. Can any1 help me?

  • Make 2 methods run at exactly the same time

    Hi, How can I make 2 mothds be executed at exactly the same time? Is it anything to do with the synchronized keywor? Thanks.