Delivery date in PR is showing different value compared to sales order date

Team,
Req. date in sales order is 14.04.2015 i run MRP and planned order is created on 14.04.2015 but for PR the delivery date is 01.06.2014.. planned delivery time is 24 days and GR processing is 2 days total 26 days..so the delivery date should be 10/05/2015..
may i know why is it happening
thanks,

Hi Vijesh,
The reason lies with lot sizing procedure.
In Monthly lot size, the delivery date is period start date (Standard). Check SPRO tcode OMI4
Lets consider the original sceanrio, with the delivery time of 24 days and GR days as 2, the availabity date should come as 20.05.2015 (consider only working days). This would have happened if you had EX as lot size. (where requirement date is delivery date)
In your case the lot size was MB (Monthly), where "period start date is delivery date". Now with the period of 1 month, the possible start dates are 01.05.2015 and 01.06.2015.
with 26 days as total lead time of procurement, system can not propose 01.05.2015 as availability date (because material will be available on 20.05.2015) and hence it shows 01.06.2015 as next availability date. (due to montly bucket)
Regards,
Rohit

Similar Messages

  • Invoice showing up with different pricing compare to Sales order.

    Hi SD Gurus,
    I have just copied the standard doc types OR/LF/F2 for ZSOR/ZSLF/ZSF2.Once i created the transactions for all 3 doc types & invoice is showing up with differnt pricing procedure.
    As per SAP standard what ever pricing procedure is showing up for sales order should be the same for invoice.
    Note: i hav't changed any config setup for the doc type just copied,kindly suggest why the invoice is picking diff pricing procedure.,
    Thanks,

    Hi Dora sahadev
    As you have copied the sales document, delivery document and billing documents . so go to VOV8 and and select the ZSOR document type and change the delivery document and billing documents to ZSLF and ZSF2.Now create the sales order and do delivery and billing ZSOR->ZSLF->ZSF2.
    Also check in the SPRO->SHIPPING FUNCTIONS->PRICING procedure determination check if any other pricing procedure has been assigned to your sales area at delivery level  .If it has been assigned there then when you create delivery , system will pick up the other pricing procedure which has been assigned for shipping functionality.and that will be getting copied to the billing also . But if it is not assigned then check in VOV8 only and change delivery and billing document types
    Regards
    Srinath

  • FSV showing different values when executed by different users

    Hi Experts,
    While executing FSV throug RFBILA00 we are getting different values when executed by differet users. Variant selection is same except the user (which is different). For one user report is perfect for another user some GL accounts were not displayed and some accounts shows different values.
    Anybody could help on this. Is there any userwise settings are there.
    Thanks in advance.
    Regards,
    Narayanan

    Hi,
    check user authorization, maybe one user has limited display authorization for some values (as they are linked to specific profit center,...)
    BR Christian

  • Hi. i used Function module to change Characteristic values of a sales order

    hi. i used Function module to change Characteristic values of a sales order..
    but sales order's Characteristic values didn't change.
    And the Function module doesn't occur any log message.
    please tell me wrong code, and how to solve this problem.
    if i have wrong method, what data can i pass to change the characteristic values
    DATA: LT_E1CUVAL    TYPE TABLE OF E1CUVAL.
      DATA: WA_E1CUVAL    TYPE E1CUVAL.
      DATA: LS_CFG_HEAD   LIKE CUXT_CUCFG_S,
            LS_INSTANCES  LIKE CUXT_CUINS_S,
            LS_VALUES     LIKE CUXT_CUVAL_S,
            LS_E1CUCFG    LIKE E1CUCFG,
            LS_E1CUINS    LIKE E1CUINS,
            LS_E1CUVAL    LIKE E1CUVAL,
            LS_PROFILE    LIKE E1CUCOM,
            LS_VBAP       LIKE VBAP,
            L_CUOBJ       LIKE INOB-CUOBJ,
            L_ATINN       LIKE CABN-ATINN.
      DATA: LT_INSTANCES  LIKE CUXT_CUINS_S OCCURS 0,
            LT_PART_OF    LIKE CUXT_CUPRT_S OCCURS 0,
            LT_VALUES     LIKE CUXT_CUVAL_S OCCURS 0,
            LT_VAR_KEYS   LIKE CUXT_CUVK_S  OCCURS 0,
            LT_KSML       LIKE KSML         OCCURS 0 WITH HEADER LINE,
            BEGIN OF LT_CLINT OCCURS 0,
              CLINT  LIKE KSSK-CLINT,
            END OF LT_CLINT.
      DATA: LT_CUIB       LIKE CUIB_CUOBJ_S OCCURS 0 WITH HEADER LINE.
      DATA: E_ROOT_INSTANCE           TYPE     CUXT_INSTANCE_NO.
      DATA: EV_ROOT_PERSIST_ID     TYPE     IBEXTINST_DATA-EXT_INST_ID.
      DATA: EV_CFG_HAS_CHANGED     TYPE     XFELD.
      DATA: EV_HANDLE_APPL_LOG     TYPE     BALLOGHNDL.
      DATA: L_CUOBJ_NEW           TYPE CUOBJ.
      DATA: L_OWNER               TYPE IBXX_BUSINESS_OBJECT.
      REFRESH LT_E1CUVAL.
      CLEAR LS_VBAP.
      SELECT SINGLE CUOBJ INTO CORRESPONDING FIELDS OF LS_VBAP
                                FROM VBAP WHERE VBELN = I_VBELN
                                            AND POSNR = I_POSNR.
      IF SY-SUBRC <> 0.
        RAISE INSTANCE_NOT_FOUND.
      ENDIF.
      REFRESH LT_CUIB. CLEAR LT_CUIB.
      LT_CUIB-INSTANCE = LS_VBAP-CUOBJ.
      APPEND LT_CUIB.
      CALL FUNCTION 'CUCB_INITIALIZER'
        EXPORTING
          IT_INSTANCES = LT_CUIB[].
      CALL FUNCTION 'CUXI_GET_SINGLE_CONFIGURATION'
        EXPORTING
          I_ROOT_INSTANCE              = LS_VBAP-CUOBJ
        IMPORTING
          E_CFG_HEAD                   = LS_CFG_HEAD
          ES_PROFILE                   = LS_PROFILE
          ET_RETURN                    = ET_RETURN
        TABLES
          E_TAB_INSTANCES              = LT_INSTANCES
          E_TAB_PART_OF                = LT_PART_OF
          E_TAB_VALUES                 = LT_VALUES
          E_TAB_VAR_KEYS               = LT_VAR_KEYS
        EXCEPTIONS
          INVALID_INSTANCE             = 1
          NO_ROOT_INSTANCE             = 2
          INSTANCE_IS_A_CLASSIFICATION = 3
          INTERNAL_ERROR               = 4
          NO_PROFILE_FOUND             = 5
          INVALID_DATA                 = 6
          OTHERS                       = 7.
      IF SY-SUBRC <> 0.
        CASE SY-SUBRC.
          WHEN 1.
            RAISE INSTANCE_NOT_FOUND.
          WHEN 3.
            RAISE INSTANCE_IS_A_CLASSIFICATION.
          WHEN OTHERS.
            RAISE INVALID_DATA.
        ENDCASE.
      ELSE.
        LOOP AT LT_VALUES INTO LS_VALUES.
          IF    LS_VALUES-CHARC = 'SAP_MILLCA_PACKAGING'
             OR LS_VALUES-CHARC = 'PD_CA_PACKING_DM'.
            LS_VALUES-VALUE = '7100010'. "This is test data
            MODIFY LT_VALUES FROM LS_VALUES.
          ELSE.
            DELETE LT_VALUES WHERE CHARC = LS_VALUES-CHARC.
          ENDIF.
          CLEAR LS_VALUES.
        ENDLOOP.
      ENDIF.
    &#50689;&#50629;&#51221;&#48372; &#53945;&#49457; &#48320;&#44221;
      CALL FUNCTION 'CUXI_SET_SINGLE_CONFIGURATION'
        EXPORTING
          I_CFG_HEADER                        = LS_CFG_HEAD
          I_ROOT_INSTANCE                     = LS_VBAP-CUOBJ
        I_PLANT                             =
        I_STRUCTURE_EXPLOSION_DATE          =
        I_STRUCTURE_EXPLOSION_APPL_ID       =
        I_LOGSYS                            =
          IS_PROFILE                          = LS_PROFILE
        IV_ONLY_SINGLE_LEVEL                =
        IV_HANDLE_APPL_LOG                  =
        IV_OBJECT_APPL_LOG                  = 'CIF'
        IV_SUBOBJECT_APPL_LOG               = 'T_CNFG'
        IMPORTING
          E_ROOT_INSTANCE                     = E_ROOT_INSTANCE
          EV_ROOT_PERSIST_ID                  = EV_ROOT_PERSIST_ID
          EV_CFG_HAS_CHANGED                  = EV_CFG_HAS_CHANGED
          EV_HANDLE_APPL_LOG                  = EV_HANDLE_APPL_LOG
          ET_RETURN                           = ET_RETURN
        TABLES
          I_TAB_INSTANCES                     = LT_INSTANCES
          I_TAB_PART_OF                       = LT_PART_OF
          I_TAB_VALUES                        = LT_VALUES
          I_TAB_VAR_KEYS                      = LT_VAR_KEYS
        I_TAB_BLOB                          =
        EXCEPTIONS
          NO_CONFIGURATION_DATA               = 1
          NO_ROOT_INSTANCE                    = 2
          INVALID_INSTANCE                    = 3
          INSTANCE_IS_A_CLASSIFICATION        = 4
          INTERNAL_ERROR                      = 5
          NO_PROFILE_FOUND                    = 6
          INVALID_DATA                        = 7
          OTHERS                              = 8
      IF SY-SUBRC <> 0.
        CASE SY-SUBRC.
          WHEN 1.
            RAISE NO_CONFIGURATION_DATA.
          WHEN 3.
            RAISE NO_ROOT_INSTANCE.
          WHEN 3.
            RAISE INVALID_INSTANCE .
          WHEN 3.
            RAISE INSTANCE_IS_A_CLASSIFICATION.
          WHEN 3.
            RAISE INTERNAL_ERROR.
          WHEN OTHERS.
            RAISE INVALID_DATA.
        ENDCASE.
      ENDIF.
      COMMIT WORK.
    save configuration with next commit
      CLEAR: LS_INSTANCES.
      READ TABLE LT_INSTANCES INTO LS_INSTANCES INDEX 1.
    L_OWNER-OBJECT_TYPE = LS_INSTANCES-OBJ_TYPE.
      L_OWNER-OBJECT_TYPE = 'PVS_POSVAR'.
      L_OWNER-OBJECT_KEY  = LS_INSTANCES-OBJ_KEY.
      CALL FUNCTION 'CUCB_CONFIGURATION_TO_DB'
        EXPORTING
          ROOT_INSTANCE         = LS_VBAP-CUOBJ
          ROOT_OBJECT           = L_OWNER
        IMPORTING
          NEW_INSTANCE          = L_CUOBJ_NEW
        EXCEPTIONS
          INVALID_INSTANCE      = 1
          INVALID_ROOT_INSTANCE = 2
          NO_CHANGES            = 3
          OTHERS                = 4.
      IF SY-SUBRC > 1 AND SY-SUBRC <> 3.
        CLEAR LS_VBAP-CUOBJ.
        RAISE INTERNAL_ERROR.
      ELSEIF SY-SUBRC = 1.
        LS_VBAP-CUOBJ = L_CUOBJ_NEW.
      ENDIF.
    What's wrong?
    help me to solve this problem.
    Thanks a lot.

    <b>SD_SALES_DOCUMENT_READ</b> Reads sales document header and business data: tables VBAK, VBKD and VBPA (Sold-to (AG), Payer (RG) and Ship-to (WE) parties)
    <b>SD_SALES_DOCUMENT_READ_POS</b> Reads sales document header and item material: tables VBAK, VBAP-MATNR
    <b>SD_DOCUMENT_PARTNER_READ</b> partner information including address. Calls SD_PARTNER_READ
    <b>SD_PARTNER_READ</b> all the partners information and addresses
    <b>SD_DETERMINE_CONTRACT_TYPE</b>
    In: at least VBAK-VBELN
    Exceptions: NO CONTRACT | SERVICE_CONTRACT | QUANTITY_CONTRACT
    <b>SD_SALES_DOCUMENT_COPY</b>
    <b>RV_ORDER_FLOW_INFORMATION</b> Reads sales document flow of sales document after delivery and billing
    SD_SALES_DOCUMENT_SAVE create Sales Doc from the copied document
    SD_SALES_DOCUMENT_ENQUEUE to dequeue use DEQUEUE_EVVBAKE
    RV_DELIVERY_PRINT_VIEW Data provision for delivery note printing
    SD_PACKING_PRINT_VIEW
    SD_DELIVERY_VIEW Data collection for printing
    called from RV_DELIVERY_PRINT_VIEW, SD_PACKING_PRINT_VIEW
    RV_BILLING_PRINT_VIEW Data Provision for Billing Document Print
    regards
    vinod

  • Net Value of the Sales Order in Document Currency is Zero

    Hi,
    I have an issue with Sales order where in "Net Value of the Sales Order in Document Currency" field value in the initial screen is getting displayed as Zero. But in Pricing Conditions tab "Net Value in Document Currency" is showing correct value.
    Could someone advice what causes this situation and how to fix it.
    Thanks.
    Best regards,
    srikrishhna13

    Hi Navaneeth,
    Need your help and advice again. My later investigations reveals the below.
    In some Orders (with a different item category) the Net value is getting reflected at Header level, irrespective of whether the line item/items are under some RfR.
    My earlier case were with Orders (item category different from above) the Net Value is Zero when all the line items are under some RfR.
    Kindly help me how to fix this issue.
    Thanks.
    Best regards,
    Srikrishhna

  • Rounding off value problem in sales order

    Hi All,
    This is related to a rounding off value problem in sales order.
    The problem is described by an example which is as follows -
    Selling Price of Material A = Rs. 176.76
    Excise charged = Rs. 21.80
    Total Price = Rs.176.76 + Rs.21.80 = Rs. 198.56
    On this total Trade Discount (ZDTD) having access sequence,is calculated  at the rate of 4% = Rs. 7.94
    But the condition base value after the discount is showing Rs.198.60 instead of Rs.198.56
    I want the system to reflect the value as Rs.198.56 intact and it should not round up to the nearest value i.e. Rs. 198.60
    Why is this happening? Is it possible to reflect the exact value? If yes what is needed to be done?
    The commercial round off is activated for the DIFF Condition Type.
    Looking forward to some valuable suggestions.
    Thanks & Regards
    Priyanka Mitra

    Hi Ramesh,
    Thanks for your suggestion but the problem has been solved by me.
    Regards
    Priyanka Mitra

  • Swap between two different item categories in sales orders for sub-contracting

    Dear gurus,
    my requirement is to have the ability to swap between two different item categories for sales orders for sub-contracting.
    This should be controlled by a combination of the material and a value maintained the Usage field in the Customer Material Info Record (for example by entering a ‘V’).  A combination of Sales Doc Type, Item Cat Group and Usage should result in the creation of a purchase requisition.
    In the event that a process order is required instead of a purchase requisition (i.e. the product is to be manufactured in-house instead of sub-contracted) the user must have the ability to change the Item Category within the sales order to produce a process order.
    The user would just change the item category within the sales order, and the system would automatically remove the purchase requisition assigned to the SO, and create a process order and assign it to the SO.
    Can you suggest any possible solution?
    Thank you in advance.

    Hi Majlo,
    In my system, I checked.  First created sales order with third party line item and then changed item category to normal item category.
    Till Purchase order not created, I can change Item category of my sales order line item.
    In this case SAP inform by log and once save delete purchase requisition of that line item .
    For this you need to assign another item category as an manual item category in SPRO Item category assignment.
    After this user can manually change item category to other one manually, if PO do not exist.
    Please let me know if your query is different.
    Regards

  • Differenct between Net Value and Document Value on a sales order

    Can someone please explain what is the difference between the Net Value that we see on the sales order (VA03) and the 'Document Value' thats checked against in Dynamic credit checking?
    Thanks

    In transaction FD32, you maintain credit limit for customer and assign risk category for the customer.
    In transaction OVA8, there are two main types of checks - Static or Dynamic.
    System checks the following for arriving at customers credit status-
    Static credit check - It compares the credit limit assigned to the customer to the total value of open sales orders, plus the total value of open deliveries not yet invoiced, plus the total value of open billing documents not yet passed on to accounting, plus the total value of billing documents that have been passed on to accounting, but which have not yet been paid by the customer.
    Dynamic credit check - It compares customeru2019s credit limit to the total of open sales orders not yet delivered, plus the total value of open deliveries not yet invoiced, plus the total value of open billing documents not yet passed onto accounting, plus the total value of billing documents that have been passed onto accounting, but which have not yet been paid by the customer. In addition you can use Horizon functionality also.
    You can perform additional checks in addition to dynamic or static credit check. One of them is document value check.
    If you check this box then a additional credit check is done when the maximum document value assigned is exceeded. This is useful if business requires that all sales orders above a certain limit are to be blocked.
    In your case, the document value is $0.00.
    So system is not doing any additional credit check.
    It would just do Dynamic or Static credit check with relevant assignment maintained in transaction FD32 for the said customer.

  • Is it possible to have different pricing procedure at sales order level and

    Hi SD Gurus,
    Is it possible to have different pricing procedure at sales order level and invoice level?
    if is it possible to have different pricing procedures at sales order level and invoice level could you please tell me the steps how i have to do?
    Thanks & Regards,
    Nivas

    Hi,
    Yes you can able to map two different pricing procedure for order and invoice level
    You can achieve it through by document pricing procedure and assign it in document type
    In VOV8  assign document pricing procedure A for order type
    in VOFA assign document pricing procedure B for billing type
    Keep customer pricing procedure common
    Then in OVKK assign pricing procdures
    Kapil

  • Delivery block with confirm. block on schedule line level in sales order

    We customized a new delivery block with confirmation block.
    When using it in sales order header, it is working correctly: the availability check in APO gATP is executed; but as soon as I save the sales order, the confirmation quantity is set to zero.
    We now need to use this on schedule line level, not on header level. It is not working. Even after saving the confirmed quantity stays as filled by gATP availability check.
    What is wrong? SAP help / documentation officially describe that delivery block with confirmation block either works on header level or on schedule line level.
    Thanks in advance.
    Edited by: Schmidt on Aug 13, 2008 4:47 PM

    Please see if OSS notes 21584 and/or 19488 might help.
    Regards,
    Anisha.

  • Max.value for a sales order

    Hi Gurus,
    A min.order value can be maintained in Sales order by the condition type AMIW but can any one tell how to maintain max.value for a sales order???
    Awaiting your early answers..........
    Sunanda.P

    hi
    in OVA8, there maintain the maximum document value as required.
    If not then you need to take help of ABAPer
    With the help of ABAper you need to prepare a logic for this maximum order value.
    Then Go to sales order user exit userexit_save_document_prepare there u insert logic with the help of abaper.
    Based on logic created by ABAPer, while saving the sales order it will check this logic and throw out the error if it exceeds max value
    Regards
    Edited by: WISH on Aug 4, 2008 6:19 AM

  • "Show List of values"  showing different values than "Preview List of values for the same dimension Object

    Hi All, 
    I have a dimension object in Business Layer which is showing a different values than the original database values. When I right click on the object and select "Show List of Values its showing values which are not related to the original values in the database but if I right click on the same object and select "Preview List of Values" it shows the right values present in the database. Any suggestions on how to rectify. It was working good and many reports have been built using that particular dimension.
    Is there any way to fix the problem without the deleting the object or recreating another similar object as the object has been used in several reports, so by deleting or recreating the object may break the reports.
    Please help!

    Hi
    A  list of values is a list that contains the data values associated with an object, Lists of values inserted in the data foundation are inherited by any business layer based on the data foundation.
    Right click on the object and select  “Show Values”… Display all the DB values including null
    Preview List of Values – also display same values...getting differnece meens...Check weather using any Static List of Values.
    If you uncheck the Associated list of values check box "Preview List of Values" options is disabled.
    For best practice …LOV is disabled for un-necessary dimension objects
    Also If you have Db access check the correct data by
    SELECT
    Distinct Schema name. Table/View name. Object name
    FROM
    Schema.name. Table/View name

  • F.16 showing different values.

    Hi All,
    As year end activity, when running F.16 in test run, we are getting different values as compared to FS10N. Carry Forward balances are not matching for year 2011. Any idea what can be the possible reason for that?
    Parul

    F.16 balances should tally with FS10N
    First execute the F.16, there is no harm to execute this transaction.
    Also make sure which GL account you are checking in FS10N
    Rgds
    Murali. N

  • CALCLATED KF SHOWING DIFFERENT VALUES FOR DIFFERENT CURRENCY TYPES

    Hi Experts
    When I am executing the query( On a Multi provider) with the selection of Company code, controlling area, WBS ELEMENT, currency type I am seeing two different values (XXXX EUROS and YYYY EUROS)for a formula for total variable cost when i select two different currency types( CONTROLLING AREA AND GROUP CURRENCY)
    I have two currency types called CONTROLLING AREA CURRENCY and GROUP CURRENCY(BOTH IN EUROS).
    This WBS  element is not having any sales document.How can I see the exact value for this WBS element in the R3 side.
    Is there any possibility that the same dataelement TOTAL VARIABLE COST have different values when i execute with differnt currency types in the selection screen.
    In what approach can i proceed from R3 side  to the query to solve this issue. on the R3 side when i see in FB03 (settlement posting) for this WBS it is balanced. I am seeing only partial posting for this in the Query
    Could any one help me to solve this.
    Thanks in Advance
    Best regards

    Hi Rajesh,
    I guess the holiday which was configured in Holiday calendar (Holi) is not declared as Paid holiday in Public Holidays-Holiday Calendar.
    Goto SCAL - choose Public Holiday - change mode - look for the holiday (Holi) configured - change mode again - lookout for 'Public Holiday Class' and see whether ' 1 ' is maintained there, if not maintained, type 1 there and save it.
    PS (1 - Ordinary Public Holiday....i,e paid holiday).
    Now go to PT01 and generate WSR. This will sort out your issue.
    If the above is not working,
    I guess there are different PSA/ESG grouping for the employees and maybe their Holiday Calendar itself is different. check out whether the PSA and ESG grouping in Time Mgmt is same or different for those employees for whom the paid holiday is not getting generated and also check out the Holiday Calendar for these set of employees and try the above given solution there.
    Hope this helps.
    regards,
    Santhosh
    Edited by: Santhosh on Mar 31, 2009 11:34 AM

  • How to fetch future Delivery Value based on Sales Order

    Hi,
    I'm fetching the delivery data using the datasource 2LIS_12_VCITM.In my report I would also like to display the value of the delivery.How do I valuate these deliveries?Do I have to access the Sales order item for the net price or go to the pricing conditions data?
    Please suggest.
    Thanks,
    A Pothuneedi

    Hi
    You can search the samples....C:\-->Program files->SAP----->SDK->Samples->DiAPI----->OrderandInvoice...
    Here invoice is added for a particular sales order.....the same can be done for delivery.....
    Hope it helps

Maybe you are looking for

  • OLAP Query not running

    Hi Gurus I am getting and exception while executing a MDX Query through OLAP Query . All my queries were running properly until yesterday from OLAP query as well as through MDXTest TCode . But today it gives me an excetion com.sap.lhcommon.webservice

  • Consuming SharePoint WSRP with OracleAS Portal

    Hi, i hope, this is the right place for the topic. We are trying to integrate our SharePoint Server into our Oracle Portal 10.1.4 by using the Microsoft SharePoint WSRP Producer. The producer seems to be up and running. (The wsdl-file and all of the

  • Hibernate data insertion not working with oracle auto increment

    hi i have created a table and the id is set to auto increment by a sequence trigger pair when i manually giving value to id its working fine but when i tried without maually giving the id i am getting this error org.hibernate.id.IdentifierGenerationE

  • IPhoto upload failure

    I attempted to upload photos from my iPhone to my iMac and got numerous messages that there was an error.  I was prompted to go into my purchases to try updating iPhoto again and it will not download.  Of course, I foolishly deleted the photos from m

  • Debug event f:\mightysilt_win64\shared\adobe\mediacore\mediafoundation\api\inc\keyframe

    Hello everybody, I just ran into this extremely annoying problem: Premiere Pro CS6 cannot load my project anymore. It gives the following error message: Premiere  Pro has encountered an error. f:\mightysilt_win64\shared\adobe\mediacore\mediafoundatio