Customer invoice of FI document

Hi Gurus,
How to print invoices posted using fb70 which is customer fi invoice....
Can we use same invoice which is developed for invoices from sd module....
Thanks

spro -> financial accounting -> financial accounting global settings->correspondence
you can use the SAP19 correspondence type (t-code OB77)
and assign a program, for example RFKORD50 (t-code OB78)
or create your z-type and z-program copying from standard and modify if needed.
then in FB70 you'll be able to use Environment-Correspondence

Similar Messages

  • Grouping of customer invoices based on document currency

    Dear All,
    In an intercompany scenario, documents would be posted in different currencies to the inter company customer. For example there are 10 invoices posted to this customer. out of the 10 invoices, 4 invoices are posted in USD, 3 are posted in EUR and 3 are posted in JPY currency. When the payment proposal (F110) is run for these customers, we would expect that all the invoices with same document currency are grouped together against each customer. However, currently it is not behaving the same. Could you please let us know the relevant configuration setting required for this grouping.
    Thanks & Regards
    Vasu

    Hi Deepa,
    Thanks for your reply. Let me claify the issue again. In the given example, when the proposal is run, we would expect one payment document created for all the invoices in USD currency, EUR & JPY separately. Precisely there should be only three payment documents. However, currently the system is not behaving in this manner. We would like to know the configuration required to meet this requirement.
    Thanks & Regards
    Vasu

  • Function module to Print Customer Invoice as PDF and to Printer

    Hi,
    I am writing a program to create a document through FB01. After that I also need to a PRINT the customer invoice for Same document. I need to print Invoice as PDF and Report and print to a Printer. Which Function Modules can I use for these purposes.
    Thanks.
    FS
    Moderator Message: SDN is not here to do your job for you. There are plenty of good developers who work at CSC who can help you out. Thread locked.
    Edited by: Neil Gardiner on Oct 5, 2010 6:38 PM

    Hi,
    please see the given link,It may help you.
    Re: Regarding Print Problem in ALV
    Regards,
    Shamma

  • Customer Invoices with doc types

    Hi All,
    I want to look for customer invoices based on document types. For ex., all invoices posted using doc type XX. How and where can I look for this information. Any transaction with this criteria or using tables?
    Regards,
    Satya

    Hi,
    Here, you have two options i.e.,
    1. You can look at the documents by giving Document Type as selection screen parameter at T.Code: FB03 where you can see all the documents related to that Document Type/s.
    2. You can see Customer documents at T.Code: FBL5N where you select the range of customers in the selection screen.  System would provide the documents related to the Customers.  SAP has provided the option called 'Screen Variant', by using the option you can get the Document Type on the screen.
    I hope you would understand the options.
    All the best.
    Regards
    Chandra Ponukumati

  • Customer invoice doument and cancelled document are showing under openitems

    Dear All,
    I have created customer invoice in VF01 and cancelled the invoice in VF11.
    1.System is showing Invoice document and cancelled document under open items list in FBL5N customer line items.
    A. Is this correct?
            or
    B. When we cancelled the invoice document it should automatically go to cleared items list?
    Kindly provide me what is the correct?
    Thanks & Regards,
    Saisri.

    Hello,
    Once you cancelled the invoice document then you have to clear manually those items in tC: F-32. If you are not cleared then system will show you as open item. After cleared in F-32 then status will change from Open to Close.
    Thanks
    Para

  • Document Splitting - Bank and Customer Invoice

    Hi Experts,
    I have document splitting method 0000000012 and under that Business transaction 1000 i have created a new transaction variant for the client specific requirment
    Further for this combination i have linked item category 04000 for bank accounts with all categories attached to it and 02000 for Customer accounts with revenue attached to it
    Now when i pass a customer invoice for profit center A and when i clear this using F-28 giving profit center B, the system is inheriting Profit Center A form customer invoice and for the bank line item it is split according to the base row which is Customer invoice hence both item reflects profit center A and profit center B which is keyed in totally ignored
    My client requires that the inheritance from customer invoice needs to be ignored and the profit center needs to be updated as per manual entry. hence the entry should like the following
    Bank Dr Profit center B
       To Customer Cr Profit Center B
    Profit Center Clearing A/c Dr Profit Center A
    To Profit Center Clearing A/c Cr Profit Center B
    I have not given automatically split tick in any of the linked categories
    Please advice

    Hi Expert,
    Go to the below Path: IMG -- Financial Accounting (New) -- General Ledger Accounting (New) -- Business Transactions -- Document Splitting Activate Document Splitting
    Here you need to UN-select the Inheritance Check box.
    Inheritance: Indicator is not set ('UN-Select Check box ')
    Lines can be left without account assignments, even if the document splitting characteristics in the document are unique. Exception: You have set the Standard Account Assignment indicator.
    Inheritance: Indicator is set ('Select Check box ')
    Indicator is set('X')
    If the rule-based document splitting produces lines without account assignments, these lines inherit the document splitting characteristics.
    Regards,
    GK
    SAP

  • To display the opening balances of the customer in detail and A/R invoice open status document

    hi every one
    i want a report
    for the below code i am getting only the documents that are posted from 01/04/2014. But for some customers and vendors i have entered opening balances using J/E so in this report i want to display the detailed split of the BP Account Balance which i have entered in J/E
    SELECT
    T0.[CardName][Customer Name],
    T0.[DocNum][Document Number],
    T0.[DocStatus][Status],
    T0.[DocDate][PostingDate],
    T0.[DocDueDate][DueDate],
    T0.[DocTotal][Total],
    t1.SlpName,
    DATEDIFF(DAY, T0.DocDueDate, GETDATE( )) AS 'Days Over Due'
    FROM dbo.OINV T0 INNER JOIN OSLP T1 ON T0.[SlpCode] = T1.[SlpCode]
    WHERE DocStatus = 'o'

    I'm not sure if this will work but you can have a try good luck
    select TOP 100 convert(nvarchar(10),j.refdate,101) [Posting Date] ,(case j.transtype  when 24 then 'RC'  when 13 then 'IN'  when 14 then 'CN'  when 30 then 'JE'  when 321 then 'JR' else j.transtype end) Origin ,convert(nvarchar(max),j.baseref) [Origin No.] ,j.contraAct [Offset Account] ,convert(nvarchar(max),j.LineMemo) [Details] ,OJ.loctotal [C/D(LC)] ,(j.BalDueDeb - j.BalDueCred) [Balance Due(LC)]
    ,'' [C/D(FC)]
    ,'' [Balance Due(FC)]
    ,j.Debit [Debit(LC)]
    ,j.Credit [Credit(LC)]
    FROM jdt1 j
    left join ORCT R on j.baseref = R.docnum
    left join OINV I on j.baseref = I.docnum
    left join ORIN C on j.baseref = C.docnum
    left join OJDT OJ on j.transid = OJ.transid
    where  j.shortname in (Select CardCode FROM OCRD) and i.DocStatus = 'O'
    order by j.transid DESC
    Note: you can removed the TOP 100 to show all the transactions.
    to show only the invoice transaction you may want to add the filtering for J.TransType = 13
    Regards,
    Jim

  • Custom invoice clearing & payment posting

    Hi all,
    we are not recieving BAI2 file for lockbox from bank but we have an external software which will identify SAP customer invoices & corresponding payment.
    Now how can we post this payment as we do nor have BAI2 file. I think that some custom program will be required for cash posting & clearing but I am not sure how to create it.
    Please help..
    Nik

    Usually you can reset or reset & reverse at a time.
    But for some documents there will be forex gain/loss line items which will happen automatically when  a open line document cleared with another document.
    e.g. Line item 1 :- 500 Cr balance in a vendor account.
    When you done the payment to this vendor through F-53, system also analyze the valuation differences if any and post.
    so these are generated automatically
    While reset this document you can't avoid reversing.
    May this is the issue you are also facing.
    you cant do anything for this.

  • Missing Payment Term field on tcode FBR2 Customer Invoice Display

    Hi Experts,
    This is a more detailed explanation on the Payment terms field issue we are encountering since last week.
    I have some problems with their request that they want to show the payment terms field in the transation code FBR2 - Customer Invoice even if the Sales Area Data for Customer is not maintained but Company Code Payment Terms is maintained. I need help on the configuration on how to show the field.
    What I researched is that there are 2 maintainance of Payment Terms Field:one in the Company Code and another in the Sales Area. As I read on some forums, the Payment Terms in Sales Area should be the default when using the SD Process however, the Payment Terms in the Company Code should be the default value when they use FBR2 - Customer Invoice. But thay still cannot see the payment terms field in the Accounting Document they already created.
    I already checked in transaction OBC4 the Reconcilliation Account Group and the Payment Terms field is optional there and even the Posting Key 01, which is also optional.
    Please help me on this. Thank you.

    I did some checking on the past few posting, and I found some posting to the same account also the same tcode FBR2. However, the other one is with posting key 01 - Invoice.
    The Problem occurs when we use FBR2 then the posting key is 09 - which is a special g/l posting for the account. How can I check why the "Payment Terms" field is still not displayed or cannot maintain in this transaction?

  • Difference between invoice and billing document

    Hi ,
    As an ABAPer , I am finding it very difficult to find the difference between the billing and invoice.
    If both are different, then how these documents are configured.
    thanks
    Devi Reddy

    Hi,
    No difference between invoice and billing document.
    But If we want to inform the payable to the customer we use the terminalogy invoice.
    Example Credit meomo, debit memo. etc ...
    As there is no difference , both have the same document types.
    thanks
    Kuntla

  • Error while posting the IDoc for Customer Invoice.

    hi,
    I m posting Customer Invoice through LSMW using IDocs.
    Basic type is FIDCCP02 and message is FIDCC2.
    While posting the Idoc I m getting error as:
    'Document or line item does not exist for invoice reference'.
    I m not getting the error why it is asking for invoice reference because
    in FB01 it is not asking for any reference or anything.
    Even in f-22 also it is not asking for the same.
    In Idoc all the item level values are coming prorperly.
    If anybody worked on such issues then please reply.
    -Thanx.
    -Umesh

    Hi,
    Where you able to resolve your issue, I would appreciate if you can share the solution.
    Thanks

  • Error while posting Idoc for customer invoice.

    hi,
    I m posting Customer Invoice through LSMW using IDocs.
    Basic type is FIDCCP02 and message is FIDCC2.
    While posting the Idoc I m getting error as:
    'Document or line item does not exist for invoice reference'.
    I m not getting the error why it is asking for invoice reference because
    in FB01 it is not asking for any reference or anything.
    In Idoc all the item level values are coming prorperly.
    If anybody worked on such issues then please reply.
    -Thanx.
    -Umesh

    Hi Umesh,
    Try posting customer invoice through TCode - F-22. There it may be asking for reference number. Generally we post customer invoice by F-22 not from FB01.
    If you are getting error you can add reference field in your LSMW it may be mandatory in F-22.
    Ashven

  • How can I create a Commercial Invoice or similar document in SAP ByD?

    How can I create a Commercial Invoice or similar document in SAP ByD?
    Our company has recently implemented ByD, but we can't figure out how to create a commercial invoice for shipping/customs purposes. I know that the German version of ByD allows for "Export Declarations" which is pretty much the same as a commercial invoice, but the U.S. version doesn't have this document/function.
    Any suggestions? I would appreciate any help.
    By the way, a commercial invoice contains:
    1. The shipperu2019s complete information: Contact name, company name, complete address and tax identification number.
       2. The recipientu2019s complete information: Contact name, company name, complete address and phone number.
       3. The buyeru2019s information (the person to whom the goods are sold by the seller) if different from the recipient: Contact name, company name, complete address and phone number.
       4. The shipment tracking number, air waybill number or bar-code label number.
       5. An accurate description of the contents in your shipment that includes the following details:
    What the product is
    What material the product is made of
    What the productu2019s Schedule B or HTS code is
    What the productu2019s intended use is
    What the productu2019s country of manufacture is
    What the productu2019s parts or serial numbers are (if applicable)
    What the productu2019s quantity and unit of measure are
    What the productu2019s value is, per unit and in total
    Thanks,
    Chris

    May I suggest that you ask this question in the customer forums in the Business Center at [http://sme.sap.com|http://sme.sap.com]
    Best regards, Christian

  • Clear Withholding tax data while posting customer invoice

    Gurus,
    I am trying to post Customer invoice document using FB01 transaction.
    If the customer has with holding tax information available in Customer Master the corresponding information is getting posted into invoice document.
    Is there any user exit, enhancement or substitution available to clear this with holding tax data.
    Please do share if any code examples on this issue.
    Appreciate your quick response.
    Thanks,
    Suneel

    Dear AMD008
    were you maintain properly in OB40 MWS (out put tax) relevant GL Account
    Note: are you using NEW GL please conform me
    Regards
    shankar

  • BAPIs fpr T-Codes FV70 and FV-75 for creation of Customer Invoices

    Hi all,
    Can any1 tell me Validation BAPIs for T-Codes FV70 and FV75.
    Please bear the following points
    1. The BAPI should NOT create Parked Customer Invoices, they should just validate that the data to create the customer invoice.
    2. The Transaction are used for CUSTOMER invoices NOt Vendor.
    3. I've searched SDN and I got the follwing BAPIs 
                  a. BAPI_INCOMINGINVOICE_PARK
                  b. MRM_INVOICE_PARK
                  c. MRM_PARKED_INVOICE_ACCDATA
    But they are all for Vendor Invoices and CREATE parking invoices, Both the things I do not want.
    If someone knows the name of the BAPI please forward to me at the earliest.
    Cheers
    Abhishek

    Hi Eric,
    Many thanks, I'll check the BAPI out, meanwhile can u also tell me whether there is a BAPI for creating Parking documents, i.e. BAPIs for T-Codes for FV70 and FV75.
    I've tried to find a lot about this, but they say that BAPIs are there for only posting, not parking the Customer Invoices.
    Cheers
    Abhishek

Maybe you are looking for

  • I have lost my imac bootable disks and have erased my hard drive.

    I wanted to format my hard drive and put a clean install of Tiger on my iMac so that I could sell it, so I went in to disc utility and erased my hard drive. What I thought were my bootable discs were for my macbook pro with Snow Leopard on, and they

  • HT4437 can I download music and photos onto my apple tv?

    Is there a way to download music to the apple TV or can you only stream from the cloud/computer etc? Problems with internet speed means it will take ages to stream anything!

  • Best way to create pop-up menu's

    Hi All, I have been having a heck of a time doing something that i would have assumed to be relatively simple - specifically creating a pup-up menu. My first set of approach was to dynamically create a movie clip on a button rollover, and within that

  • Setting up with Printer Canon MG5550

    Previously I used a Canon MP620 Wireless printer which was suppied with both Windows & MAC disks, no problem. I have just bought a Canon MG5550 printer which came with a Windows CD disk only, although it indicates on the box that it is compatable wit

  • Sub-folders of images under a master folder have disappeared

    The folders are under a master folder, and another sub-folder (at the same level) has remained. I have already processed the files and exported JPGs, which also used to be there but now are not. I have not moved anything or had a crash. I am on a Win