Two billing documents against single invoice No

Hi experts,
Please suggest the ways/possibility to post two vendor bills against the same Invoice no. generated by system.
like an Invoice has been posted with No 123 agaisnt a service entry X and now it is required to pass one more bil for the entery sheet within the same Invoice document 123
Thanks & regards,
Pawan

Hi,
The only way of posting an additional invoice is by subsequent debit.In the transaction MIRO select the document as subsequent invoice.Rest of the procedure is normal.
Only difference to the original invoice with the subsequent invoice is that system will not propose the quantity and values in the subsequent debit.You can post more than one subsequent debit to a purchase order.
But a subsequent debit can be posted only after the invoice posting.
Regards,
Rambhupal

Similar Messages

  • Three billing docs against single delivery

    Hello Experts,
                   The client want to divide the Bill into three equal parts and send the billing document  to three different bill to party for a single delivery .  The Billing documents for each bill to should be individual and payment receipt also done individually for each of them separately.
    ie. - three billing docs against single delivery and three payment  receipt.
    How can I think on it . Please help me .
    Regard
    kamal

    If you have different bill to parties for a particular delivery, Invoice split should happen automatically as one invoice can have only one bill to party. But if you don't have different bill to parties and still you want to split, then you can get use of a VOFM data transfer routine and get this done. If you provide more details on your requirement, we can help more.
    Nice job.  You posted the exact same thing I already posted 3 days before...

  • How to generate 3 payment due dates& 3 posting against single invoice?

    Hello Experts,
    Kindly provides some inputs on below requirement.
    For example :- In the Utility Bill,
    Consumption months: June, July, August
    Meter Reading taken in August
    Billing Months: September, October, November
    Bill generated in August
    Consumer receives the bill on September month
    Payment Due dates: 12 Sep 2009, 12 Oct 2009 and 12 Nov 2009
    Issues-:
    1.How to generate three posting against single invoice?
    2.How to generate three payment due dates for above postings in three consecutive months since payment due date logic is incremental in nature here, e.g.
    1st due date = posting date + 15 days
    2nd due date = 1st due date + 30 days
    3rd due date = 2nd due date + 30 days
    Requirement description:-
    The utility generates bill quarterly for domestic consumers. For such consumers, the utility takes reading from the consumers premises after end of consumption period (quarterly ) and generates bill on the 1st billing month (here 1st billing month is September).
    In the bill the utility divides total consumption into three parts (considering each part for each consumption month) and calculates all charge heads separately on each part. It however, consolidates and generates a single bill having three rows, each row showing charge heads of each consumption month and also net and gross amount to be given for each consumption month.
    Moreover, three postings have to be generated in FICA against that single bill. Also, it provides three due dates to the consumer, each date falling in each billing month, to pay the above three net amounts respectively. Dunning and other activities should be triggered if the consumer fails to pay the stipulated amount by corresponding due date.
    Looking forward for valuable suggestions
    Thanks in advance
    Regards,
    Vaseem
    Moderator note - question reposted - OP notified of violation Issue on quarterly bill
    Edited by: William Eastman on Jun 3, 2010 3:25 PM
    Edited by: William Eastman on Jun 3, 2010 5:01 PM

    Hello Experts,
    Kindly provides some inputs on below requirement.
    For example :- In the Utility Bill,
    Consumption months: June, July, August
    Meter Reading taken in August
    Billing Months: September, October, November
    Bill generated in August
    Consumer receives the bill on September month
    Payment Due dates: 12 Sep 2009, 12 Oct 2009 and 12 Nov 2009
    Issues-:
    1.How to generate three posting against single invoice?
    2.How to generate three payment due dates for above postings in three consecutive months since payment due date logic is incremental in nature here, e.g.
    1st due date = posting date + 15 days
    2nd due date = 1st due date + 30 days
    3rd due date = 2nd due date + 30 days
    Requirement description:-
    The utility generates bill quarterly for domestic consumers. For such consumers, the utility takes reading from the consumers premises after end of consumption period (quarterly ) and generates bill on the 1st billing month (here 1st billing month is September).
    In the bill the utility divides total consumption into three parts (considering each part for each consumption month) and calculates all charge heads separately on each part. It however, consolidates and generates a single bill having three rows, each row showing charge heads of each consumption month and also net and gross amount to be given for each consumption month.
    Moreover, three postings have to be generated in FICA against that single bill. Also, it provides three due dates to the consumer, each date falling in each billing month, to pay the above three net amounts respectively. Dunning and other activities should be triggered if the consumer fails to pay the stipulated amount by corresponding due date.
    Looking forward for valuable suggestions
    Thanks in advance
    Regards,
    Vaseem
    Moderator note - question reposted - OP notified of violation Issue on quarterly bill
    Edited by: William Eastman on Jun 3, 2010 3:25 PM
    Edited by: William Eastman on Jun 3, 2010 5:01 PM

  • Userexit for billing documents vs Excise invoice --

    Hi
    i am canceling the billing document (VF11) with reference to excise invoice
    in this case i am using the sap standard program RV60BFZA
    but for some invoice , its triggering , but some invoice , its not triggering
    so i cant use that program
    any other badi / User exit available to control of billing documents Vs Excise invoice
    transction access is VF11

    Hi,
    Use this program SAPMJ1IJ in this program there are 4 includes.
    First try with  MJ1IJF01
    So check with your abaper which exit is working in this include.you can do it by setting break-point.
    Also check other includes MJ1IJTOP  MJ1IJO01  MJ1IJI01
    Thank you,

  • How to Append two  word documents into single  using   java

    How to Append two word documents into single using java
    we tried this but it's not append the one word document to other
    source code:public class AppendTwoWordFiles {
         public static void main(String []arg)throws IOException
              FileInputStream fi=null;
              FileOutputStream fo=null;
              try {
                   System.out.println("Enter the source file name u want to append");
                   BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
                   File f1=new File(br.readLine().toString());
                   System.out.println("Enter the Destination file name ");
                   File f2=new File(br.readLine().toString());
                   fi = new FileInputStream(f1);
                   fo = new FileOutputStream(f2,true);
                   byte b[]=new byte[2];
                   while((fi.read(b))!=-1);
              fo.write(b);
    System.out.println("Successfully append the file");
              } catch (FileNotFoundException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (IOException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              finally{
              fi.close();
              fo.close();
    plz reply me quickly ,,,what can i follow

    Use this code ..
    and give the path of the both file like this.....
    source file ---- C:/workspace/Practice/src/com/moksha/ws/test/practice.text
    destination file ---- C:/workspace/City/src/com/moksha/ws/test/practice1.text
    import java.io.*;
    public class AppendTwoWordFiles {
         public static void main(String[] arg) throws IOException {
              FileInputStream fi = null;
              FileOutputStream fo = null;
              try {
                   System.out.println("Enter the source file name u want to append");
                   BufferedReader br = new BufferedReader(new InputStreamReader(
                             System.in));
                   File f1 = new File(br.readLine().toString());
                   System.out.println("Enter the Destination file name ");
                   File f2 = new File(br.readLine().toString());
                   fi = new FileInputStream(f1);
                   fo = new FileOutputStream(f2, true);
                   byte b[] = new byte[2];
                   int len = 0;
                   while ((len = fi.read(b)) > 0) {
                        fo.write(b, 0, len);
                   System.out.println("Successfully append the file");
              } catch (FileNotFoundException e) {
                   e.printStackTrace();
              } catch (IOException e) {
                   e.printStackTrace();
              } finally {
                   fi.close();
                   fo.close();
    }

  • Two Billing document Billing document

    HI expert,
                     I  have created one sales order.
    Suppose that Sales order number is " XYZ " with 50 quantities. after that i had created one  delivery with 50 quantities. Now i want to create a two billing document.
    One Billing doc wit 20 quantities. and second billing document with 30 quantities.
    How i can create two billing document. i do not want to do manually.
    Please Help Me.
    Regard
    Shashi Singh

    Hi,,
    There is no such Indicator, Just goto VOV7 and maintain the Billing relevance K and create the Order and Delivery.
    Then goto the Transaction code VF01 and enter the Delivery Number and without Pressing Enter Key select the SELECTION LIST in the  MENU BAR and change the Quantity as you require.
    Please check that and revert back.
    thanks,
    santosh

  • Billing document transfer to invoice document by batch

    How can I do in IMG to make billing document transfer to invoice document by batch not automatic
    tks!

    Hi,
    There is a standard t-code VF04, hope can help you!
    Regards
    Tao

  • Automatic clearing of cancelled billing document against original billing

    Hi,
    I have no payment received against the billing created earlier. I get the below error when i create a cancel document (vf11) -
    " The system cannot clear billing documents and cancellation documents because, for example individual item updating is deactivated."
    The two documents (billing and cancelling documents) appear without clearing themselves in AR. How could i make it clear automatically from AR (ie) it should knockoff eachother from AR when i create this cancellation document.
    Can anyone help me please?
    Thanks,
    Sriram

    Thanks for the reply.
    Actually, what I'm expecting here is the system will trigger the automatic clearing of the invoice being cancelled in SD vs the original invoice; without having to perform the clearing via F-32 or F.13.

  • Billing document and Excise invoice document number should be same

    Dear SD gurus
    kindly help me following client requirement
    in order to cash (domestic & Exports)
    and sto (intra and Inter plant to plant) scenarios the billing document number and excise invoices number should trigger  same number
    Example order- delivery- pgi- commercial invoice (VF01) --- billing document no.1234 here it should create automatically excise invoice no 1234
    in J1iin disply it show ref document no( billing document no: 1234.    & excise invoice no 1234

    Dear All,
    As per the standard it is not possible. But some times client says why two different numbers ranges we require same numbers ranges for both billing doc. & Excise invoice.
    Please go through the following link
    http://saptechsolutions.com/pdf/SDDocumentNumberRangeEnhancements.pdf
    Also check with the Abaper with explicit enhancement by maintaining the number range values in Custom table where we go when ever there is no option for(if client is not convincing) but which is not reccomandable but left out with no choice when client is demanding.
    Regards,
    S.Himavanth.

  • Unable to cancel Billing document and vendor invoice at once

    Hi,
        There is a customer invoice got generated through edi by company code 4000 to 8000.The cusotmer is 100100 and the company code to which it belongs is 8000 and simultaneouly a vendor invoice of same amount got generated automatically in company code 8000.The vendor is 200200and it belongs to 4000.
    Now i want to reverse these whole entry. As here in the above, vendor invoice is got generated automatically, like that only we want that when we reverse the billing document, vendor invoice should automatically get reversed.
    Can anybody suggest on this or any procedure to solve this.
    With regards,
    Shree.j

    HI,
        Furthur to this both customer and vendor are inter company related to each other.
    With regards,
    Shree. j

  • Two billing document from same delivery.

    Hi Experts,
    Can any one suggest solution for below scenerio.
    We have created one billig document againest delivery, also do release to accounting.
    Again system is allowing to create billing documet for same delivery with same quantities.
    We have checked all the possible rasons i.e. copy control from del. to billing & sap notes but did't get solution.
    Item category -TAN
    Billing quantity     B
    Pos./neg. quantity   +
    Pricing type         C
    Now Please suggest how to prevent system not to allow duplicate billing documents.
    Thanks in advance.
    Reagrds,
    Dharminder dalal

    Hi,
    As I understand this is happening only with  that particular delivery and I I suspect that the delivery status  is still open and hence it is allowing to raise billing document .If it is correct there is a work around solution.Goto T Code VL_COMPLETE and enter the delivery number and date and execute.
    Then delivery status will be changed to complete and system will not allow to raise another billing document.Also cancel all the other duplicate billing documents.
    If it is happening to all the deliveries then it could be a configuration problem.Follow the advices which are alraedy given and update the forum.
    Regards,
    Phani Prasad.
    Edited by: phani.prasad on Nov 2, 2011 2:39 PM

  • Two billing Planin a single service contract

    Dear All,
    Please suggest how can I assign two billing plan for a service material Monthly and Yearly with different charge head
    Rg
    Ajit

    Hi ajit
    I think you can assign  billing plans at item level and header level only
    for item level you can configure in the item category details
    for header level you can configure in the sales doc type details
    Regards
    Srinath

  • Clear Multiple invoices document against single payment amount frm customer

    Dear Experts,
    There is a requirement in the business process like we file multiple invoices to customer account and he pays the amount in single payment. So what we need here is to clear all the invoice document in customer account against that payment.
    Please tell is there anyway to achieve it at FI level.
    Best Regards
    Arun Rai

    Hi,
    You can clear them by defining clearing rules in OB74 for customer account type D. You should have your customer posting for collection based on a defined criteria based on some assignment number or something else that you will give in OB74..Based on the criteria that you will specify in OB74 system will match the open item invoices against their payment document and clear them accordingly. e.g you give assignment number  ZUONR in OB74 for clearing criteria..It means that all of your invoices should have the same assignment number in Invoices as of the assignment number entered in Collection or payment document. Afterward you can clear customer in F.13 ..
    I hope this will help you.
    Regards
    Edited by: Atif Farooq on Oct 18, 2011 11:38 AM

  • Two vendor payment against single stage

    Hi
    I have assigned different partner function for a stage under PARTNER tab in shipment document.My route is direct it has only one leg or stage .Now i want to make different payment for these two vendors .When I am doing VI01 SAP is calculating cost only against forwarding agent (CR).Only one line item is getting generated in VI01 and which is against forwarding agent.how to calculate service charge against other vendor (e.g. loading supervisory) .
    Regards

    Hi I am done with this .
    We can have multiple vendor against a single stage and can have different service PO and entry sheet against which we will make a payment to vendor (forwarding agent and loading supervisor or any third one). I did it by splitting the stage , created a new load transfer point and assign a vendor to this . At shipment cost two line item will b created against two partner functions.
    Bye for now

  • Scroll two-up documents as single page

    I have Adobe Acrobat 8.1 running in Windows 7 and I would like all of my documents to open as two-up page view but I need them to scroll as single page.  Is there any way to make this a default setting?I dislike viewing a single page at a time just so I can scroll one page at a time.  I want to see two pages while scrolling at the one page setting so that when I scroll I would go from pages 1-2 to pages 3-4, if that's understandable.
    Any help is greatly appreciated.

    Off hand I dont know the answer to your question. But since no one answered your question, here are my 2 cents worth:
    I suggest all your JSP pages have one and only one form tag. Re write your JSP page. Make sure all your variables your submitting have unique names. (no duplicate names). As far as I know, having multiple forms on a JSP page is not normallly done and makes it difficult to alter by another programmer after you leave the company.

Maybe you are looking for

  • Digital Signatures Defaults on Linux/WebSphere/Oracle DB

    I have some things I'm trying to clarify on an install I currently have, and a new install I'm about to do. My current install (ES 8.1), the server doesn't have internet access, so when I certify a PDF using a VeriSign cert, it takes a little longer

  • Can i extend my ap express through a power line extender

    I have an Apple Extreme with an ethernet cable to a Powerline adapter. The other end (in the far bedroom) the powerline adapter is ethernet wired to an Express. Will this extend my wireless network. The reason is this, I was using Facetime in the liv

  • Weird ? Mark in Finder Window

    When I open a folder in the Finder I have a ? mark at the top between the 'perform tasks with the selected item' icon and the 'search' box. How did this happen?

  • 1 table showing data from 2 different weeks ... how?

    Hi I have an aggregated fact table with some very simple columns. Week, Store and Category. Then I have on each row aggregated measures like Items sold, Items sold on Recommended price, Items sold over Recommended price and so on ... 7 simple measure

  • Script accepting large chunks of text from outside

    I have a workflow where I create mask/shape outlines outside AE that will be imported into AE by changing the contents of a mask/shape layer. The workflow will be very frequent - the outside component is some kind of editor (developed by myself) - so