Tcode/report for sales invoices list

Hi,
anybody tell me what is the tcode/report for list of invoices in a specific period. ( i tried vf05 but in that payer/material is mandatory i need total list for a particular period.
regards,
Lakshmi

Hi,
Did you have a look at Transaction VF31 ?
VF31 -> Output from Billing.
maybe you can get the required invoice information here.
Kind Regards
Edited by: Raymond Friston on Jul 17, 2008 9:02 AM

Similar Messages

  • Report for sales invoices listing

    Hi,
    Please advise whatu2019s the T-code to generate the following reports which are required by auditor?
    -          List of sales for the financial year by invoice number
    -          List of purchases for the financial year by invoice number
    Thanks
    rama krishna

    Hi rama,
    Use transaction Code SART/SRET.
    Revert for further Clarification
    Regards
    Amit Gupta

  • Standard report for sales history.

    hi,
        i need a standard report for sales history(all sales order ) for my company code. in va05 transaction it shows only for sales area. give the tcode .
    regards
    muthuraman.d

    Hi,
    There is no standard report for sales order list on the basis of company code.u have to develop it.
    OR
    Create report with SAP Qury
    OR
    u can us VA05N tcode >>> Speciefy sales organization from - to (all sales organizations from one company code).
    Kapil

  • A query report of sales invoices

    Hello everyone
    I need help with writing a query report of sales invoices with items of the item code, last buy price, sale price, customer's name ..
    But the report will not be true unless it will show credits invoices' total of sold items.
    I'd be happy for help in this report ..
    Thank you!

    Hi Meital,
    Try this,
    SELECT *
    FROM(
    SELECT T0.[DocNum], T0.CardCode AS 'Customer Code',
    T0.CardName AS 'Customer Name', T1.[ItemCode] AS 'Item Code',
    T1.[Dscription] AS 'Item Description', T1.[Quantity] AS 'Sales Qty',
    T2.[LastPurPrc] AS 'Last Buy Price', T1.[LineTotal]
    FROM OINV T0 
    INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry
    LEFT JOIN OITM T2 ON T1.ItemCode = T2.ItemCode
    UNION ALL
    SELECT T0.[DocNum], T0.CardCode AS 'Customer Code',
    T0.CardName AS 'Customer Name', T1.[ItemCode] AS 'Item Code',
    T1.[Dscription] AS 'Item Description', T1.[Quantity] AS 'Sales Qty',
    T2.[LastPurPrc] AS 'Last Buy Price', T1.[LineTotal]
    FROM ORIN T0 
    INNER JOIN RIN1 T1 ON T0.DocEntry = T1.DocEntry
    LEFT JOIN OITM T2 ON T1.ItemCode = T2.ItemCode)MM
    Regards,
    Madhan.

  • Aging report for Open Invoice

    Hi All,
    I need to develop an Aging report for open invoice, there is no indication for open invoice or close invoice since we are using customise DS and DS from third party system. only one key flag we have is clearing date. so kindly let me know how to write the logic for this requirement.. can I use Customer exit for this? I have an Idea to do like
    first logic is
    *If Clearing date = blank than invoice is = open (by using of this logic we can get all open invoice).
    second logic
    total number of invoice = current date - document date.
    but I do not know how to implement this logic in BEx hnece kinnly advice me whether this logic can be work or suggest with different solution ples..
    Regards,

    hi,
    You can  check few default PO reports wid proper paramater in it
    or
    Can check table EKBE
    or
    Check PO history in the PO doc
    Or
    Check the ME80FN
    Regards
    Priyanka.P

  • Centralised Report for Sales/Purchase

    Hi guys,
    One of my client needs a Centralised report for Sales & Purchase for a particular period .
    Like we are mainting multiple taxcodes  like
    BED,eCess,HeCEss,
    VAT 4,VAT 2,VAT12.5,
    VAT10.3,TAXEXEMPTED,ETC...
    So every month they need to know total sales and purchase value in a single report to be displayed respective of each tax code
    lie
    Taxcode 1 = tax Value1,total value
    Taxcode 2 = tax value 2,total value
    Total Sales value = Sum of all tax values, sum of total values
    Total Purchase value = Sum of all tax values, sum of total values
    And  needs Item Wise Sales For Each customer.
    I tried in system defined Sales and Purchase analysis report but our client needs the above type of report..
    Pls give us some solution for this..
    Regards,
    Vams

    Hi VamSam......
    Try the below query for purchase details alongwith tax amt.....
    SELECT T0.[DocNum], T0.[DocDate], T0.NumAtCard As 'Bill No.', T0.[CardName], T1.[Dscription], T1.[Quantity], T1.Price As 'Rate', T1.[LineTotal] As 'Value', T0.[DocTotal] As 'Total Value', (ISNULL((SELECT SUM(T2.QUANTITY) FROM rpc1 T2 WHERE T2.DocEntry=T0.DocEntry),0)) RetQTY, (ISNULL((SELECT SUM(T2.LineTotal) FROM RPC1 T2 WHERE T2.DocEntry=T0.DocEntry),0)) RetValue, (isnull((SELECT SUM((case when upper(t4.STACode) like 'BED%' then T4.TaxSum else 0 end))
          FROM PCH4 T4 WHERE T4.DocEntry=T0.DocEntry ),0)) ExciseDuty,
         (isnull((SELECT SUM((case when upper(t4.STACode) like 'eCess%' then T4.TaxSum else 0 end))
          FROM PCH4 T4 WHERE T4.DocEntry=T0.DocEntry ),0)) ECess,
         (isnull((SELECT SUM((case when upper(t4.STACode) like 'hes%' then T4.TaxSum else 0 end))
          FROM PCH4 T4 WHERE T4.DocEntry=T0.DocEntry ),0)) HEdCess, (isnull((SELECT SUM((case when upper(t4.STACode) like 'VAT%' and t4.TaxRate=12.5 then T4.TaxSum else 0 end))
    FROM pch4 T4 WHERE T4.DocEntry=T0.DocEntry ),0)) As 'VAT12.5',
    (isnull((SELECT SUM((case when upper(t4.STACode) like 'VAT%' and t4.TaxRate=4 then T4.TaxSum else 0 end))
    FROM pch4 T4 WHERE T4.DocEntry=T0.DocEntry ),0))VAT4, (isnull((SELECT SUM((case when upper(t4.STACode) like 'VAT%' and t4.TaxRate=2 then T4.TaxSum else 0 end))
    FROM pch4 T4 WHERE T4.DocEntry=T0.DocEntry ),0))VAT2, (isnull((SELECT SUM((case when upper(t4.STACode) like 'CST%' and t4.TaxRate=2 then T4.TaxSum else 0 end))
    FROM pch4 T4 WHERE T4.DocEntry=T0.DocEntry ),0)) As 'CST2',
    (isnull((SELECT SUM((case when upper(t4.STACode) like 'CST%' and t4.TaxRate=4 then T4.TaxSum else 0 end))
    FROM pch4 T4 WHERE T4.DocEntry=T0.DocEntry ),0)) As 'CST4', T2.TransCat As 'Form No.'  FROM OPCH T0  INNER JOIN PCH1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN PCH12 T2 ON T0.DocEntry = T2.DocEntry WHERE (T0.[DocDate]>='[%0]' and T0.[DocDate]<='[%1]')
    Regards,
    Rahul

  • Report for Partial Invoice and pendinf Invoices

    Hi all,
    We need a report for Partial Invoices /Pending Invoices done w.r.t. Purchase Orders with PO document type as one of the selection option.
    We have tried ME80FN, please suggest if there is any other report available.
    thanks,
    Prashant Rathore

    hi,
    check ME2N or ME2M with proper selection paramter value...
    and get results...
    or
    check PO history EKBE table...
    Regards
    Priyanka.P

  • How to create a daily report for sales order

    hi
    how to create a daily report for sales order. what fields it must consists of. what are the tables it need?

    Hi
    You have to use the sales order tables VBAK,VBAP and VBEP
    So keep date field on selection screen
    and treat this date as Order creation data audat field in VBAK.
    based on this fetch the data from VBAK and VBAP  with the following fields like
    VBELN, KUNNR,NETWR,POSNR, MATNR,ARKTX,KWMENG,WAERS  etc and display in the report
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Report for sales target & Production target

    Report for sales target & Production target which should include the following fields
    Sales Target
    Revised Sales Target
    Production Target
    Revised Production Target
    Action Need to be taken

    Hi
          If you are using sales and operation planning in make to stock scenario its simple . As You input target sale plan and target production plan for whole one year (MC84) . So this data can be pulled out from the tables .
    For Action Need to be taken and revision you may need to have new table .
    Neal

  • NAV 2013 R2; How to run a customized report (206 sales invoice) in the classic client

    Hello, in preparing a newly installed NAV 2013 R2, I'm questioning the following:
    In the Development Environment I have customized report 206 Sales - Invoice in the Design menu View Layout with the space of the logo (by Microsoft SQL Server Report Builder) and
    finally saved and compiled.
    When I do run it connects to the server of what I call the classic client or the real NAV 2013 R2 and I can select a posted sales invoice to show the new layout and the result is
    fine as customized as I wanted.
    When I later ordinary print one of the posted sales invoices this customized logo layout doesn't appear on the print. I print in PDF and paper. When I make a next new sales invoice
    this new layout is not in use either.
    Another thing is run print started from the Development Environment is called Sales - Invoice in the header and not just Invoice that it the name when printing when invoicing and
    printing of posted documents.
    Additionally this form of Sales - Invoice shows our company details and good information as web, e-mail, bank account and bank name that is well demanded on a perfect invoice.
    How to get these informations out normally?
    Is the classic client having a wrong report as sales invoice?
    How to run a customized report (206 sales invoice) in the classic client NAV 2013 R2?
    It is like the customized report (206 sales invoice) is not in use yet in the classic client.
    All you wise people out there are welcomed to help me now
    Best regards
    Carsten

    Try on Dynamics Community forum: https://community.dynamics.com/nav/f/34.aspx

  • Smart form Driver Prog For Printing Invoice Lists

    Hi Sap Gurus,
    I am using the standard Sap drver prog RLB_invoice which is used for all invoices(ie Invoice,credit,debit,cancellation).Now,plz can anayone let me know the driver pgm used for printing invoice list smartform.
    will the RLB_INVOICE serve my purpose or is there any other Prog.
    Thanks in advance.
    Points will be rewarded for successfull answers

    Hi,
    For Invoice
    Form name = LB_BIL_INVOICE
    Driver Program = RLB_INVOICE
    Regards
    Edited by: K.P.N on Jan 9, 2008 2:53 PM

  • How go generate Popularity Trends report for a custom list in SharePoint 2013

    Hi, 
    I want to generate  Popularity Trends report for a custom list in SharePoint 2013, is it possible?
    Thanks
    khadar pasha

    According to
    this link you should be able to access this option from the Items tab. for this to work, the Analytics Processing Component needs to be running.
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • UDF MANDATORY FOR SALES INVOICE

    Hi ,
    We have created a UDF (Type Date)
    U_Payment ,
    I want to restrict user to add Sales Invoice Without entering the Date in UDF.
    Please Help.
    Thanks,
    Anitha

    Hi Anitha,
    I am assuming that UDF is U_Payment:
    Please use this SP:
    ---Payment Mandatory for Sales Invoice--
    if @object_type='13' and (@transaction_type='A' or @transaction_type='U')
    begin
    if exists(select docentry from OINV where (U_Payment is null or U_Payment='') and docentry=@list_of_cols_val_tab_del)
    begin
    select @error=1, @error_message='Payment Date is Must'
    end
    end
    This Code will also Restrict user to update existing Sales Invoice.
    Hope This Help.
    Regards,
    Sudhir Sharma

  • Posting Key for Sales Invoice

    Hi,
    I have a problm in creation of Sales Invoice
    While creating Sales Invoice instead of Customer A/c getting debit & Sales Revenue getting credit the Sales Revenue Account is getting Debited & also getting credited. In accounting document the posting key are 40 Sales Revenue & 50 Sales Revenue instead of 01 for Customer & 50 for Sales Revenue.
    Can I know where exactly I am wrong & where are the settingsd for posting key for Sales Invoice.
    Thanks in advance.
    Regards
    Bala

    look at  t code VKOA.
    This is where the account determination is calculated from, if you are creating the document from SD.
    Make sure there is only a single entry against the item you expect to see.
    Award points if useful.

  • Enjoy transactions for sales invoice

    Hello SAP Gurus,
    Do we have any Enjoy Transaction Codes for Sales Invoice as we have for Purchase Invoice like FB65 and FB60?
    Please help me out on this.
    Satish

    There is FB70 & FB75 - but these are Credits - the opposite of FB65 & FB60.
    If you are talking about Sales Orders (VA01) then No.

Maybe you are looking for

  • How to change users' initial page based on a condition

    I'm using SSO on my application, and have two types of users who will be logging on - I want one set (admins) to go straight to one page, and the other set (users) to go to a another page after logging in. These two sets of users are stored in the da

  • Lenovo G560 overheating. Need tips on fan speed control

    When I am watching movies on my G560 laptop, the area to the left of my touchpad is getting very hot and the laptop is shutting down at times. When I bought my laptop I used to hear fan noise, but I have noticed recently that I do not hear the fan an

  • How can I get rid of  'Vidx'  adverts on MacBook Air?

    Vidx has been everywhere in literally any page whenever I use safari. They popped out annoying ads and direct me to their own webpage when I clicked some other safe links. My internet has been slowed down because of Vidx. I couldn't find any solution

  • 2 sql statements in one trigger?

    Greetings, I am working with the Oracle 10g Database. While creating several triggers I am encountering quite some problems. In fact, I want to do 2 steps in one trigger. Is that possible? e.g: Before Update on table for each row begin Update table s

  • Drag and Drop Technique

    When I try to move a file by drag and drop to a folder location outside my window, I cannot do it. When I reach the bottom of the window, the display of files does not scroll any further. Now I drop into the lowest location, scroll up, find it, redep