Sales Order in Entered Status are being considered in planning

Hi,
We're having issues in ATO items, where we've sales orders, which are not booked yet so there is no supply created; however, ASCP is considering these entered SO in planning and suggesting the planned orders.
Regards
Nikhil

ASCP considers the sales orders if it is scheduled. Status does not matter.
If you don't want the entered sales orders to go to ASCP, find out who is entering a scheduled ship date.
It may be a user or it may be your order workflow.
Hope this answers your question
Sandeep Gandhi
Independent Techno-functional Consultant

Similar Messages

  • Sales order remains on status being processed.

    I created a sales order and created pgi, Outbound delivery. When I tried to create a billing document it gave me a message, sales order is being processed. I opened the sales order and looked for the document flow, it says sales order is still being processed and delivery, pgi and transfer order are completed.
    Why it still shows this message.

    Hi Vijay,
    This can be the case of  other user logging into your order.  Please check in SM12 ( if you have authorization ) and for VBAK object  and your order number you can find a lock.  Please delete the lock and try to bill again.
    Hopefully this helps. 
    Even after invoice, if the status are " Being processed" ,, then you can think of SDVBUK00 to be run -- ( i dont think this is required )
    Reward if it helps.
    Thanks & Regards,
    CLN

  • Sales order some line items are showing not relavant

    Hi SD Guys,
    In sales order some line items are showing not relavant.
    Why are they showing a status of not complete or "not relevant"?
    Thanks
    Sunny

    Hi sunny,
                     plz check the each line item in the sales order controls by the item category, so check the item category , depends on the item category, pricing,delivery and billing takes place.
    regards,
    ram.

  • Return Sales Order - And its Status

    Hello Experts,
    I have a question in the sales returns scenario.
    Step 1: I Create a sales order ( With two items and delivery full ) and perform steps till billing ( invoice ).
    Step 2: I Create Return sales order with reference to the first sales order but i take Only one item to return.
    Now the status of the return sales order is Being Processed.
    Step 3: I create a complete ( deliver full quantity of the item ) return delivery with reference to the return sales order and save the document. Now still the return sales order is in status Being Processed. Ideally i should have been Completed.
    Step 4: I do the Goods receipt for the return delivery. Now also the status of the returns sales order is Being Processed instead of Completed
    Kindly suggest any way to control the status of sales document or is this the ideal way( if so what's the functional purpose behind this ? ).
    Is this because the billing block is still set in the Return sales order ?

    Do you mean that only after credit memo creation or clearing of the credit memo from FI the status of return order is set to completed?
    If this is an ideal scenario, in one of our systems the status of return sales order is set to completed immediately after returns delivery creation.
    This behavior is same as that of normal sales order scenario, where the sales order status is set to completed once the delivery happens.
    Kindly suggest, if there is any customizing to control the oeverall status update for specific sales order types or based on the type of sales scenario.

  • Update Sales Order to enter a Manual Price Condition

    Hello all,
    SAP R/3 ERP
    It is already created the Sales Order, Picking and Delivery (good issue is NOT created yet).
    I can not continue my flow because is missing a pricing condition.
    However the condition that is missing is an Header Manual Condition Price.
    As we are dealing with a Header Condition and Good Issue and Billing is not created, it is possible to update the Sales Order and then enter the header manual condition .
    My question is:
    '--- In order to update the Sales Order to enter the header manual condition, do I need to delete the Delivery and Picking? If yes, what are the transaction de delete both of them? .
    Thanks a lot,
    Barbara

    In my opinion, there is no need to delete the delivery. Just add the manual pricing condition and click on update pricing button  ->carry out new pricing. This will add the manual pricing in the sales order. Still if you want to delete the delivery,  then first check whether the picking is done using transfer order. If so, use t.code LT15 to cancel the transfer order. If transfer order is not used, then just remove the pick quantity from delivery line items and then in t.code VL02N, enter the delivery document go to menu delivery document ->delete. This will delete the delivery document.
    Regards,

  • Transfer Posting problem with "sales order stock type" status

    Hello, i have this problem, i spend 2 days looking in the forum, but
    nothing, the question is:
    The SD users sell an item, and the item get the status of "sales order
    stock type" in the MMBE, but at the same time, the MM user made a
    trasfer posting in two steps, he take out material with transaction
    MIGO, mvt 351, to another plant, but the materail was already
    compromised with SD; now he cant sell the items, because he dont
    realize that the material was in sales order stock type, and he already
    transfer it to another plant. how can i block this? if a material in
    MMBE is with "sales order stock type" status, he CANT transfer it with
    351 mvt type, what config i have to make?  thanks a lot!!!!
    now the quantity of the unrestict use
    stock is lower than the sales order, we dont want to have this issue,
    thanks again
    Edited by: Alex Arti on Aug 6, 2008 7:14 PM
    Edited by: Alex Arti on Aug 6, 2008 7:16 PM

    Hi!
    Have you recently upgraded to EHP4? In this case, please, check the note 1441195. This note should solve the issue that you are reporting.
    I hope this helps,
    Esther.

  • What's the name of FM for getting Sales Order Header / Item Status info

    Hello All:
    Do you know what's the name of Function Module for getting Sales Order Header / Item Status Overview ? Any sample code will be very much appreciated.
    Basically, I am trying to create a Webpage where user can enter the Sales Order document number and will return the Sales Order: Status Overview.
    Thanks,
    Dipankar Biswas

    Thanks everybody ! Appreciate for your prompt response. I was also looking for some sample code, and I did find some on. And here is one. I still have to try the code, but here is for all your reference:
    *& Report ZBAPI_SALESORDER_GETSTATUS *
    *& Read and Display the Sales Order Items and Status of the Order *
    REPORT zbapi_salesorder_getstatus NO STANDARD PAGE HEADING LINE-SIZE 200 LINE-COUNT 33(3).
    TABLES: vbap. "Sales Document Item Data.
    DATA: wa_bapireturn TYPE bapireturn,
    wa_bapisdstat TYPE bapisdstat,
    it_bapisdstat LIKE STANDARD TABLE OF wa_bapisdstat.
    TYPES: BEGIN OF ty_mat_name,
    matnr TYPE makt-matnr,
    maktx TYPE makt-maktx,
    END OF ty_mat_name.
    DATA: wa_mat_name TYPE ty_mat_name,
    it_mat_name LIKE TABLE OF wa_mat_name WITH KEY matnr .
    PARAMETERS: p_vbeln LIKE vbap-vbeln DEFAULT 5573.
    START-OF-SELECTION.
    SELECT matnr maktx FROM makt INTO TABLE it_mat_name.
    CALL FUNCTION 'BAPI_SALESORDER_GETSTATUS'
    EXPORTING
    salesdocument = p_vbeln
    IMPORTING
    return = wa_bapireturn
    TABLES
    statusinfo = it_bapisdstat.
    IF wa_bapireturn IS INITIAL. " Successful Execution.
    WRITE: / 'Document No: ' COLOR 1, 20 'PO Number : ', 40 'Status' , 50 'Delv.Stat',60 'Item No', 80 'Material', 90 'Material Description', 130 'Net Price' COLOR 2.
    ULINE.
    LOOP AT it_bapisdstat INTO wa_bapisdstat.
    WRITE: / wa_bapisdstat-doc_number. " Sales Document Number.
    READ TABLE it_mat_name INTO wa_mat_name WITH KEY matnr = wa_bapisdstat-material.
    WRITE: /20 wa_bapisdstat-purch_no, " Customer Purchase Order Number
    40 wa_bapisdstat-prc_stat_h, " Processing Status
    50 wa_bapisdstat-dlv_stat_h, " Delivery Status
    60 wa_bapisdstat-itm_number, " Item Number
    80 wa_bapisdstat-material, " Material
    90 wa_mat_name-maktx, " Material Description
    130(10) wa_bapisdstat-net_price. " Net Price
    CLEAR wa_bapisdstat.
    ENDLOOP.
    REFRESH it_bapisdstat[].
    ELSE.
    WRITE: wa_bapireturn-message.
    ENDIF.

  • Sales Order Line Item Status Table

    Hello All
    In which table the item status is stored?
    I am referring the fields in the status tab of item in sales order.
    Eg: There are total 6 fields under status tab of line item in sales order.
    I want to see where these fields can be configured and in which table they gets stored.
    Please help .
    Thanks in advance
    Sonali

    Hi
    In  VVBUP  the fields the fields UVP01...UVP05 and  VBUP the fields UVP01...UVP05 contain the item staus.
    Thank you,
    Sekhar.

  • Consume PIR from Sales Order when PIR's are not in BOM Usage 1

    I need help determining which combinations of Strategy groups I need at the header level (Variant Config KMAT) and item level Phantoms (HALB)  The Phantoms are just used to drive forecast, I have no need to issue or stock these items... just need them to be reduced when I use them in a Sales Order.
    Please help me understand the planning strategy groups or the requirement type combinations on the header material and the item materials.
    Standard SAP will consume the PIR if they exist in the production BOM (Usage 1).   However, due to Usage 1 having the object dependencies placed at lower levels and parameter effective, I am not able to add the foretasted assemblies to the usage 1 BOM.  I have created the PIR's for these HALBu2019s using Simulative Long Term Planning.
    I need a way to consume/reserve the foretasted PIR's from the sales order... without the use of the Production Order or Planned Order.  I think it can be done at the time of the sales order PGI... but have not been able to figure out the configuration.  Below are the main steps if the PGI is the vehicle for consumption.
    Sales Order uses Configuration Profile SD01, KMAT and BOM Usage 5 items are in the found in the Sales Order.
    KMAT is inactive in Demand Management (MD62).
    BOM Usage 5 items have PIRu2019s, they are created from Simulative Long Term Planning.
    1.     During Sales Order creation, the BOM Items are selected from VC.
    2.     During Sales Order PGI, the BOM Items are consumed and show as withdrawn in MD623/MD73.
         Sales Order Reservation and/or Consumption of Item Level Planned Independent Requirements     
         ***PIR's are not found in the Production BOM, only the Sales BOM.               
         ***Production BOM and Sales BOM have same KMAT, and same Object Dependencies          
         Step 1:     Create Sales order for KMAT 10000008                    
              a. Sales Order will have KMAT at line item 10               
              b. Sales Order will have BOM Usage 5 materials as items (see BOM's Below)          
              VC will pick the specific materials that are relevant to order          
         Step 2.     Sales Order is Saved/Confirmed.                         
              a. A reservation will be created against the Planned Independent Requirements for Sale BOM Items.
              MD73 for the HALB will show the Planned Independent Requirement, and the Reservation.     
              b. A Planned Order is created using BOM Usage 1.               
              VC will pick the specific materials that are relevant to order          
         Step 3.     Production Order is completed and issued to Sales Order.               
         Step 4.     Sales Order Delivered with PGI                    
              a. The HALB PIRu2019s in the Sales Order will be withdrawn (reservation goes away, PIR qty reduced by 1 PC).
    Client 100     BOM Usage 5                              
         Material Type     BOM Item     Material Number     Planning Strategy Group     Planning Independent Requirements     VC ObjDep          
         KMAT     Header     10000008     25     00-Inactive     KMAT          
         HALB     01     10000023     70     00-Active     Yes, At this level          
         HALB     10     10000025     70     00-Active     Yes, At this level          
         HALB     20     10000024     70     00-Active     Yes, At this level          
         HALB     30     10000026     70     00-Active     Yes, At this level          
         HALB     40     10000027     70     00-Active     Yes, At this level          
    Client 100     BOM Usage 1                              
         Material Type     BOM Item     Material Number     Planning Strategy Group     Planning Independent Requirements     VC ObjDep          
         KMAT     Header     10000008     25     00-Inactive     KMAT          
         KMAT     10     KA_350_FA_P4
    (Parameter Effective)     Null     Null     Yes, but at lower levels          
         KMAT     20     KA_350_FA_P4 (Parameter Effective)     Null     Null     Yes, but at lower levels          
         KMAT     30     KA_350_INT
    (Parameter Effective)     Null     Null     Yes, but at lower levels          
         KMAT     40     KA_350_INT
    (Parameter Effective)     Null     Null     Yes, but at lower levels

    You can manage copying data from the sales order to the production order by some FMS.
    For data not in the production order you can define UDF-s on the production order.
    E.g.copying the item code you can use this FMS:
    SELECT T0.ItemCode
    FROM RDR1 T0  INNER JOIN ORDR T1 ON T0.DocEntry = T1.DocEntry
    WHERE T1.DocNum =$[$32.1]
          and T0.VisOrder=0
    connecting this to the Product No. field setting autorefresh when Production Order Origin Number changes.
    Or copying the Item details you can use this FMS
    SELECT T0.Text
    FROM RDR1 T0  INNER JOIN ORDR T1 ON T0.DocEntry = T1.DocEntry
    WHERE T1.DocNum =$[$32.1]
          and T0.VisOrder=0
    connected to an UDF setting autorefresh when Production Order Origin Number changes.
    (And similar other FMS-s can be connected to other fields you want to copy.)

  • Changing Credit status in Sales order under header status

    Hi,
    How can we change the Credit status for a sales order.
    The Status tab under the header is in read only mode and i am  not able to find any BAPI or FM for 
    this.
    Thanks in advance..
    Dinakar.

    Hello every one,
    I want to change the credit status ( VBUK-CMGST ) for sales order header.
    Since the screen is read only mode i am not able to go for recording. and i am not able to find
    any BAPI or FM to change the status.
    If any one has any Idea please let me know..
    Thanks,
    Dinakar.
    Edited by: Dinakar Tirukoovaluri on Feb 24, 2009 5:43 AM

  • Workflow for Sales Order Release via Status Profile

    Dear all,
    i want to make a workflow for sales order which have 4 User Status in One status profile.
    Once Event triggered for sales order
    1.   Mail should go to main authority with sales order number.
    2.  Once authority will do some changes in the required field then he/she changes
         the user status-1 from defauts as per line Item and mail should go to department no-1 (Head authority).
    3.  Once again same changes in sales order but now user status-2 from user status-1
         as per line Item and mail should go to department no-2 (Head authority).
    4.  Once again same changes in sales order but now user status-3 from user status-2
         as per line Item and mail should go to department no-3 (Head authority).
    5.  Once again same changes in sales order but now user status-4 from user status-3
         as per line Item and mail should go to department no-4 (Head authority) .
    and parrally for each changes of Status mail should also go to User (Event Creator).
    6. Finally mail sholud go to User as you are permitted to do next business transaction for this sales order
    Please tel me the process as i am very new this topic and i am always going to stuck in Binding.
    please help me out.
    Thank You

    Hi Neeraj,
    First of all start with SWELS and SWEL T-Code to check if any standard event is getting triggered or not. If event is getting triggered, then use the same event to trigger the workflow; otherwise create a custom event of BO and use the same to trigger the workflow.
    Hope you are aware of T-Code SWO1 and delegation of BO. The BO used for your requirement will be BUS2000115.
    As you want the workflow to get triggered only for one status profile and one of its status, so use check function module. There set the condition for you status profile and status.
    The FM which you will be using the most is CRM_ORDER_READ. To read the status, you can also use CRM_STATUS_READ_OW.
    Now simply make the approval steps in the workflow using activity. In the activity, you can use the standard method USERSTATUSPOPUP to send the workitem for approval. In each step use the same activity with different agents as approvers.
    Just go with these things and let me know if you get stuck up somewhere.
    Regards,
    Guddan

  • Sales Order - Returns change the sales order item delivery status

    Hi All,
    we have the following requirement from our users:
    after creating a return, the original sales order should have the
    delivery item status changed.The system should permit that a new
    delivery can be created for sales order item already delivered / billed (a new delivery with the quantity that has being returned) but has a return document,
    without increasing the sales order quantity.
    Does any body got the same requirement ?
    Thanks in advance,
    Marcus

    Hi Marcus,
      After creating return order you have to do the goods receipts.But this doesn't mean that you will be able to create a delivery with the old order itself.
      You have to create the order again and ahve to create a new delivery,goods issue and billing.
      Another option is as Roberto said that you have to reverse the goods issue thru VL09 and then cancel(delete) your delivery and then you can create a new delivery wr.t to your original sales order.
      Reward points if it helps.
    Regards
    Karan

  • Sales order line with status calcelled picked by auto invoice program

    I cancelled  one line in Sales Order and Shipped remaining lines
    after Ship Confirm process ,I ran workflow background process.
    I am getting cancelled line information to AR interface tables
    when I run Auto invoice amount is sitting in Unearned account
    The status of cancelled line -  Cancelled
    Flow status code is cancelled
    INVOICE_INTERFACE_STATUS_CODE I AM SEEING is YES for that line.
    Why the cancelled Sales order line is picked by auto invoice program?
    Thanks,
    John

    Hi Ivruksh,
    Thanks for the reply, the reference you gave was not actually related to the issue I had, let me put it this way,
    Our Auto Invoice Job is scheduled at midnight, it runs and process only few CM's, rest of them are left behind with out any error message in error tables. Al I can see in the ra_interface_lines_all table is interface_line_id is populated, which shows that the Auto Invoice program has picked all the records but it is processing only few, the rest are left out with out any error message.
    Interestingly, when I tried to run those stuck CM's Individual one by one its gets successfully processed.
    Is anyone faced with similar kind of issue, kindly let me know of any solutions you guys had.
    Thanks in advance.
    Regards
    Srinivas

  • Sales Order Line item status with Resource Related Billing

    Hi
    The Resource related billing is done based on the costs accumulated on account assigned WBS Element. The WBS Element system status is set 'Finally Billed'. The overall status of Sales Order line item is still 'open' and does show up in 'Open Order' reports.
    SAP vide their note 439288 recommends running report SDVBUK00 to correct the sales Order item status. However this note is applicable only upto 4.6C. Our system in ECC 6.0. We tried running this report and did not get desired results. We checked the program and discovered that the corrections suggested as per above note, are not available.
    Is there any new SAP note applicable for ECC 6.0 needs to be applied ? Or is there any other report needs to be run in case of ECC6.0?
    Thanks in advance
    with regards

    HI,
    Please raise message to SAP through service marketplace.
    Thanks,
    Vrajesh

  • Sales order line item status for an item with PR

    Hi Gurus,
                  Here is my business scenario.
    i have got following list of line items in a sales order.
            Line item no        Material no       Order quantity     Schedule line confirmed qty     Line item overall status           Plant
                    10        A                    3                              3                                   Open                         X
                    20        B                    5                              5                                    Open                        X
                     30        C                    8                              0                                    Open                        X
    1. I can create delivery for the line tiem 10 & 20 as they are confirmed for schedule lines.
    2. Line item 30 is not actually available in Plant X now if i do the availability check and select another plant "Y" where the material is available. For this STO should process should follow up (Correct me if i am wrong)
    Now i have got following questions
    1. How can i track which line items are followed up by PR's and which are not in the sales order.
    2. tell me how follow up happens by creating PR's
    Thank you

    1. So i am assuming that for each schedule line item there will be associate PR number and PO number if there are any.
    Yes every non stock article will have a associated PO.
    2. Suppose if Purchasing department make a decision to get this line item thru 3rd party then what happens for this schedule line item.I mean how do we differentiate in showing Sales order? Here my scenario is one Material can get thru either STO or thru 3rd Party.
    If you have more than 1 vendor listed for an article in EINA table. Then at that point the system will prompt you to select the vendor you want to create the PO against. (Given that the regular vendor flag is not checked for any vendor).
    Eg: Suppose if i have a schedule line item which can get thru STO and i have got another schedule line item which i can get thru 3rd party, Can i see this differentiation in sales order?
    3. How to create purchase requisition?
    Tcode Me21n (Advise to use this tcode) or ME21
    Found a link hope this helps
    http://www.le.ac.uk/mis/docs/sapdocs/mm/mm46b_41.doc

Maybe you are looking for

  • Debit Note & Credit Note

    Hi Guru's, what exactly diff between debit note and credit note? in SAP, is there any configuration? pl advice me with examples.... scenario-1: If A purchased raw material for 5000/-. user returned some raw material worth of 1000/-. in this case who

  • Terms of payment - end of life

    Hi, we have some terms of payment that require an expiring date for master data, order and invoice. we don't want to delete from the database but we only want to mark them as "not-usable" to do this  we have to use a customer table end use it in ALL 

  • I want to transfer all data from my iMac to my MacBook Pro. How do I do that?

    My iMac's video card has died and I am told it is too old to replace.  They recommended transferring all my data from my iMac to my MacBook Pro.  They said attach a fire wire, and press "t' before the iMac starts up and then it will start in safe mod

  • Possible to edit action script permanantly from outside of flash?

    More specifically is it possible to permanantly add strings, for instance, to an array using an input text field and having that text field push the text into the array?

  • Columns, cells and row headings

    My printer continues to print column headings, cells and row headings even though none of these boxes are checked under the Appleworks (6.2.9) pull down menu