How can we reject a Sales order after first Down payment invoice for Italy?

Hello,
As a legal requirement in Italy the Down paymenty have to be transformed into real invoices, another legal requirement is that an invoice cannot be cancelled it has to reversed by a credit memo.
I would like to know in this context how we can reject a sales order line once a Down payment invoice has been emitted.
When I do enter a reason for rejection in the sales order line I receive the message : V1036: Subsequent documenst exist for item XXX and then V2432 Cancellation not possible. Down payment request already created.
I can create a down payment credit memo in order to cancel the down payment invoice but how can I get rid of my SD requirement in MD04 if I cannot reject the sales order line?

Hello,
have you tried using a recjection code which is not relevant for billing?
Regards,
Uli

Similar Messages

  • US localization. Select 2 Sales orders in one down payment invoice

    US Localization.
    I need to create a Sales Down payemnt invoice selecting 2 sales order but is not possibile to select more than one SO.
    In Other localization I see that it is possible.
    There is some set up or on the US localization it is not possible?
    Thanks

    Hi,
    Is it was happening for one customer or all? Please check SAP note:
    1649125 - LOC_US/CA_Impossible to base a foreign currency down
    payment on multiple orders
    1766588 - LOC_US_CA_System Exchange rate cannot be used in A/R
    Downpayment Invoice
    Thanks & Regards,
    Nagarajan

  • How can I create multiple sales orders with reference to one contract?

    Hello Gurus,
    Can you please how can I create multiple sales orders with reference to one contract?
    thanks!
    Rakesh

    hi
    Lets consider example
    In your contract for line item 1 you have entered qty 100
    You careated sales order with 70 quantity, and now you want to creat another sales order for 30
    For this first you need to check what is your item category in contract (VA42)
    Goto VOV7
    SPRO - IMG  - Sales and distribution - Sales - Sales document item - Define item categories - Go to change mode
    Make the completion rule = B Item is completed after full quantity has been referenced

  • Can we block the sales order after creating ?

    Can we block the sales order after creating ?
    If how to do.
    Thanks
    naresh

    Hi
    Naresh
    If you want to block the sales order then go to
    >Header -- shipping tab
    There u will find the column of delivery block there u put any reason. This way u block the sales order.
    Another way u can give reason for rejectioon this way also u block the order and as and when u want to desp u can remove the reason/block.
    Hope this will help you.
    Thx.

  • How can I create a sales order with reference to a purchase order?

    How can I create a sales order with reference to a purchase order?
    Thanks in advance...

    Hello,
    you can't create a sales order with reference to a purchase order. You can input customer PO nuber in the sales order Purchase Order number filed.
    Prase.

  • How can I convert of Sales order to Purchase order automatically?

    How can I convert of Sales order to Purchase order automatically?
    It is a TPSO (Third party sales order) situation, I am using item category as TAS, it automatically converts Sales order to (PR)Purchase Requisition.
    But can I convert Sales order to (PO)Purchase order? without any manual intervention?

    Hello,
    you can't create a sales order with reference to a purchase order. You can input customer PO nuber in the sales order Purchase Order number filed.
    Prase.

  • How to block a delivery when an A/R Down Payment Invoice is not paid?

    1. Create and add a Sales Order
    2. Create and add an A/R Down Payment Invoice based on the created Sales Order (set DPM % to 50)
    3. Create and add a Delivery based on the created Sales Order
    The delivery is not blocked.
    Is there an easy workaround/alternative to ensure goods are stopped from being delivered when a customer hasn't paid a certain amount upfront?

    Hi Suda,
    Unfortunately my usage of the sql queries is a bit rusty and am not sure if I am doing this correctly.
    Next to that I don't exactly see how it should work (hence my comment being rusty - haven't used this very often). I see that it checks the AR Down Payment Invoice document and lines, but how it checks to which sales order it is connected to stop the delivery.. Plus I always want it to stop any delivery when an AR Down Payment for any percentage hasn't paid in full untill it has been paid/approved by someone to be delivered. If no AR Down Payment has been done, there is no issue.
    Anyway I have copied your query to the Query Generator and saved it.
    I created an approval procedure based on delivery documents and based it on the saved query.
    Added a sales order and created a Down Payment Invoice based on the sales order with 40% that has to be paid upfront. Created a delivery based on the sales order and added the document. I only gotten an internal error (it went so quickly I can't see the actual whole message because I get the created message straight after), but it created the delivery anyway.. (same as you described maybe?)
    I'm missing something obviously, let me know what to do.
    Regards,
    Petronella

  • How do you report Net Balance of A/R Down Payment Invoice?

    We have recently installed SAP B1 Version 8.8 at a new client site.  The client wants to accept A/R down payments from customers, issue invoices and draw the amount of the invoice from the down payment.  I can see the net amount in an open items list report called A/R Down Payments - Not Yet Fully Applied.  I need to report that net amount on each invoice that draws from the down payment.  I would like to create a Crystal Report or update the existing PLD Invoice to show the amount.  Do you know the link between an A/R invoice and the drawn A/R down payment invoice?

    Hi,
    Try this query it also show the corresponding outgoing payment information.
    SELECT
      T0.DocNum,
      T0.DocDueDate,
      T0.CardName,
      T1.Dscription,
      T0.DocTotal,
      T2.BaseAbs,
      T2.DrawnSum + T3.DiscSum AS DrawnSum,
      T3.DocDate,
      T3.DocEntry,
      T6.DocNum as DocCheck,
      T5.DocDueDate as DateCheck,
      T6.CheckNum
    FROM
      dbo.ODPI T0
      INNER JOIN dbo.DPI1 T1 ON (T0.DocEntry = T1.DocEntry)
      LEFT OUTER JOIN dbo.INV9 T2 ON (T1.DocEntry = T2.BaseAbs)
      LEFT OUTER JOIN dbo.OINV T3 ON (T2.DocEntry = T3.DocEntry)
      LEFT OUTER JOIN dbo.INV1 T4 ON (T3.DocEntry = T4.DocEntry)
      LEFT OUTER JOIN dbo.OVPM T5 ON (T3.ReceiptNum = T5.DocNum)
      LEFT OUTER JOIN dbo.VPM1 T6 ON (T5.DocNum = T6.DocNum)
    WHERE
      T0.CardName = [%0] AND
      T0.DocDueDate BETWEEN [%1] AND [%2] AND
    (T4.TargetType = -1 OR T4.TargetType IS NULL)  AND T1.TargetType <> 19
    GROUP BY
      T0.DocNum,
      T0.DocDueDate,
      T0.CardName,
      T1.Dscription,
      T0.DocTotal,
      T2.BaseAbs,
      T2.DrawnSum,
      T3.DocDate,
      T3.DocEntry,
      T6.DocNum,
      T5.DocDueDate,
      T6.CheckNum,
      T3.DiscSum
      ORDER BY
       T0.DocNum,
       T3.DocEntry
    This for A/R Downpayment Monitoring.
    regards,
    Clint

  • How can you create a SAles order and send to customer by using IDOC

    how to acknowledge the customer after a sales order is created?

    Just to add to Pauls reply, along with output determination settings, When you would create the partner profile outbound parameters, use the Message type ORDRSP for order acknowledgement.
    regards,
    Advait

  • How can I limite some sales order Not upload to ECC

    Hi expert,
    I dont want some tpes sales order upload from CRM to ECC, but I want it to BW.     
    In my member, there is one note to get it, which mentioned to do some change in the tcode SMOEAC. Any body can give me the notes ID or tell me how to ..?
    BRs
    Liu Bo

    Hi.
    I really don't know if is there any newer note, but as far as I know no big chances occured on this transaction SMOEAC for your propose.
    What I remember you have to do to change the type of replication object, is to delete everything that exists based on it. So first you have to delete the subscription, then you have to delete de publication, and only then you are able to delete and recreate the replication object type.
    I remember that the system verifies if it exists any subscription not only on the client you are working but also on any other clients of your server, so you have to delete the subscription in all clients. There is sap note that describes how to verify it: 650569.
    Regards.

  • How can we read archived sales order data?

    Hi there,
    We need information about sales orders, which are already archived (e.g. VBAK, VBAP).
    How can we read these data from archive?
    Do you know the necessary function modules?
    Thanks a lot for help.

    Hi,
    The main transactions that provide access to sales orders data are the following:
    VA03 Display Sales Order
    ALO1 Document Relationship Browser
    Other:
    KABP Controlling Documents: Plan
    KSB5 Controlling Documents: Actual
    KVBI Sales Documents: Actual Line Items
    Standard Reports:
    S3VBAKAU: Program for sequential reading of archived sales documents
    If at least one of the archiving information structures SAP_DRB_VBAK_01- SAP_DRB_VBAK_02 is active, I suggest to use the transaction ALO1.
    More info can be found at:
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/19/68c149815cfa4997525e0e7d7509bf/content.htm]
    Regards,
    Andrea

  • How can a drop ship sale order make a modifier to the intercompany transaction

    if i want to make a internal modifier for a dropship sale order ,who can i do it

    I am sorry, my mistake. I am pretty new at Labview. I am generating an output signal with labview to a PCB and I am trying to read back its response. The response "outputs" would then be considered inputs from the perspective of Labview. I look at it from the PCB point of view, which has inputs and outputs, and so you can probably see where I was mixed up. I use a sequence to generate the outputs going to the PCB. I want to make sure that the correct pattern of responses is given. In this case, I have Relay A and B. When I activate Input 1, I should then get the activation of Relay A N.O. and Relay B N.C., a pause, and then visa versa. When I activate Input 2, I should receive Relay A N.C. and Relay B N.O., and then again, after a pause, visa versa. Input 3 is only to see Relay A N.O. and Relay B N.C. activated, while Input 4 should see Relay A N.C. and Relay B N.O. activated. I need to somehow "watch" the order of the relay logic activations and make sure they are in order. I am able to access the state of each N.O. and N.C. contact. I attached a sample .vi with other garbage in it that you can ignore. (The programming is done on a laptop with Labview and not the computer that I am using at the moment, and so it is not as easy for me to remove code.) The top of the block diagram shows the sequence that I use to trigger my DAQPAD, which is attached to my PCB.
    I greatly appreciate your help in this matter,
    -Zack

  • How can i enter multiple sales order numbers to set up table

    Hi,
    I need to reload about 8,000 sales orders to the set up table and the SO numbers are very scattered, so i can not enter them as a range. In transaction OLI7BW Sales Document field has no multiple selection option, therefore i have to enter the documents ONE BY ONE! Could you please tell me if there any faster way to enter them?
    regards,
    Tansu Aksu @ CHEP

    Try this link..
    http://www.scmexpertonline.com/downloads/SCM_LSMW_StepsOnWeb.doc
    Regards.
    PS: if it help you, pls assign points.

  • Price Update on Sales Order - After partial delivery and invoice

    Hi all,
    I have created a sales order of 10 tons and a despatch advice of 5 tons and invoice of 5 tons. Now when i want to update price on sales order then system give me "Update" button in grey.
    My client wants to update price on those sales orders too which are partially despatched. Is that possible to do this in SAP? If yes then how?
    Please respond.
    Best Regards,
    AI.

    Hi
    I can suggest 2 alternatives .
    !.Create  a debit memo request sothat prices can be updated along with other details and changes can be tracked.
    For voluminous data  you can create a BAPI for Sales order creation and give related paramenters.
    2. Create a BDC and update pricies for all partially processed sales order in KONV table using KNUMV .
    This a bit tricky ,as there are chances of dumps and sensetive data becomes unstable ,also when you change by updating condition ,you dont get earlier prices and change is not controlled and almost irreversible.
    I suggest first approach ,with better tracking , analysis and less disturbance to standard system.
    Check business object  Sales Order
    Function module : BAPI_SALESORDER_CREATEFROMDAT1
    You can take help of ABAP developer for creating BAPI.
    I hope this helps
    Regards
    Mandar

  • How can I change the language of after effect or creative cloud  for a while .. ( I have bought  a template which expressions are in english  )

    hello, I think that this problem has to resolved if it's not yet..  I am on creative cloud in french and all my APPS are in french 
    I  have bought a template for after effect on video hive and its expressions do not work because they are in english..
    what can I do ? ,
    except changing the language and if it's the only solution How can I do that ?  just for a week .. I don't want to keep an english version
    thanks
    JC

    running After Effects in English, even if you’ve installed and activated it in another language

Maybe you are looking for

  • Give a handmake function to search all files in the directory.

    To scan drive, folder, ets. I maked this, but my function is big bleep, a devil will break his legs here. Need small workable solution. Attachments: function.txt ‏7 KB

  • Tell me what to do now?!?

    i have an iPhone 3g 8gig. now it has a bunch of play lists and songs in it which i was always able to update by just dragging the new songs from the computer to the iphone via itunes (library drag to iphone). i formatted my Computer (windows xp pro).

  • 1z0-599 Oracle weblogic server 12c Essentials

    Hello there, Can some please answer below questions. I found these practice questions over internet and I am so confused with the questions as i don't know correct answers. Please answer them if you know any. Thanks You completed the development of a

  • Resource execution time..

    Hi gurus, version:11.0.6.0 platform:windows 7 we daily execute around 170-180 sql queries to fetch data from different-different servers and also use spool function in each query to save the output onto csv file but it take a lot time while execution

  • Nano Recharging-squeal from headphones/no charge from adaptor

    Hooking a new nano (replacement from ea5lier problem) to imac G5 usb, get a loud screech through headphones, but does appear to recharge. Using firewire with wall charger, does not seem to recharge (the original nano did charge fine) Anyone see same