Factory Calendar issue in creation of Sales Order/ Delivery Order

Hi all,
There is one issue. Our user is not able to create Sales Order/ delivery order as he is getting the below error message u201CDate 2010-12-27 lies after the end of Factory calendar F1u201D. But when I checked the plant in customization, the Factory calendar assigned is u201CKRu201D and not u201CF1u201D. So I donu2019t understand why this error message is appearing. But when I checked Factory calendar u201CF1u201D, it was valid only up to 2010 and there are special rules also set. Only few days in the year are working days. Factory Calendar u201CF1u201D description says u201CKOR customers billed on the 25th of every monthu201D
Please advice.
Regards,
Brijesh

Dear
If F1 is the correct calander , then goto OP03-Calander Maintenece -select the Holoiday Caleneder  and extende the Valaidity till 2020 and also Select the Factory Calander  do the same till 2020 .Now Goback to main screen of OP03-Plant asisngement -re-assing the same F1 calaneder .
Secondly check the factory calender of the plant in OX10.Then in SPRO > enterprise structure >Definition > logistic execution>define shipping point .Select you shipping point and assgin the proper factory calender
.Goto OVX5 , choose your sales organization, click on details, Detailed information tab - Sales Org Calendar (maintain your factory calendar here not Sale Org Calander )
.Check in VOV8, use the "Propose delivery date" and "Lead time in Days" options to default today's date as the requested delivery date.
Refer : Public holiday dates issue
Regards
JH

Similar Messages

  • Issue with creation of sales order in CRM system

    Hi Experts,
    Here are the details of the process we followed
    1.     We found a Function Module u201CBAPI_BUSPROCESSND_CREATEMULTIu201D which is used to create a sales order in CRM.
    2.     We have set a Break point in the FM u201CCRM_ORDER_MAINTAINu201D and tried to create a sales order using the transaction u201CCRMD_ORDERu201D. For this the parameters we have given are
    a.     sold-to-party
    b.     ship-to-party
    c.     quantity
    d.     product
    And after this we have saved the order and the order is saved and in the debug mode we have the parameters in u201CCRM_ORDER_MAINTAINu201D and we found all these     parameters in the FM.
    3.     After this we have given all the parameters mentioned above in the FM u201CBAPI_BUSPROCESSND_CREATEMULTIu201D and still the order is not created, gave an error message saying that CRM_ORDER: Incorrect values in the interface object.
    4.     We checked the CRM_ORDER badiu2019s interface and it is having only header guid to be given. We gave this header guid also in the FM u201CBAPI_BUSPROCESSND_CREATEMULTIu201D and then it gave a different error saying that : Document cannot be saved.
    5.     Finally we are not able to know the parameters to be passed to the FM to create an order.
    Any inputs will be highly appreciated.
    Thanks a lot in advance.
    Lakshman.

    Hi Easwar,
    Now i am able to create a sales order by passing the parameters to "BAPI_BUSPROCESSND_CREATEMULTI" and the parameters i am passing are Process_type in the ORDERADM_H, parner_fct (partner function), partner_no , Quantity and prod_ordered (product name) but after creation of sales order using my report program and if i see the sales order uisng transaction crmd_order (using transaction ID) or crmd_orderadm_h(using headerguid) or crm_order_index, only the PROCESS_TYPE is updated but the remaining parameters which i passed like QUANTITY,PRODUCT NAME,PARTNER NUMBER are not present in the sales order. I am providing the code which i have written for creation of the sales order. Can you please look into it and tell me where i might have went wrong??
    *& Report  ZCREATEORDER_TEST
    REPORT  ZCREATEORDER_TEST.
    DATA : LV_HEADER_GUID  TYPE  GUID_32,
    WA_HEADER            TYPE         BAPIBUS20001_HEADER_INS,
    ITAB_HEADER          TYPE STANDARD TABLE OF BAPIBUS20001_HEADER_INS,
    ITAB_CREATED_PROCESS TYPE STANDARD TABLE OF BAPIBUS20001_HEADER_INS,
    ITAB_OBJECTS_TO_SAVE TYPE STANDARD TABLE OF BAPIBUS20001_GUID_DIS,
    ITAB_PARTNER        TYPE STANDARD TABLE OF BAPIBUS20001_PARTNER_INS,
    lt_product_i TYPE STANDARD TABLE OF BAPIBUS20001_ITEM,
    wa_product_i  type BAPIBUS20001_ITEM,
    lt_schedlin_i type standard table of BAPIBUS20001_SCHEDLIN,
    wa_schedlin_i type BAPIBUS20001_SCHEDLIN,
    ITAB_INPUT_FIELDS TYPE TABLE OF bapibus20001_input_fields,
    ls_inputfields TYPE bapibus20001_input_fields,
    WA_PARTNER          TYPE BAPIBUS20001_PARTNER_INS,
    ITAB_RETURN          TYPE STANDARD TABLE OF BAPIRET2,
    WA_OBJECTS_TO_SAVE  LIKE LINE OF ITAB_OBJECTS_TO_SAVE,
               "To store the Objects to be saved.
    WA_CREATED_PROCESS  LIKE LINE OF ITAB_CREATED_PROCESS,
    ITAB_SAVED_OBJECTS   TYPE STANDARD TABLE OF BAPIBUS20001_OBJECT_ID,
    WA_SAVED_OBJECTS    LIKE LINE OF ITAB_SAVED_OBJECTS,
    GC_X type c.
    gc_x = 'x'.
    CALL FUNCTION 'GUID_CREATE'
      IMPORTING
        ev_guid_32 = lv_header_guid.
    CLEAR : WA_HEADER.
    Passing the respective values from the Header table to internal table.
    WA_HEADER-GUID          =  LV_HEADER_GUID.
    WA_HEADER-PROCESS_TYPE  =  'ZTA'.
    APPEND WA_HEADER TO ITAB_HEADER.
    *Appending the values to the ITAB_HEADER.
    ls_inputfields-ref_guid =  LV_HEADER_GUID.
    ls_inputfields-REF_KIND = 'A'.
    ls_inputfields-objectname = 'ORDERADM_H'.
    ls_inputfields-logical_key = ' '.
    ls_inputfields-fieldname = 'PROCESS_TYPE'.
    APPEND ls_inputfields TO ITAB_INPUT_FIELDS.
    *ls_inputfields-ref_handle = '0000000000'.
    ls_inputfields-ref_guid =  LV_HEADER_GUID.
    ls_inputfields-objectname = 'ORDERADM_H'.
      ls_inputfields-fieldname = 'MODE'.
    APPEND ls_inputfields TO ITAB_INPUT_FIELDS.
    ls_inputfields-ref_guid =  LV_HEADER_GUID.
    ls_inputfields-REF_KIND = 'A'.
    ls_inputfields-objectname = 'ORDERADM_H'.
    ls_inputfields-logical_key = ' '.
    ls_inputfields-fieldname = 'GUID'.
    APPEND ls_inputfields TO ITAB_INPUT_FIELDS.
    CHANGES MADE
    ls_inputfields-ref_guid =  LV_HEADER_GUID.
    ls_inputfields-REF_KIND = 'A'.
    ls_inputfields-objectname = 'SCHEDLIN'.
    ls_inputfields-logical_key = ' '.
    ls_inputfields-fieldname = 'LOGICAL_KEY'.
    APPEND ls_inputfields TO ITAB_INPUT_FIELDS.
      ls_inputfields-ref_guid =  LV_HEADER_GUID.
    ls_inputfields-REF_KIND = 'A'.
    ls_inputfields-objectname = 'SCHEDLIN'.
    ls_inputfields-logical_key = ' '.
    ls_inputfields-fieldname = 'MODE'.
    APPEND ls_inputfields TO ITAB_INPUT_FIELDS.
      ls_inputfields-ref_guid =  LV_HEADER_GUID.
    ls_inputfields-REF_KIND = 'A'.
    ls_inputfields-objectname = 'SCHEDLIN_I'.
    ls_inputfields-logical_key = ' '.
    ls_inputfields-fieldname = 'GUID'.
    APPEND ls_inputfields TO ITAB_INPUT_FIELDS.
       ls_inputfields-ref_guid =  LV_HEADER_GUID.
    ls_inputfields-REF_KIND = 'A'.
    ls_inputfields-objectname = 'SCHEDLIN_I'.
    ls_inputfields-logical_key = ' '.
    ls_inputfields-fieldname = 'QUANTITY'.
    APPEND ls_inputfields TO ITAB_INPUT_FIELDS.
       ls_inputfields-ref_guid =  LV_HEADER_GUID.
    ls_inputfields-REF_KIND = 'A'.
    ls_inputfields-objectname = 'SCHEDLIN_I'.
    ls_inputfields-logical_key = ' '.
    ls_inputfields-fieldname = 'MODE'.
    APPEND ls_inputfields TO ITAB_INPUT_FIELDS.
    CHANGES MADE
    WA_PARTNER-REF_GUID = LV_HEADER_GUID.
    WA_PARTNER-REF_KIND = 'A'.
    giving the partner function and partner no 000000038 for slod to party
    WA_PARTNER-PARTNER_FCT = '00000038'.
    WA_PARTNER-PARTNER_NO = '10017'.
    APPEND WA_PARTNER TO ITAB_PARTNER.
    *"ADDING VALUES for the product
      wa_product_i-header        = lv_header_guid.
      wa_product_i-handle        = '0000000001'.
      wa_product_i-ordered_prod  = '12000014'.
      wa_product_i-mode          = 'A'.
      APPEND wa_product_i TO lt_product_i.
    *"ADDING VALUES for quantity
      wa_schedlin_i-quantity   = 30.
      wa_schedlin_i-handle = 1.
      APPEND wa_schedlin_i TO lt_schedlin_i.
    ls_inputfields-ref_guid =  LV_HEADER_GUID.
    ls_inputfields-REF_KIND = 'A'.
    ls_inputfields-objectname = 'PARTNER'.
    *ls_inputfields-logical_key = ' '.
    ls_inputfields-fieldname = 'REF_GUID'.
    APPEND ls_inputfields TO ITAB_INPUT_FIELDS.
    ls_inputfields-ref_guid =  LV_HEADER_GUID.
    ls_inputfields-REF_KIND = 'A'.
    ls_inputfields-objectname = 'PARTNER'.
    ls_inputfields-logical_key = ' '.
    ls_inputfields-fieldname = 'PARTNER_FCT'.
    APPEND ls_inputfields TO ITAB_INPUT_FIELDS.
    ls_inputfields-ref_guid =  LV_HEADER_GUID.
    ls_inputfields-REF_KIND = 'A'.
    ls_inputfields-objectname = 'PARTNER'.
    ls_inputfields-logical_key = ' '.
    ls_inputfields-fieldname = 'PARTNER_NO'.
    APPEND ls_inputfields TO ITAB_INPUT_FIELDS.
    CALL FUNCTION 'BAPI_BUSPROCESSND_CREATEMULTI'
      TABLES
        HEADER          = ITAB_HEADER
        ITEM            = lt_product_i
        RETURN          = ITAB_RETURN
        PARTNER         = ITAB_PARTNER
        INPUT_FIELDS    = ITAB_INPUT_FIELDS
        CREATED_PROCESS = itab_created_process
        SCHEDULELINE    = lt_schedlin_i.
    READ TABLE ITAB_CREATED_PROCESS INTO WA_CREATED_PROCESS WITH KEY GUID = LV_HEADER_GUID BINARY SEARCH.
    WA_OBJECTS_TO_SAVE-GUID = WA_CREATED_PROCESS-GUID.
    Appending the Guid of the contract to be saved to the internal table
    APPEND WA_OBJECTS_TO_SAVE TO ITAB_OBJECTS_TO_SAVE.
    CALL FUNCTION 'BAPI_BUSPROCESSND_SAVE'
      EXPORTING
        update_task_local = space
        save_frame_log    = GC_X
      TABLES
        objects_to_save   = itab_objects_to_save
        saved_objects     = itab_saved_objects
        return            = itab_return.
    Calling the Standard BAPI to Commit the transcation.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    I have debugged the above code, all the values are passing are passing to the FM "'BAPI_BUSPROCESSND_CREATEMULTI'" and these passed to the CRM_ORDER_MAINTAIN and then to CRM_ORDER_READ which are called inside the "'BAPI_BUSPROCESSND_CREATEMULTI'". Finally the sales order is created but not able to see all the values that i am passing except PROCESS_TYPE.
    Thanks a lot in Advance,
    Lakshman.

  • Factory Calendar Issue

    HI Gurus,
    I have a problem with the factory calendar assignment. I created the factory calendar directly in production. Now, I want to assign it to a particular plant. So, I created a similar calendar in DEV and assigned it and transported it. However, this calendar is not available in QA and what happened was all the assignments in that transport from DEV was transported to QA.
    I just want to transport the assignment of only one plant to QA & PRD. What is the procedure? How to do that? I am afraid that if I move this to PRD, it will overwrite all other assignments as it did in QA.
    Please help...
    John

    Hi John,
    you have to transport all the factory calenders in the system at once i.e. all the factory calenders for different plants. you can not transport only one factory calenders for one plant. try to transport all the factory calenders and check it out.
    cheers
    jagan

  • Consignment sale with  delivery order functionality

    Hi,
    Can anybody help me in underrstanding why the delivery order( Pick up sheet) with consumption process is not supported in standard SAP,
    I understand  that we have pick up sheet functionality but for some reason SAP does not support the consumption process along with pick up sheet functionality.

    Hi
    Which activity in consignment process are you trying to do?
    While raising the thread, please explain the process to the extent possible. It will help you in getting useful, relevant and quick replies. If the requirement is not properly explained, you will get irrelevant replies which is waste of time to you and for other members.
    Thanks,
    Ravi

  • Issues in Creation of Sales Contract Order VA41

    Dear Experts,
    I had been using BAPI_CONTRACT_CREATEFROMDATA to Crete Contract.
    It is created order but not updating the Characteristic values.
    I had done the lilnking for item - po item no with ref structure field posed. and set the flag X in ITEMX too.
    Parallely I did seen the code, its writing the characteristic data in Memory(CUXC_IDOC_TO_MEMORY) and but not calling any perfom  to  load idoc from memory to upload .
    Code available in to upload idoc from memory is available in Include LCUXCF01. But its not getting called.
    I had been searching the previous forum and tried all the ways given in them but still not able to Solve my this issue.
    Please help me to resolve this issue.. Points will be rewared immediately.
    Regards
    Deepak sodhi

    Thanks Dear.
    I did tried all possible options. Filled REF,INST,PARTOF,CHar all the possible Strucutres.
    REF : Posex = ITEM_PO_itemno Config Id: 00010 Root Id: 000001
    INSTA: Config id : 00010 Instant Id : 0000010
    part of :  config Id : 00010 Instand id: 000010
    CHAREC : same config id and instance id :
    I checked the code, its writing in Memory but not loading the IDOC from Memory.
    Please Have a look and help me and required badly.
    Regards
    Deepak Sodhi

  • Factory calendar issue changing validity date

    Hi,
    We have come across the OSS note 1532398 and 1529649. It's for our Solution Manager system. We are on SP24 EHP1 and i wanted to know how far up can you go in the validity date? I understand the holiday dates need to be changed first but how far up can i go and which calendar would apply for Solution Manager?  My understanding is that becuase we are based in the UK only the UK based calendars would need to be changed or does it depend on which country the user accessing the system is based?
    your help would be very much appreciated.
    Mani

    Hello Mani,
    If you look at SAP Note 501262 - UK Public Holiday Calendar Settings for 2012
    Look at Solution 3
    3. You can now -> Goto -> Public Holiday calendar -> Assign th
    2013 holiday to the calendars GS/GN/GE.
    Change valid from / to definition  -> select 'Spring Bank
    Holiday - 2013' ->  valid from = 2013 -> Save
    Valid from 2013 to 20XX on your demand
    This would suggest that the validity date can be set to any value in the format 20xx.
    Regards,
    Paul

  • Delivery order for sub-contract processing scenario

    Hi experts,
    We got a requirement from our users to sub-contract certain production processing steps (or called external processing per SAP). Same part number would be used for the goods issue and goods receipt. But would like to make the delivery for the goods issuing as the delivery for normal sales parts. (Purchase order -> Delivery order -> Shipping and Packing)
    Sub-contract processing will generate purchase order like service order which only contains service fee item, and we found that no outbound delivery order can be created with reference to purchase order in standard SAP.
    Have you experienced such scenario before and could share to us please?
    Regards

    When moving subcontracting part to your subcontractor you can do it via:
    1. simple goods movement
    2. delivery
    1 Simple goods movement (transfer posting)
    - /w reference to PO (MB1B + 541)
    - w/o reference to PO (MB1B / MIGO + 541)
    2 Delivery
    Using the before mentioned ME2O you can create the delivery w/o reference to PO
    Please note that even if you use the MB1B541PO reference solution, system just suggests the component qunantity on the PO w/o making a real link between PO and goods movement. You can example do the MB1B541PO reference "as many times" as you want...
    So, as per my best knowledge there's no solution for your requirement.
    I guess one reason of system's behaviour might be that provision of compoenents doesn't depend on one single PO - if you want to reduce your shipment cost you will send out lots of components at once, more than the amount needed for one call-off.
    Regards,
    Csaba

  • Difference beteween Order and Delivery order

    what is the difference between delivery order  and regular standard sales order??
    S Krishnan

    Sales Order & Delivery Order are 2 separate Documents. In normal sales order cycle, the process flow is: Sales Order --> Delivery (Create Delivery , Picking , Packing & PGI ) --> Billing.
    The configuration is as under:
    Normal Sales Order Cycle:-
    Step 1: Sales Document Type
    IMG > Sales and Distribution > Sales > Sales Documents >
    Sales Document Header:
    1. Sales Document Type:The sales document types represent the different business transactions, such as Inquiry, Quotation, Sales Order, etc. To create new sales order type, always copy as with reference to similar sales order. If possible use standard sales order.
    2. Define Number Ranges For Sales Documents: Maintain number range with discussion with core team.
    3. Assign Sales Area To Sales Document Types:
    A. Combine sales organizations / Combine distribution channels / Combine divisions: Ensure to maintain these, else Sales Order creation will give error.
    B. Assign sales order types permitted for sales areas: Assign only required Sales Order Types to required Sales Area. This will minimize selection of Sales Order Type as per sales area.
    Sales Document Item:
    1. Define Item Categories: If possible use Standard Item Category. Incase if required to create new, copy as from standard & maintain New.
    2. Assign Item Categories: If possible, use standard. Formula for deriving item category: Sales Document Type + Item Category Group + Usage + Higher Level Item Category = Item Category
    Schedule Line:
    1. Define Schedule Line Categories: If possible use Standard Schedule Lines. Incase if required to create new, copy as from standard & maintain New.
    2. Assign Schedule Line Categories: If possible, use standard. Formula for deriving Schedule Line: Item Category + MRP Type / No MRP Type.
    Step 2:
    IMG > Logistic Execution > Shipping > Deliveries >
    1. Define Delivery Types: If possible use Standard Delivery Type. Incase if required to create new, copy as from standard & maintain New.
    2. Define Item Categories for Deliveries: If possible use Standard Item Categories for Delivery Type. Incase if required to create new, copy as from standard & maintain New.
    3. Define Number Ranges for Deliveries: Ensure to maintain number range.
    Step 3:
    IMG > Sales and Distribution > Billing >
    1. Define Billing Types: If possible use Standard Billing Type. Incase if required to create new, copy as from standard & maintain New.
    2. Define Number Range For Billing Documents: Ensure to maintain number range.
    3. Maintain Copying Control For Billing Documents: Maintain relevant copy controls such as Sales Order to Billing, Deliver to Billing, etc.
    Note: Ensure that Copy Control settings are done
    Sales Order to Sales Order (QT --> OR): VTAA
    Sales Order to Delivery (OR --> LF): VTLA
    Sales Order to Billing (OR --> F1): VTFA
    Delivery to Billing(LF --> F2): VTFL
    Billing to Sales Order (F2 --> RE): VTAF
    The configuration differs from scenario to scenario & requirement of the client.
    Regards,
    Rajesh Banka
    Reward point if useful.

  • Which Factory Calendar is used to determine the Sales Order delivery date

    Hi ,
    There is Factory calendar assigned to sales Org and shipping point as well.
    I want to know which Factory calendar is used to determine the promise date on sales order acknowledgement and which one is used to determine the delivery date?
    Appreciate your help/inputs.
    Regards,
    Ram

    Ramy,
    I am not sure what you mean by 'promise date'.  For a given sales order item confirmation schedule, the system calculates the following dates:
    Delivery Date
    Goods Issue date
    Loading Date
    Material Availability date
    Transportation planning date.
    These dates are dependent upon what you have configured, and what your master data is.  If you have transportation scheduling turned on (IMG>SD>Basic Functions>Delivery scheduling and transportation scheduling), then the durations are:
    Route duration (transit), - affected by factory calendar assigned to the route (0VTC, that's a zero)
    Picking time, packing time, Transportation planning time, and Loading time- affected by the factory calendar assigned to the shipping point (OVLZ, not a zero)
    In addition, the Material availability date will be affected by the calendar assigned to the plant (WB03).  The calculated dates may also differ on a given order schedule line, based on whether the sales order is backward scheduled or forward scheduled.  This is particularly important when the calendars all have different holiday schedules.
    Standard SAP help on the matter, with a couple of nice pictures.
    http://help.sap.com/saphelp_erp60/helpdata/en/dd/5607e7545a11d1a7020000e829fd11/frameset.htm
    Rgds,
    DB49
    Edited by: Dogboy49 on Feb 16, 2010 5:08 AM

  • Error while processing sales order as factory calendar missing.

    "factory calendar missing or error in factory calendar".iam getting this error while processing sales order even though i have assigned it to shipping point and plant and sales org.

    Hi Malik, How are you? I'm sorry to trouble you,
                   Let me introduce, I'm Daniel, and I saw your fantastic asnwer in
    the topic "How to update Factory Calendar in SRM", and might I have the same
    problem. It's with the "factory calendar".
    In transaction va02 when I choose a Delivery Date, and I sent it to process, as
    a result in the "shipping tab" it calculated to the first item one date, and to
    the rest one date different.  I don't know What it happen?
    I debugged the program and I saw that to the first item use to calculate the
    date is the function  'APO_SCHEDULING', and to the rest item use
    'SD_SCHEDULING', and until here I come.
    How can I do to what the dates calculated are the same? or What would be the
    problem?
    I need the dates calculated are equal.
    I looked at it's using two "factory calendar" which are "J4" and "C2". Is this
    correct?
    Thanks In Advance,
    My best regards,

  • LSO - Issue with Factory calendar End Year and creation of New courses

    Hi,
    Recently we are experiencing an Issue in LSO with the system hanging while creation of "Course with Resources".
    Upon Analysis we identified that while creating course with resources and by checking "Period without Days off" option references the set factory calendar in LSO config and since this set Factory Calendar has an End Year in 2005, the system hangs trying to reference this factory calendar.
    For some course types we are unable to even enter the course creation Data screen. These course types have " Main schedule" (with / without pattern) pre defined.
    The issue does not seem to occur if we extend the factory calendar to current period or future.
    Please let me know if anybody has faced this issue, if extending the factory calendar the right solution and what is the impact of exteding a factory calendar in HR module. Is the factory calendar referenced anywhere else in HR module?
    Note: in LSO config you can set the factory calendar in Training and Event Management>SAP Learning Solution>Training Management>Basic settings>Control Options for Days Off,
    Regards
    Edited by: Abhihek Gangatkar on Sep 26, 2011 12:25 PM

    We found the problem,
    We had to add a numeric and /or a special charachter in the password

  • Factory Calendar Maintained in Sales Org

    Hi
    I need one Information
    I have a sales org which is assigned to 10 plants. out of 10 plants some are assigned to different factory calendar.
    Now the requirement is to assign one of the calendar to the sales org. so my question is what will be the impact of assigning calendar to the sales org.
    Regards
    Naveen

    Hi Naveen,
    The sales org. calendar, defined in sales organization address data, is the calendar in which the sales organization people work. It is really useful to... I don't know. I guess not that much since deliveries and production do not depend on it. There is also no "planning" of sales orders creation, to my knowledge, nor anything logistics related that makes sense to use it but information wise.
    I guess it can be use by HR, maybe, to determine working days of sales organization staff.
    Technically I can only find it in function VELO14_GET_VKORG_CALENDAR, that is really innocuous.
    regards,
    Edgar

  • Without sale order Delivery creation

    Hi,
         I  want some help to make the delivery creation without sale order.This is my scenario
    ->>>Two RAW material(ROH) then make the PO and GRN.
    ->>>Then Created the Finished Material(FERT)
    ->>>Production order creation
    ->>>Production order Confirmation(261,531movement)
    ->>>Stock received(Finished Material)
    ->>>Make the delivery without  order ref
    ->>>Delivery type(LO-Delivery w/o ref)
    ->>>Ship to party(Here only we are mentioned the Customer)
    ->>> save the delivery
    When i make the POST GOODS ISSUE (PGI) the following error appear
    Message no. NA  KI235
    Account 315002   requires an assignment to a CO object
    You have not defined a CO account assignment for an account that is relevant to cost accounting.
    System Response
    Account 315002  is defined as a cost element.
    This means that you must always specify a CO account assignment.
    Procedure
    Enter one of the following CO account assignments
    Order
    Cost center / cost center/ activity type
    Sales order item (for a project or cost relevant)
    Project / WBS element
    Cost object (Process manufacturing)
    Network/ Network activities
    Business process
    Profitability segment
    Real estate object
    The posting row affected is 000, account 315002
    Kindly help in getting resolve of this error.
    Regards,
    T.Murugu

    Hi Murugu,
    Please go through the link given below. Hope it helps,
    http://www.sap-img.com/financial/requires-an-assignment-to-a-co-object.htm
    Regards
    MT

  • SNP Planned order not following resource bucket capacity/factory calendar

    Hi gurus,
    SCM 5.0
    I am running SNP heuristics for a product and expecting planned orders for it.  It has corresponding production data structure and multimixed resource.  The resource has an assignd factory calendar and SNP bucket capacity.  The bucket capactiy availablity dates of the resouce is consistent with the factory calendar workdays/holidays.  Using simple lot for lot strategy, I am expecting heuristics to schedule the planned orders on the dates of the demand in compliance with teh SNP bucket capacity availability of the resource.  APO does not schedule on holidays consistent with bucket capactiy.  This is true until...
    We have a public holiday in factory calendar that needs to become a workday. To remedy this, we put a special rule for the factory calendar and explicitly made that holiday into a workday.  The changes were synchronized with APO, and this is also reflected in the bucket capacity of the resourc: former holiday now has bucket capacity after the calendar change.  However, when running heuristics, it still does not create SNP planned order on that former holiday that has been changed into workday.  Even if it is a public holiday, there is already a special rule for the factory calendar and the resource bucket capacity reflects this correctly. But SNP heuristics seems not to follow this change.
    Any ideas on this? looks like a bug.

    Hi Edgar,
    Yes, when your resource reflects the addional capacity of the holiday turned working day, then it is expected to be considered for the SNP planned order.
    Instead of SNP heuristics, you may try to check interactively in SNP planning book, if manual order creation in the bucket works out.
    Since this is a mutlimix  resource , it can also be checked if in PPDS planned order can be created on the day.
    The above checking may not solve your problem , but will get to know if at least manully the bucket is being considered or not.
    regards
    Datta

  • No alternative unit of measure specified, during creation  of sales order

    Dear Experts,
    when user is creating sales order, User is getting the error message no.  MM108  "No alternative unit of measure specified" for particular material.
    we have checked the alternative unit of measure it is already maintiained in the material master.
    we have checked the OSS note : 117611 - Error message MM108 during goods receipt for order, but we couldn't get exact results for our issue.
    can you provide  the exact reason and solution to over come this please  .
    Thanks in advance.
    Regards,
    Suresh Veerepalli

    Dear Experts,
    The Base Unit of Measure (L) and Sales unit (PCE) ,The alternative unit of measure is maintianed in the material master as shown below.
    X                  AUn               Measuremt unit text           Y                   BUn               Measuremt unit text 
    1     L     l     <=>     1     L     l
    1.121     KG     kg     <=>     1.000     L     l
    1     PCE     Piece     <=>     1     L     l
    1     BDL     Bundle     <=>     12     L     l
    1     PAL     Pallet     <=>     720     L     l
    Error is gettting when creation of Sales Order ,Order is standard order.
    When we double click on error message  the following details are shown.
    1.No alternative unit of measure specified
    message no:MM108
    2.Diagnosis:
       This alternative unit of measure is missing.
    3.System response :
       The system cannot carry out conversion
    4.Prodedure:
      This is due to Program error that should not occur.
    Please provide the exact solution on this issuse.
    Thanks

Maybe you are looking for

  • My Imessage and email on mac B pro wont work at all.

    Hello When I try to open either of them it gives me a window that says " app... quit unexpectedly. Click reopen to open the application again. Click report to see more detailed information and send a report to apple." I have donne both but still they

  • Not all files are showing up on my network hd, but they are there

    I have a PC and Macbook Pro networked in my house using an Airport Extreme. The HD shows up fine on both the PC and Mac (after a bit of problem with the HD format, it is now FAT32). I have backup software that automatically backs up a bunch of folder

  • Grammar validation error

    I get this error when I try to import a BPMN model in JDeveloper. Error reads: There is a grammar validation error for this composite.xml. Please go to the source view and fix the errors before you continue.

  • MS Access SELECT command

    Having trouble finding the && command which works. See Code notes below ResultSet MyResults = MyStatement.executeQuery("SELECT * from <Table> WHERE <Column1> LIKE 'Active' & WHERE <Column2> NOT LIKE '0'"); What the right syntax for "and" is it AND, &

  • Object Libraries in CS2

    I'm been using the InDesign Object Libraries for a while now and we continue to have problems with them. The first issue is when I place pages (with images and text) from the libraries some of the images come up as gray boxes. It isn't consistent. So