Print MULTIPLE sales order for a given date

Hi Gurus,
My requirement is to print sales order for a given date like the one given below.
VL71  - Output from Outbound Deliveries
VL74  - Output from Handling
VF31  - Output from Billing
VOK4- Output Determination: Inventory mgmt.
Is there any T.code for printng multiple sales order instead one-by-one printing using VA02/VA03?
Please hlep me in this regard.
Regards,
Anbu

Hi anbu,
This is very much possible to mass printing for sales orders.
Goto SE38 T.Code.
Enter the program name as "RSNAST00".
Press Execute or F8
Select output application as "V1" which is sales.
Enter your object key here.
Enter your output type.
Select the transaction medium as "1".
Tick "send again".
Press on Execute or "f8".
Regards,
Krishna.

Similar Messages

  • Searching for Sales Order for the given Customer PO Number Pattern in BAPI

    Hi,
         I have developed a BAPI which retrieves all the Sales Orders for a given Customer (Sold-To). The Following are the Input Parameters given in the Function Module (RFC).
    Customer Number (Mandatory)
    From Date (Optional)
    To Date (Optional)
    Sales Order Number(Optional)
    Customer PO Number(Optional)
    Now, when the Customer PO Number is populated, it will come as a Pattern, say 9ab* and I need to retrieve all the Sales Orders with PO Number starting with 9ab.
    When I am trying to retrieve, it is giving different set of output based on the Case specified in the Customer PO Number Pattern. Lets say, if I give 9ab, I get 200 Records but if I give 9AB, I get only 5 to 6 Records.
    As I have understood from the Standard Transaction VA03, it has a Search Help VMVAA which retrieves all the Sales Orders for the given PO Number pattern irrespective of the Case, that is Lower Case, Upper Case or Mix of Upper and Lower Case.
    I can see the Code in the Search Help Exit but couldn't find useful piece of code which I can implement in my BAPI to simulate the same.
    Can somebody help me on this?
    Thanks,
    Venkat.

    Hi Sudhir,
             I think you did not understand what my problem is. What I mean to say is, for Customer X, the PO Number could be 9abc and for Customer Y, the PO Number Could be 9ABC.
           So, according to your logic, if I translate it to Upper Case, it will give the Sales Order details of Customer Y to Customer X.
          And more over, SAP stores the PO Number as it is entered in the Sales Order Screen (VA01).
        What if the Customer PO Number for Customer X is 9aBcDeFgH? and the PO Number for Customer Y is 9AbCdEf?
       Hope you've understood my question.
    Thanks,
    Venkat.

  • Multiple Sales Order for a single complaint in QM Notifications

    Hi Folks,
    We have a situation in a company i.e. migration from legacy system to SAP QM Notifications for customer complaints.
    The business needs to accomidate "Multiple Sales order for single complaint".
    Can someone suggest are there any customizing options "Assigned Objects" ?? or how can we achive this functionality.
    Thanks,

    Dear Sandeep,
    1) We don't have facility like One notification capture Multiple sales order, but you can do one thing day first you create one notification with reference sales and capture all sales orders in subject so that when ever you check Notification  you will get idea  This many sales order link with the notification.
    2) Diffects also you can capture agaist sales order like enter manually in Text
    I think this is help full for your business reqirement

  • Invoice request based on multiple sales order for same customer

    Hi Team,
    I just wanted to know if we can create manual invoice request based on multiple sales order for same customer?
    For project based invoice request i have create based on single invoice request.
    Appreciate your input here.
    Thanks,
    Nitin

    Dear Ratish,
    Thanks for yr reply.
    I already did that but it is not serving business purpose.
    Comm payment  - comes diff time than sales payment.
    so ,I will post one entry customer will get hit with total amount Sales + commission
    like below
    Let say 10, 000 is the sales value and 500 is the commission
    So , This entry will get posted
    Customer Db- 10,500
    Sales Cr- 10,000
    Comm Income Cr- 500
    But, As I said sales amt will be paid before so We need to clear it partially and some time customer pays also diff amount due to some defect.
    So, We wont be knowing for which case we have or havnet received the payment against commission.
    As , Customer account is got hit with total amount( Sales+ Comm..value).
    Pls advise how to solve this.
    Regards,
    Sukh

  • Value not populating in the print out (sales order) for the 1st time

    Hi friends,
    While saving a sales order, the order confirmation going to the user is not populating the LDC field. LDC is Last date of change. This field can be found in the Additonal data 2 tab of the material in the sales order. When I enter a date in this field and save, the print preview of the output has this value, but the print out does not carry this value.
    Another weird thing about this issue is that, the second time i trigger the output, the print out has the value.
    Please give me some clue on where to check and how to go about fixing this problem.
    Regards,
    Shanu.

    Dear Shanu,
    This issue may be related bug in the output program so take help of ABAPer to fix the issue.
    I hope this will help you,
    Regards,
    Murali.

  • Single invoice against multiple sales order for a single customer PO

    Hi all,
    Customer provide a single order via EDI per Depot.  When the order is received into SAP these are split into multiple order based on the Production or distrubtion location of the products. The customer will receive a number of deliveries to the depot from the various locations.  Each delivery has his own SAP sales order and delivery note.  This creates mutliple invoice against a single Purchase order sent by the customer.
    We have a requirement from two customers that they only wish to receive a single invoice per depot per day.   This means we need to change the way we currently invoice the customers(no multiple invoices needed).We need to be able to combine multiple deliveries with the same PO to a single invoice.  This would mean that the invoice can't be generated until all the deliveries relating to the single PO have been POD flagged or 7 days  have passed from PO date and invoicing is due.
    how to achieve the above,whether through user exit in billing or data transfer routine in copy control(delivery to billing) or through config and how ??
    regards
    sachin

    Hi Sachin,
    You will have to create a new data transfer requirement on the copy control between the delivery and the invoice. In the new data transfer requirement, you will need a programmer to code when there should be an invoice split.
    Regards,
    Finbarr

  • DI: Create Purchase Order from Multiple Sales Order - Lines

    Hi all,
    I am trying to group multiple lines from multiple Sales orders concerning One given Vendor/Supplier so as to generate One Purchase order for this Vendor/Supplier
    oSalesOrder = (Documents)B1Connections.diCompany.GetBusinessObject(BoObjectTypes.oOrders);
    oPurchaseOrder = (Documents)B1Connections.diCompany.GetBusinessObject(BoObjectTypes.oPurchaseOrders);
    oPurchaseOrder.CardCode = 'Vendor1'
    oSalesOrder.getByKey("13");
    oSalesOrder.Lines.SetCurrentLine("4");
    oPurchaseOrder.Lines.BaseEntry = oSalesOrder.DocEntry;
    oPurchaseOrder.Lines.BaseLine = oSalesOrder.Lines.LineNum;
    oPurchaseOrder.Lines.BaseType = (int)BoObjectTypes.oOrders;
    oPurchaseOrder.Lines.Add();
    oSalesOrder.getByKey("14");
    oSalesOrder.Lines.SetCurrentLine("2");
    oPurchaseOrder.Lines.BaseEntry = oSalesOrder.DocEntry;
    oPurchaseOrder.Lines.BaseLine = oSalesOrder.Lines.LineNum;
    oPurchaseOrder.Lines.BaseType = (int)BoObjectTypes.oOrders;
    if (oPurchaseOrder.Add()!=0)
        MessageBox(B1Connections.diCompany.GetLastErrorDescription());     
    I get the following Error: <i>Base Document Card and Target Document Card do not match</i>.
    What more Should I do to avoid This?
    Regards,
    Emmanuel.

    Hi Emmanuel,
    As far as I know you cannot create a purchase order based on a sales order using the DI API. I know in SBO you can do this, but I don't think using the SDK. The reason why it's giving you the message "Base Document Card and Target Document Card do not match" is because one is a vendor and one is a customer.
    Hope it helps,
    Adele

  • Assigning multiple sales order in ME38

    Hi,
    We have the following scenario with one of our clients
    The business is "Make to order"
    For externally procured materials the system generates PR's .
    The PR's are having account assignment category "M"
    The client follows Scheduling agreements for external procurement.
    In ME38 the PR number generated through MRP is adopted. Here the requirement is to assign multiple sales order for the same line item for a material.
    When I try to assign multiple Sales order then system gives an error " With multiple acct. assignment, enter GR non-val. or cancel GR" Message no. 06417
    . Without ticking GR Nonvaluated is there any other option for assigning mutiple sales order in scheduling lines?
    Regards,
    Naveen Goveas

    Hi Heng,
      The sales orders can be combined in one delivery if the following parameters are same for those orders:
    1) Delivery date for the materials( schedule line tab)
    2) Ship to party is same for them
    3) Shipping point is same for all of them.
    If all the above parameters are same then you can goto transaction VL10A and can put your aboce 3 parameters and execute the transaction.
    All the orders will have one delivery order in that case.
    Reward points if it helps.
    Regards
    Karan

  • Multiple planed order for depedent requirement

    Hi gurus,
    I have created multiple sales order for a MTO material. But after MRP run multiple planed order is generated for the same depedent requirement(which is a raw material). I have maintained MRP type-PD and Ind/collective req=2 (in MRP4). Actually i want all the depedent requirement should clubbed( for the same material) and one planned ord/Purch. req should be generated.Please tell me what to do.
    Regards
    Rajib Pathak

    You will not get that since each Raw Material is dependent on a Planned Order, that's why it's "DEPENDENT". It has to be assigned to 1 requirement.
    If they were INdependent they could have been grouped since there are no assignment generator for them except 1 source.
    They are also generated as dependent because they're listed in the BOM, once it explodes all the materials in it are generated as individual dependent requirement.
    However, you shouldn't worry about various planned/purchase requisitions for the raw materials, because the purchasing department could group all these requisitions into 1 Purchase Order.
    Points is appreciated if useful
    Thank you

  • Single idoc generation for multiple sales orders

    Hi,
    Pls let me know how do we generate single idoc for multiple sales orders.
    Its not collecting idoc. As we know we can generate an idoc for one sales order correspondingly
    my requirement is to generate single idoc number for multiple sales orders.
    Do we need to write a program.

    Amar,
    To understand take HRMD_A04 as example. Root segment has Maximum 9999999999 defined.
    Segm.type       E1PLOGI
    Minimum number  1
    Maximum number  9999999999
    Parent segment
    Hier.level      2
    This means that this IDOC types has capability to hold multiple HR Master data objects. PFAL program creates this IDOC and it has facility to mention the Objects per process, check selection screen.
    I checked for INVOICE01/02 its not possible there. Hope this clarifies.

  • Delivey for Multiple Sales orders

    Hi,
      I am new to SD and would like to know how do we create a single delivery corresponding to multiple sales orders.
    Can someone please advice me about the same?
    Thanks and Regards,
       Aditya

    You can group together entire orders, order items of different orders or partial deliveries of individual order items in one delivery but only if this has been agreed with the customer.
    Prerequisites
    Order combination can only be carried out if the orders concerned have the appropriate indicator in the order header.
    The orders or the order items and schedule lines must have identical shipping criteria. This includes the following data:
    Shipping point
    Ship-to party
    Incoterms
    Sales organization
    If you try to combine items that have different goods issue dates, you receive a warning message. You can ignore this warning message. The earliest goods issue date of all the items is selected automatically as goods issue date of the entire delivery.
    Entering the Indicator
    You can enter the indicator that makes order combination possible in two places:
    In the customer master record, you can give a customer general allowance for order combination. The indicator depends on the sales organization, the distribution channel and the division as it is entered for a particular sales area.
    You can specify that all orders for one particular customer can be combined by entering an X in the Order combination field on the Shipping screen of the customer master record. The indicator is copied from the customer master record into the order header.
    You can specify manually that individual orders can be combined and then revoke the combination allowance later, if necessary. You can specify that orders can be combined by entering an X in the Order combination field of the Shipping tab page on the Order Header screen. If you want to block order combination, deselect this indicator (the checkbox should appear blank).
    Process Flow
    During delivery creation, you must distinguish between the following two situations:
    Creating an individual delivery
    You can manually add additional orders or order items to this delivery if the customer allows combination and order items fulfill the criteria for order combination.
    Processing a delivery due list
    The system automatically combines the order items in one delivery if the customer allows this and if the order items fulfill the criteria for order combination.

  • How to create one delivery for multiple sales order

    Hi!! Friends,
    Can some one explain the steps to be followed in creating one delivery for multiple sales order in SAP SD.
    Regards
    AKASH
    Message was edited by:
            AKASH TAMBI

    Hi.,
                  You can combine different orders in to one delivery ,But for the customer Order combination should be checked in  the sales area data of the shipping tab,we can combine orders but the ship to party,Route,Inco terms,Shipping date,shipping point should be same,you can do in T.code VL04 & VL10
    REWARD if helpfull
    Thanks & Regards
    Narayana

  • Billing document for multiple sales orders

    Hi All,
    I am in to ECC 6.0. How can i get single billing document for multiple sales orders?
    Can anyone tell me those configuration settings?
    Thanks
    Patel J

    Dear Jaganath,
    For Single Invoice, for multiple Sales Order, following details must be same:
    1. Sales Document Type for all Sales Order must be same
    2. Payer
    3. Incoterms
    4.Payment Term
    5. Account Assignment Grp - Customer
    6. Billing Date
    7. Exchange Rate
    8. Foreign Trade Data
    Now, in Copy-Control Settings between Sales Order and Billing (T. Code: VTFA - Order to bill copying control), Select your combination for Sales Order-->Invoice;
    and Double Click: Item (from Left-Hand side, Dialog Structure) and Double Click on to your Item Category.
    Here, in Filed: VBRK/VBRP, maintain Routine: 003 - Single Invoice.
    Important: Also, if Sales Orders have different Divisions,
    T. Code: VOV8 - Sales Document Type Maintenance
    untick the Box: Item Division.
    T. Code: VOR2 - Common Division
    Assign those Divisions to Common Divisions.
    Best Regards,
    Amit

  • Regarding single deliveries for Multiple sales order

    Currently i m doing multiple sales order into one delivery & one invoice but we r facing that after doing the delivery in VL10A for the same custoemr still one delivery was not in the same delivery also i have confirmed the following criteria also
    1. Delivery due date for the materials( schedule line tab)
    2. Ship to party must be same in all Sales Orders
    3. Shipping point must be same for all of them.
    4. Incoterms should also be same.
    5. Shipping Point should be same.
    6. Confirmed quantity date at schedule line level
    7. Delivery Priority
    Pls help

    Hi,
      is there any routines used in Copy controls from order - delivery .- re-check once.
    as your post, everything seems fine. I didnt see any reason for not creating single delivery.
    is it happening only with this customer or respective ship to's? if yes, something gone wrong in CMR - i.e. complete delivery / order combination etcc., ( just an assumption)
    Regards,
    ReazuddinMD

  • Single Del. for multiple sales order:

    Dear all,
    i wanna do a single del. for multiple sales order ,So plz provide me the exact flow to do it.
    Also provide what conditions are required to do the same.
    Waiting for ur reply,
    Thanks & Regards,
    Olet malla..

    Hi,
    It is very much possible in SAP.
    Goto the T code VL10A and enter your Shipping point and Execute.
    This will give you the list of Sales orders which are ready for delivery.
    Select the sales orders for which you want to create single delivery and click on "Back Ground".
    This will create the delivery. PGI you can do it VL02N.
    Requirement for combining Sales order are: Ship to party should be same, Route should be same, Delivery date should be same, Shipping point should be same, plant should be same.
    Regards,
    Mullairaja

Maybe you are looking for