Down Payment Sales

Dear Gurus,
I have configure the down payment scenario, and in material master assign the item category and gen, item category to 0005, system determine the correct item category at order level, TAO, and also the billing plan related information at sales order header level, but cant hold the outbound delivery to process, and easily go for PGI with no message,
I remember the behavior of system that it will hold the outbound delivery for PGI,
Can any one tell me the specific area that i will check.
I have make no change in the configurtion it automatically change its behavior.
Looking for the gurus response.

Dear Friend,
my query is this that when i create the sales order, where system determine the TAO item category, if i generate delivery PGI with out using mb1b transaction that is assigning or releasing the material against some sale order stock, system allow me the PGI.
I want until user cant release the material with ref to sales order system cant allow the PGI.
Hope now it will understnad to my friend.
Regards,

Similar Messages

  • DRQ: down payments & sales analysis per sales employee

    Our client sells projects which last from 2 to 8 weeks. A down payment invoice is issued before the start of the project and the remaining amount is invoiced upon completion. Sometimes due to the fast pace of the project and the payment terms, the down payment invoice payment has not been received before issuing the final invoice. In SAP Business One this results in a problem as only paid down payment invoices can be drawn from the final invoice (this is by system definition). To make matters worse the only workaround seems to be (correct me if I am wrong) to amend this with manual journal entries. However, sales employee field cannot be activated in a manual journal entry. Hence, the sales analysis report per sales employee does not reflect true sales figures. Our suggestion is to develop the down payment functionality so that it can detect issued down payment invoices when putting the final invoice into the system, to make the whole process run smoothly.

    Hi Ajo,
    the comming version 8.8 includes the functionality which in the following scenario:
    1) Create Sales Order
    2) Create DP Invoice based on Sales Order from point 1
    3) Record payment of the DP Invoice
    4) Create Final Invoice based on Sales order from point 1
    proposing ther DP Invoices created based on the Sales Order from point 1 for the Final Invoice (when the Final Invoice is created).
    User can check and adjust (if necessary) the DP Invoices automatically linked to the Final Invoice.
    Hopefully this would help in your customer business process.
    Best Regards,
    Martin Slavik
    SAP Business One Solution Manager

  • Creation of A/R Down Payment Invoice  based on Sales Order not logical

    When creating a A/R Down Payment Invoice based on a Sales Order you
    have the option to create multible ones. Which by itself could be
    usefull to create one of 50 % for a certain day and decide they need to
    pay another 25 % at a later date.
    But SBO does not track what already have been posted. Therefore you can
    create a sum more then a 100% without warning or blockage.
    Tested this in SBO 2007 A SP:00 PL:00
    Scenario:
    Sales - AR>Sales Order
    Create and post a Sales Order
    Sales - AR>A/R Down Payment Invoice
    Create an A/R Down Payment
    Select the BP and copy the Sales Order
    Set DPM to 40%
    Post the A/R Down Payment
    Sales - AR>A/R Down Payment Invoice
    Create an A/R Down Payment
    Select the BP and copy the Sales Order
    Set DPM to 100%
    Post the A/R Down Payment
    Sales - AR>A/R Down Payment Invoice
    Create an A/R Down Payment
    Select the BP and copy the Sales Order
    Set DPM to 70%
    Post the A/R Down Payment
    Making the total for the Sales Order 210% worth of Down Payment
    Invoices without warning/blocking. I would expected that you would only
    be able to set the rest sum %. For instance first scenario I entered
    60% therefore setting the second Down Payment Invoice to a max of 40%
    Untill you have used up the 100% and you cannot select the Sales Order
    in question..
    If multible users do the same work, SBO doesn't show that it has
    already been done. Same if you forgot you already created it you can
    still create one. Plus sometimes it will happenyou create the Down
    Payment Invoice and not paying attention you create the first one with
    a 100% and later with the intended percentage..

    Hello Petronella,
    you are right that B1 is not checking the total value of DP created from the Sales Order.
    The logic and checking procedure here is only between Sales Order -> Delivery/Invoice.
    DP Invoice is considered as transaction related to document the receipt of the money (parallel to the sales process). Between the moment of basing of DP to Sales Order it is still possibility to adjust Sales Order as there is no posting behind Sales Order.
    The question is what would be a checking  procedure in case that on Sales Order there is based Delivery and DP? What would be the system priority to take into a consideration?
    Regards,
    Martin Slavik
    Regional Solution Manager

  • Trying to create a query that shows Sales Order/Invoice Totals as well as Paid/Outstanding/Available Down Payments

    Currently working on SAP B1 v8.82
    I'm looking to generate a query that will give an overall report for a given customer that shows Sales Order No, Invoice No, Sales Order Total, Invoice Total, Amount Paid on Invoice, Amount Remaining on Invoice, Down Payments Available, Open on Sales Order.
    I'm not sure what the best way to select the columns in bold above.  Invoice Total should be self-explanatory.  Amount Paid should be any down payments or applied payments on the invoice.  The balance due on the invoice (which seems to be T0.DocTotal if I'm not mistaken) should = 'Invoice Total' - 'Amount Paid on Invoice'. In the Down Payments Available column I want the total amount of money on the account or on down payments that aren't tied to a Sales Order.  If a client overpaid in the past for instance and there's a credit on their account, then it should contribute to this sum.  Open on Sales Order should be pretty easy.  I guess it's just the sum of everything that is still open on the Sales Order.  I'm just not sure what the best way to sum all the un-delivered freight, tax, and line items is.  Here's what my query looks like so far.
    SELECT DISTINCT T4.[DocNum] [Sales Order No],
    T0.DocNum [Invoice No],
    T4.DocTotal [Sales Order Total]
    T0.DocTotal [Amount Outstanding],
    FROM OINV T0
    INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN DLN1 T2 ON T1.BaseEntry = T2.DocEntry AND T1.BaseLine = T2.LineNum
    INNER JOIN RDR1 T3 ON T2.BaseEntry = T3.DocEntry AND T2.BaseLine = T3.LineNum
    INNER JOIN ORDR T4 ON T3.DocEntry = T4.DocEntry
    INNER JOIN OSLP T5 ON T4.SlpCode = T5.SlpCode
    WHERE T0.CardName Like '%%[%0]%%'
    GROUP BY T4.DocNum, T0.DocNum, T0.DocTotal, T4.DocTotal
    I tried doing a little searching around for queries similar to what I need, but I could find exactly what I was looking for and I'm very unfamiliar with OJDT, JDT1, and ITR1 tables which I think might be important to finding unapplied payments...

    Thanks.  There's a few problems though.
    1)  It seems that OINV DocTotal != Balance Due.  I'm seeing a number of invoices where there was a balance due, but we applied additional money (either we took another incoming payment and applied it or applied money from the account balance, etc.) and yet it still shows a total.
    2)  It's pulling incoming payments from different customers.  I think this is because the table was joined based on "RCT2 T4 on T4.[DocEntry]  =  T3.[DocNum] and T4.[InvoiceId] = T2.[LineNum]"  In one example I have 2 incoming payments 446 and 614.  Both have the DocEntry 542, but one relates to A/R Invoice 542 (for a different client) while the other relates to Down Payment Invoice 542.  *I was able to fix this by adding WHERE T5.CardCode = [%0]*
    3)  I'm going to work with this a little bit and see if I can alter it to make it work for me.  Basically this query falls a little short on the following:
    -  Doesn't include incoming payments that aren't linked to a down payment invoice.
    -  Does not give the Invoice Total (I'd like to know how much of the SO was invoiced.  DocTotal seems to give me Amount Invoiced - Down Payments.  I'm not sure the best way to get this number.  Maybe I could do the sum of each line * tax + freight)
    -  Does not give the outstanding amount on an invoice.  The ARtotal [DocTotal] column gives me how much was owed when the invoice was created, but it doesn't tell me what is currently owed.
    -  Lastly it may complicate the query too much and could be left off, but it would be nice to see if they have any money from credits or incoming payments that has not been applied.  Perhaps this would be easily accomplished by simply pulling in their account balance.

  • How to change sales order no. in already posted down payment?

    A sales order was created and a down payment was also posted.
    Later sales order was deleted, but the related down payment still exists.
    Subsequently a new sales order was created for the same customer.
    Now customer is asking to clear his current sales order against the older down payment (which has reference of the deleted sales order)
    An error is getting raised while clearing the sales order and down payment in F-32 as the down payment has reference to deleted sales order.
    Now can I change the sales order no. in the down payment document?
    or is there any other way to clear these transactions, current sales order and old down payment?

    Hi,
    Reverse the down payment entry and repost the same with reference to the new sales order number.
    FB08  to reverse accounting document.
    Regards,
    Srinu

  • Down payment issue against sales order

    Hi
    I have some down payment of 100000 and it is to be executed in 20 parts against a sales order. there was some error in the payment processing and while debugging we have posted some five of above payments as cleared although there was no clearing documents aginst these five. Now my balance due is giving incorrect amount. I want to move these wrongly cleared item in uncleared list,  reversal can't be done as this is having other 15 parts.Any best way to reinstate mentioned 05 parts as uncleared.
    Thanks

    But my document is not having any clearing documents and it can't be reset by FBRA,  these documents get posted by  mistake , while debugging from SD side , so any idea on it ?
    Thanks
    Deepak

  • Down Payment to Sales orders from Legacy system

    Hi
    My client has a few downpayments assigned to sales orders in the legacy system. Could someone tell me how to bring these to SAP, and handle them after go live.
    Thanks,
    Ram

    Try to bring this down payments into SAP same way as you would bring  a customer balance, except for that use the Special gl indicator to bring over the balance of down payment.
    Assign points if helpful

  • Down payment Posting to G/L account through sales order (va01)

    Hello Everyone,
    I have a question regarding down payment for a cash type sales order.
    When a cash type sales order is created and customer pays some down payment (at header or item level), on saving the sales order a finance document is generated in the background and gets posted to the GL account. this financial document is not the part of document flow of sales order, but it can be checked using transaction FBL3N.( By selecting posting done on a perticular day)
    VA01 transaction some where calls t-code F-29 for deposit posting. I have to do some manipulation on the accounting document populated in back ground but i am unable to find the exact location from where this deposit posting is done. while creating a cash sales order and saving a deposit, I debugged the transaction VA01 for more than 3 hours but could not track the creation of deposit accounting document.
    Could anyone suggest me a way to find the location from where the deposit posting to accounts is done from sales order? Or any other solution for the stated problem..
    I would appricate the help.
    Thanks is advance!
    Regards,
    Vikash.

    hi
    in the table below your MIRO screen you will see PO Reference on this tab select the item of the PO that you need post for this PO, in the tab G/L account you can make manual post aditional to the PO, also you can in the tab PO reference modify amounts and quantity if you need, but it is not recommended

  • 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 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

  • Debit side Down Payment Chain Link to Sales Order

    Hi,
    I have activated EA-FIN for capturing customer retention amount. Durin creation of debit side down payment chain system asks for a sales contract number. Once the document is saved system generates the invoice with retention amount on spl GL.
    This invoice is not reflected in the document flow of sales order. Let me know if this can be possible link Debit side Down Payment Chain to sales order?
    Regards,
    Ajay Gupte

    Dear ,
    about my Q2: I want to change Line item number of sales order after posting customer down payment.
    Have you looked Q1 : that sytem did not asked to enter line item number of sales order at the time of posting down payment

  • Customer Down payment clearing during sales order

    Dear all,
    I have create a customer down payment via tcode F-29.
    now, i want to clear this down payment along with sales order.
    ex :
    day 1 : customer pay advance 10
    day 5 : customer buy item with amount 80 (cash sales)
    can we deduce by down payment 10 during invoicing process then receipt 70 only.

    But my document is not having any clearing documents and it can't be reset by FBRA,  these documents get posted by  mistake , while debugging from SD side , so any idea on it ?
    Thanks
    Deepak

  • Issue In Sales Invoice DTW with down payment

    Dear Friends,
    I am trying to add some Sales Invoice with advance payment by DTW.
    Entries of Sales order , Sales Advance Down Payment request & Payment against Advance Down payment request are already done.
    In Invoice master file for DTW I add down payment amount in DpmAmnt.
    Invoice was successfully uploaded but link between down payment & invoice is not generated.
    But link between Invoice and Sales Order is generated.  
    How to link Down Payment Entry to Sales Invoice in DTW?

    Dear Swapnil,
    After seeing your attached image file, can you please rectify the same in your system as I have done it successfully at my end. Please find below screen shot for your reference.
    Please test it and let me know the same for any issue.
    Regards,
    Vinod Memane

  • Down payments u2013 Credit Management, Sales Value FD32.

    Hi,
    We have a problem with the credit management in Down payments. The down payments requests are not decreasing the Sales Value of the client. I mean when I bill a down payment, the sales value of the client in transaction FD32 keep with the same value. I have to bill the next milestone where the down payment is cleared to decrease the sales value of the client.
    Billing Plan
    1º Down payment      200
    2º Final Billing           1000
    Bill the down payment. Sales Value FD32 = 1000. It should be 800?
    Bill the Final Invoice. Sales Value FD32 = 0.
    Are there any way in the customizing to modify this behavior?
    Thank you in advance and best regards.

    Hello Alberto,
    As you mentioned down payment of 200 and final bill of 1000, generally down payment is received at the start of activity. If you have credit limit say 500 and you receive down payment of 200 then system store down payment in separate GL account and when you carry out business, system first consider consuming down payment and then credit limit. So down payment never consider as sales till it get cleared off as it is before start of business as extra security to manage risk
    Same thing happen when you do business with letter of credit
    Hope this will resolve your confusion
    Regards,
    Mukul

  • Down payment with reference to sales order only

    We are posting Customer Down payment w.r.t Sales order number with line item number. How come we enter sales order number only without line item number at the time of down payment.
    Q2- After the down payment posting F-29 , how its possible to change the line item of sales order number?

    Dear ,
    about my Q2: I want to change Line item number of sales order after posting customer down payment.
    Have you looked Q1 : that sytem did not asked to enter line item number of sales order at the time of posting down payment

Maybe you are looking for

  • Setting up wireless network with 2x airport extreme ac

    I've got a business customer with 2 new Airport Extreme 802.11 AC behind a comcast modem. When the first extreme is set up, all is well. When the 2nd Extreme is introduced, Airport Utility asks to automatically wirelessly extend the network, which I

  • When i plug in ipod, computer freezes

    when i plug in my ipod, it charges but i cant use my mouse or type, does anyone else have this problem or know how to fix it? HP pavilion   Windows XP  

  • Google docs server address. WebDAV download.

    Can documents on Google docs be imported to Numbers? If so, can someone help me with the server address. I have tried several URL's but receive an error each time attempting to import through the WebDAV utility. Thanks.

  • Best way to query sap tables

    hi everyone. i am new to data services, so here we go. we are using an sql2005 server for our end data repository. i am trying to create a temp table of sap po data. i have split the queries up so that query 1 is 2 sap tables, query 2 pulls in anothe

  • Is it necessary to have a full learning in Swing

    hi, everybody, do you i am thinking about spending times to learn Java Swing, but my friend said it was waste of time, Java won't be widely used to develop desktop applications. He suggested me to spend my time on JSP and XML . what do you think ???