How to remove sales orders from VL10A

HI All,
I had an issue from production system. Few orders are already delivery and accounting completed, still those orders are being displayed in VL10A. I have checked those orders and there are not schedule lines due for shipping. Sales order/delivery/invoice shows completed in the document flow.
For the timebeing i have given workaround solution to exclude those orders from selection screen in VL10A.
Could you suggest the permanent solution not to display those orders in VL10A, which are already shipped and no due for shipping.
Thanks in advance and waiting for your suggestion.
Regards,
Vamsi.

HI Raghu,
Thanks for your inputs of the program, but it has no options to choose.
Analysis:
This could have happened due to Inconsistency in delivery due index tables.
I referred OSS Notes: 128947 & 178328, executing  the reorganizing program u201CRVV05IVBu201D for the problematic sales orders to remove inconsistency.
Please ensure to execute the report with proper selections in the initial screen even online i.e on business hours..
Hope this would help to anyone in future.
Regards,
Vamsi.

Similar Messages

  • How to stop sales orders from contracts from qualifying for Rebates.

    We have set up rebate agreements for customers and they are working as expected.
    Now our sales people want to start using contracts for some special deals for certain customers and products. But they DO NOT want these sales orders from these contracts to qualify for rebates.
    Does anybody know how we can set this up or if it is at all possible?

    Hi Zoya,
    I got one more idea and so try it out.If it sounds foolish please ignore.Instead of going for userexits its better you go for a different sales order type whenever you refer to a contract.And make sure you assign a different pricing procedure which does not contain the condition type BO03 at all.Ofcourse this new sales document should have a different document pricing procedure.
    Regars
    Ravi Kiran

  • How to delink sales order from a discrete job.

    Hi,
    I wanted to know how we can delink sales order from a discrete job.
    Thanks

    Go to the reservations screen in inventory; find the reservation using item number or sales order #
    Delete the reservation.
    Alternatively, you can go to the wip job and click on reservations and delete it.
    Hope this helps,
    Sandeep Gandhi

  • How to remove Sales Order to Own for multiple Batches at a time.

    Dear All,
    We use to scrap FERT materials using Mvt. Type 551 / 555, but before scrapping stocks are being removed from Sales Order using Mov. Type: 411 'E', because Batches are produced against Sales Order under MTO strategy.
    The removing process from Sales Order using T.Code MB1A & Mov. Type: 411 'E' is quite time consuming because in this case only one batch is removed from Sales Order at a time.
    So is there any way by which I can remove multiple Batches at a time from Sales Order.
    Thanks and Best Regards,
    Vivek Kumar

    Hi
    YOu can use transaction MASS with the sales document, sales document item, batch fields.
    create a variant and do the changes
    regards,
    Ramana

  • How to Avoid sales orders from getting released

    Hi,
    We have done following :
    1. Created sales orders in AT org.
    2. Ran ASCP plan
    3. Sales order is considered as demand and the corresponding planned order is created in AT org.
    4. corresponding Internal Requisition is created in AT org and internal sales order is created in BE org (The sourcing rule for AT suggests to transfer 100% from BE).
    5. Now again the ASCP plan is run.
    6. The same sales order is again considered as demand and all the corresponding documents are also created (means, planned order, internal requisition, internal sales order).
    The requirement is that the sales order should continue being considered in the plan run as the demand so that it can be taken in the ATP calculation, but the corresponding IR should not be created each time the plan is run.
    I have modified the Visible_demand_flag of sales order line as 'N'. but problem is that orders are not even getting considered as demand till the flag is again reset as 'Y'.
    Please help is this. This has to be displayed in UAT to users.
    Regards.

    1)     Planning should not recommend new planned order if there is already a requisition to fulfill SO demand. Did you see that every time, a new planned is created for same SO demand ? Then you would need to ensure that Requisitions are being collected.
    2)     To prevent releasing the Planned Order – this can be done by populating item attribute ‘Release Time Fence’ – Kanban Item (Do Not Release)

  • How to exclude Sales Orders from a planning run

    Hi,
    I run MD02 and i discover that planned orders are being created as procurement proposals for sales orders and the planned independent requirement.
    I want planned order to be created only for the Planned independent requirements ONLY.
    Is there a way that sales orders can be excluded from the planning run?
    Thanks in advance for your suggestions.

    Dear,
    Check the requirement type of your sales order line item in VA02 procurement tab it should be Reqmt type of customer reqmt   KSL
    Also check the strategy assign in material master and MRP group OPPR and then check the setting of strategy 10 in OPPS there should be
    Customer Requirement planning
    Reqmt type of customer reqmt   KSL  Sale frm stck w/o ind.req.red.
    Requirements class  030  Sale from stock
    Allocation indicat.     No consumption with customer requirements
    No MRP   :-               1 Requirement not planned, but display.
    Please try and come back.
    Regards,
    R.Brahmankar

  • How to Add Sales order from one database to another database

    Hi All,
    I am trying to add sales order with sales order object.
    I have completed connectivity from one database to another database.
    but i am unable to post sales order with orders object.
    My code is
    ObjSales = objMain.objUtilities.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
                ObjSales.DocDate = Date.Parse(System.DateTime.Now().ToString("d"))
                ObjSales.DocDueDate = Date.Parse(System.DateTime.Now().ToString("d"))
                ObjSales.TaxDate = Date.Parse(System.DateTime.Now().ToString("d"))
                ObjSales.CardCode = "C0006"
               ObjSales.Series = 92
                ObjSales.PaymentGroupCode = 3
                ObjSales.Comments = "vivek"
               ObjSales.Lines.Add()
               ObjSales.Lines.SetCurrentLine(1)
               ObjSales.Lines.ItemCode = "5127"
               ObjSales.Lines.Quantity = 100
               ObjSales.Lines.UnitPrice = 10
               ObjSales.Lines.WarehouseCode = "01"
                ObjSales.Lines.TaxCode = "0"
                ObjSales.Lines.DiscountPercent = "0.00"
                ObjSales.DocTotal = 1000
                 If ObjSales.Add <> 0 Then
                   objMain.objApplication.SetStatusBarMessage("Sales or Not Posted", SAPbouiCOM.BoMessageTime.bmt_Short, True)
                   Exit Sub
                else
                  objMain.objUtilities.ShowSuccessMessage("Sales Order Posted successfully")
                End If
    The above code is executing successfully.But the Sales order is not getting added.
    Thanks in advance.

    Hi Vivek,
    If the code you posted is not throwing any errors, then the order really does get created. Apparently just not to both databases, am I correct ?
    vivek.Y wrote:
    > I have completed connectivity from one database to another database.
    That means that apparently you have not gotten this bit right.
    Generally speaking if you want to create an order into two databases, you first need to connect to both databases and create separate order objects for each database. So you need to do this bit twice; once for each database. Something like this:
    ObjSales1 = objMain.objUtilities1.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
    ObjSales2 = objMain.objUtilities2.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
    Then at the end you also need to add both objects separately:
    If ObjSales1.Add <> 0 Then
    etc.
    If ObjSales2.Add <> 0 Then
    etc
    Good luck,
    Johan

  • I want to load a sales order from xml file. How can I do.

    Hi,
    I want to load a sales order from XML  file. How can I do ? how can i create the sales order?
    what are the necessary  setting for  create the sales orders.
    with Regards,
    Prakesh.

    Three options come to my mind.
    Option 1: Use SAP transaction SXDA_TOOLS (Object Type BUS2032), Program Type (BAPI) and Program (CREATEFROMDAT2).
    Option 2: Use SAP transaction SXDA_TOOLS (Object Type BUS2032), Program Type (DINP) and Program (RVINVB10).
    Option 3: Translate the xml to IDoc so that ORDER04 / ORDER05 Idoc can be used to create Sales order (WEDI transaction).

  • How to create a Sales order from multiple quotations?

    Hi All,
    Please tell me how to create one sales order from multiple quotations?
    Regards,
    Maddy

    Hello Maddy,
    To create the sales order from multiple quotation, you should put the value "F - Only at item level: Always with selection option" under Quotation determination in your sales transaction type.
    It will give you a pop-up to choose your quotations item while creating the sales order.
    Some per-requisites are there:
    1. Copy control should be maintained between your quotation and sales order.
    2. Quotation should be error free and should have the status "Released"
    3. Sold to party and Organization should be same in both transaction.
    For more information you can check the below link:
    Processing Quotations - Sales Transactions - SAP Library
    Best Regards,
    Dinesh

  • How to get sales order data in substitution of fi-docu from GM posting ?

    How to get sales order data in substitution of FI documents from goods movement posting?
    When I posting a material document with movement type "501E", the system will creating a FI document automatically. And I need to get the sales order data in the substitution of FI document.
    I tried to export the data of the material document in user-exit "MB_CF001 Updating of material document data upon posting", but this user-exit does not triggered in the posting process at all. what's the problem?
    Do you have better solution or idea for this? Please help me. Thank you!

    Hello Harish,
    Please use BAPI_BUSPROCESSND_GETDETAILMUL to read details of sales order. This works as a remote enabled counterpart of CRM_ORDER_READ.
    Similarly if you want to display sales order from R/3, use FM BAPI_BUSPROCESSND_DISPLAY.
    Regards
    Kaushal

  • Migrate all Open Sales Orders From Legacy System (SAP) To SAP System using

    Hi Experts,
                 I've to Migrate all Open Sales Orders From Legacy System (SAP) To SAP System using Business Objects with a new SALES ORDER DOCUMENT NUMBER referencing the older one.
               I'll get all the required data with field in an excel file.
                 Does any standard transaction exist for it ? Or how to go ahead with it ?
    Thanks and regards,
    Jyoti Shankar

    Hi
    If you are checking for CREATE option then Sales Doc Type
    For more Info goto SWO1 transaction -> BUS2032 --> DIsplay --> Execute --> There SELECT the method which you want to perform... There you can fine the MANDATORY parameters also....
    Or in DISPLAY mode PLACE Cursor on the Required Method and CLick the PARAMETERS button on toolbar...
    That will show the MANDATORY parameters...
    Reward if helpful....
    Message was edited by:
            Enter the Dragon

  • Uploading open sales orders from sap

    hi all,
    i need to upload open sales orders from legacy to sap. pls advice what steps need to be followed for the same.
    1) how we will we download open sales order from legacy and where..... is it to some flat file or some other option is  there . pls tell some options.
    2) how we will uload the sales ordes into sap . thru lsmw or is there some other option ?
    3)  there will be more number of fields in sap than in legacy. i think we need to manully create an excel file and add more fields manually in excel file so that the compulsonry feilds as per sap are present in sap ?
    4) how will availability check happen  in sap after sales order are t/f from legacy ?
    rgds
    pamela

    hi pamela,
    1.a. you need to down load in EXCEL in legact format and convert the same in LSMW format and upload it
    2.a. LSMW - Functionally, BDC, BAPI - Technically. to my knowledge LSMW is better option.
    3.a. first you download to EXCEL file from LEGACY, then align the same to SAP format you can add those fields that are mandatory as per your requriment.
    4.a.You are uploading sales orders in SAP which are showing OPEN status from LEGACY before you uploading the sales orders MM consultant would have uploaded its stock through 561 - dont worry on that, even though if stock is not uploaded also not an issue it will confirm at the later date.
    5.a. we have used LSMW process for our PREVIOUS ASSIGNMENT, before that we tested BAPI for it some how it was not capturing some fields.
    hope all your queries are solved
    balajia

  • Load Sales Order from Xml file

    Hi,
    I want to load a sales order from xml file. How can I do so? Where I'll get the xml schema for Sales Order or other documents (delivery,invoice etc)?
    Plz reply with code and xml file.

    When I'm going to load SO from xml file, it's showing an error:
    "The connected value 0 was not found in table Uasge of Nota Fiscal".
    What is this table for? Which attribute is related with this table?
    How can I find out that?

  • Sale Order from Inbound IDOC

    I am testing creating Sale Order from inbound IDOC with WE19.
    Partn. number = AAA001
    Partn. type = KU
    Partn.func = PY
    Message Type = ORDERS
    Process Code = ORDE
    I get message 51 "Error: Application document not posted" in IDOC status:
    VKORG, VTWEG, SPART cannot be determined for customer AAA001 , vendor                                                                               
    Message no. VG 204                                                                               
    Diagnosis                                                                               
    No sales organization, distribution channel or division were sent to the
        IDOC. This data is necessary if a sales order is to be added           
        automatically. If this data is unavailable, you cannot create a sales  
        order document.                                                                               
    Procedure                                                                               
    If data on the sales organization, distribution channel and division   
        have not been entered in the IDOC, it must be determined using a user  
        exit defined in the program.

    I will receive IDOC from external non-SAP system.
    How can i populate E1EDK14 segment with appropriate values:
    E1EDK14 -QUALF = 006
    E1EDK14 -ORGID = Division (VBAK-SPART)
    E1EDK14 -QUALF = 007
    E1EDK14 -ORGID = Distribution Chanel (VBAK-VTWEG)
    E1EDK14 -QUALF = 008
    E1EDK14 -ORGID = Sales Organisation (VBAK-VKORG)
    If external system does not know this values?
    Edited by: S S on Feb 28, 2009 12:46 PM

  • Migrating Open Sales Order From Legacy System (SAP) To SAP System

    Hi Experts,
                 I've to Migrate all Open Sales Orders From Legacy System (SAP) To SAP System using Business Objects with a new SALES ORDER DOCUMENT NUMBER referencing the older one.
               I'll get all the required data with field in an excel file.
                 Does any standard transaction exist for it ? Or how to go ahead with it ?
    Thanks and regards,
    Jyoti Shankar

    hi jyothi ,
       there are lot of ways of doing it depending on data upload volume it will be decided .
    1) thru abap bdc program which directly uses XL sheet data and creates SO using bapi/FMs.
    2) using scat.functional consultant should be good enough to use this.
    3)lsmw-laborious procedure but achievable.
      reward if helps !!!!!

Maybe you are looking for

  • Item getting confirmed for a material without stock

    Hi Issue: Sales Orders are appearing in the Delivery Due list, but the user is unable to create delivery. Reason:Sales order item has got confirmed through V_V2 Transaction i e sales order allocation, but actually there is no stock of that materia. T

  • Problem with CardLayout

    I ve got a JFrame object and i want to put in it a JMenuBar and a CardLayout that contains two JPanel. 1. Is it possible to do that 3. how to do it.(I have already created my JMenuBar in my JFrame)

  • Background color of the image

    Dear all, i am using Developer suite 10g on windows 7. i create a report, and insert one image which is in gif format. the background of the image is coming black when i insert it into the report. while, when i open it with windows previewer, there i

  • E1200 as an access point

    I have purchased the EA6900 router to replace my old E1200 router. 1.  Will I be able (by following the instructions in the EA owner's manual), set up my old E1200 as an access point? 2.  Will I then be able to attach devices to the E1200? Thanks

  • Mountain Lion Finder Crashing, Mountain Lion Finder Crashing

    Can someone please help me, i've had this problem for 2 or 3 days now and it is really annayong. It seams to crash when I go to open an application. Im writing this from safe mode now and its fine, i've repaired permissions, did the apple hardware ch