Creation of Reports in SD

Hi,
Based on client requirement, I would like to know how do we create reports which is very customised for eg : A report that talks about the list of sales orders for the quarter July - Sep that also shows the customers with the highest number of orders who have always maintained the credit limit consistently well.
I would like to know the complete path or T-code and also in detail as to  how to go about in terms of creating the report customised to the above requirement.
I would also like to know the standard t-code or path to create standard reports (list of orders, list od deliveries,list of TO,list of QT etcc) in SD
Rgds
Milan

Hi,
please see these are the reports avilable in sap.
Standard SAP SD Reports
Reports in Sales and Distribution modules (LIS-SIS):
Sales summary - VC/2
Display Customer Hierarchy - VDH2
Display Condition record report - V/I6
Pricing Report - V/LD
Create Net Price List - V_NL
List customer material info - VD59
List of sales order - VA05
List of Billing documents - VF05
Inquiries list - VA15
Quotation List - VA25
Incomplete Sales orders - V.02
Backorders - V.15
Outbound Delivery Monitor - VL06o
Incomplete delivery - V_UC
Customer Returns-Analysis - MC+A
Customer Analysis- Sales - MC+E
Customer Analysis- Cr. Memo - MC+I
Deliveries-Due list - VL04
Billing due list - VF04
Incomplete Billing documents - MCV9
Customer Analysis-Basic List - MCTA
Material Analysis(SIS) - MCTC
Sales org analysis - MCTE
Sales org analysis-Invoiced sales - MC+2
Material Analysis-Incoming orders - MC(E
General- List of Outbound deliveries - VL06f
Material Returns-Analysis - MC+M
Material Analysis- Invoiced Sales - MC+Q
Variant configuration Analysis - MC(B
Sales org analysis-Incoming orders - MC(I
Sales org analysis-Returns - MC+Y
Sales office Analysis- Invoiced Sales - MC-E
Sales office Analysis- Returns - MC-A
Shipping point Analysis - MC(U
Shipping point Analysis-Returns - MC-O
Blocked orders - V.14
Order Within time period - SD01
Duplicate Sales orders in period - SDD1
Display Delivery Changes - VL22                                       
Regards,
venkataswamy.y

Similar Messages

  • Diff b/w creation of Report in Shared folder and in My folder

    Dear All,
    May i know what's the diff b/w creation of Report in Shared folder and in My folder.
    Is there any features changes.
    Regards..

    Hi,
    you can add shared folders to roles and so give users assigned to this role the permission to use the reports in that folder. Reports and folders in My Folders are not sharable.
    Regards
    Rainer

  • Creation of Report+Form pages

    HI all,
    In [Building an application using APEX OBE|http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/devdays2012/apexp1_lab/apexp1_lab.html] when create the app, creates pages too, and one of them (well, 2) is a Report+Form.
    I tried to search this in my actual application created. But I only found, Form, and Report, but not both.
    There are some way to automatize the creation of this 2 pages, like Application Wizard does?
    Regards.

    GiuseppeL wrote:
    There are some way to automatize the creation of this 2 pages, like Application Wizard does?Yes. From the application home page click Create Page > Form > Form on a Table with Report, then follow the wizard.

  • Creation of reports in OBIEE

    Hi,
    I am new to BI.
    I installed OBIEE in linux.
    Can anybody please explain the brief procedure of crating tables and reports in bi dashboard.
    It's urgent.
    Thanks & Regards,
    Kavitha

    Hi,
    I installed admin tool of bi for windows and trying to create rpd file for linux there.
    I created a datasource by following the doc,
    http://oraclebi.soundvoid.net/2008/10/open-a-linux-hosted-repository-in-online-mode/
    but, it displayed only sample sales in the database list at the end of datasource creation.
    Actually, in my linux server, I have created a database named test, I want to create an rpd to connect to that database
    but, when I selected new from admin tool, it is asking to provide a name for rpd file and not asking any connectivity details, just showing three layers, in physical window, I selected new database, it asked for database nanme and datasource definition. I just gave name as test and definition as Oracle 10g XE, after that copied
    this rpd to repository folder in linu bi, changed NQSConfig.INI and instanceconfig.xml fiels and restared bi server, but didn't find the database in the bi answers window. I think the procedure to create rpd file is wrong.
    Can you please provide the steps how to create an rpd file to use in linux.
    Thanks,
    Kavitha

  • Dear experts help needed in creation of report in hr

    Please check the below code.
    There is one Transaction code PA20 from these i need the fields in my report.
    I tried writing the report but the fields are from structure so please help in creating the report.
    I am a beginner so i donno how to find the below fields are coming from which table.
    when i do F1 on the fields in PA20 i found the fields but they are from structure.
    type-POOLS: SLIS.
    TYPES : BEGIN OF TY_P0001,
            PERNR TYPE PERNR_D,      "Personnel Number
            BEGDA TYPE BEGDA,        "Start Date
            BUKRS TYPE BUKRS,        "Company Code
            ENAME TYPE EMNAM,        "Formatted Name of Employee or Applicant
            END OF TY_P0001.
    TYPES : BEGIN OF TY_P0016,
            PERNR TYPE PERNR_D,      "Personnel Number
            PRBZT TYPE PRBZT,        "Probationary Period
            CTTYP TYPE CTTYP,        "Contract Type
            END OF TY_P0016.
    TYPES: BEGIN OF TY_P9210,
             PERNR TYPE PERNR_D,
            ZTICKET_AMT TYPE ZTICKET_AMT,  "Ticket Amount
            END OF TY_P9210.
    TYPES : BEGIN OF TY_OUTPUT,
             PERNR TYPE PERNR_D,      "Personnel Number
             BEGDA TYPE BEGDA,        "Start Date
             BUKRS TYPE BUKRS,        "Company Code
             ENAME TYPE EMNAM,        "Formatted Name of Employee or Applicant
             PRBZT TYPE PRBZT,        "Probationary Period
             CTTYP TYPE CTTYP,        "Contract Type
             ZTICKET_AMT TYPE ZTICKET_AMT,  "Ticket Amount
            END OF TY_OUTPUT.
    DATA:  T_P0001 TYPE TY_P0001 OCCURS 1,
           W_P0001 TYPE TY_P0001,
           T_P0016 TYPE TY_P0016 OCCURS 1,
           W_P0016 TYPE TY_P0016,
           T_P9210 TYPE TY_P9210 OCCURS 1,
           W_P9210 TYPE TY_P9210,
           T_OUTPUT TYPE TY_OUTPUT OCCURS 1,
           W_OUTPUT TYPE TY_OUTPUT.
        START-OF-SELECTION.
            SELECT PERNR
                   BEGDA
                   BUKRS
                   ENAME FROM P0001 INTO TABLE T_P0001
                   WHERE
                    AND  BUKRS IN S_BUKRS
                    AND  BEGDA < '31032007'.
              SELECT PERNR
                     PRBZT
                     CTTYP
                     FROM P0016 INTO TABLE T_P0016
                     FOR ALL ENTRIES IN T_P0001
                     WHERE PERNR = T_P0001-PERNR
              SELECT PERNR
                     ZTICKET_AMT
                     FROM P920 INTO TABLE T_P920
                     FOR ALL ENTRIES IN T_P920
                     WHERE PERNR = T_P0001-PERNR.

    use logical data base PNP.
    tables: pernr.
    infotypes: 0001, 0016, ....
    start-of-selection.
    get pernr.
    here all tables Pxxxx defined as INFOTYPES are filled for the selected PERNR.

  • Creation of report with the help of report painter

    Dear Experts,
                         I need report painter material, if any body have  pls  farward to me.
    my intension to create controlling report with the help of report painter.
    I am ready to award full points.
    Thanks in advance
    Regards
    avudaiappan
    Moderator - Please read this:
    /thread/931177 [original link is broken]
    Thread locked

    Hello Chinasammy,
    Report Painter allows you to create reports using data from SAP application components, which you can adapt to meet your individual requirements.
    Many of your reporting requirements can already be met by using the standard reports provided by various SAP application components. If these SAP standard reports do not meet your reporting needs, Report Painter enables you to define your specific reports quickly and easily.
    When executing a Report Painter report, it is displayed by the system in Report Writer format. You thus have access to the same functions as for Report Writer reports defined in the same way, and can combine Report Painter and Report Writer reports together in a report group.
    Report Painter uses a graphical report structure, which forms the basis for your report definition and displays the rows and columns as they appear in the final report output.
    To facilitate report definition, you can use many of the standard reporting objects provided by SAP (such as libraries, row/column models, and standard layouts) in your own specific reports. When you define a Report Painter report you can use groups (sets). You can also enter characteristic values directly.
    Advantages of Report Painter include:
    Flexible and simple report definition
    Report definition without using sets
    Direct layout control: The rows and columns are displayed in the report definition as they appear in the final report output, making test runs unnecessary.
    =============================================
    Below mentioned is the process for creating reports using Report Painter as a tool.
    Selecting and maintaining a library for your report: As the transfer structure to Report Painter you use a report table, which is defaulted by SAP and can not be maintained. This table contains characteristics, key figures and predefined columns. In a library, you collect the characteristics, key figures, and predefined columns from the report table, which you need for your Report Painter reports.
    When you define a Report Painter report, you assign it to a library. Reports assigned to one library can only use the characteristics, key figures, and predefined columns selected for that library.
    When you create or maintain a library, the Position field determines the sequence in which the characteristics, key figures or (predefined) key figures appear in the Report Painter selection lists when you define a report. This allows you to position the objects that you use regularly in your reports at the beginning of the selection lists. If you do not make an entry in the Position field, you will not be able to use this object in Report Painter reports.
    You can use either the standard SAP libraries for your reports or define your own.
    (ii) Selecting or maintaining a standard layout for your report: Standard layouts determine report layout features and the format of your report data.If the SAP standard layouts do not meet your reporting requirements, you can create a new  standard layout or change an existing one.
    (iii) Defining row and column models: A model is a one-dimensional, predefined reporting structure that you can insert in either the rows or columns of your report.If you often use the same or similar row or column definitions in your reports, it is recommended that you create row or column models.
    You must define the row and/or column models that you want to include in your report definition before you define the report.
    You can also use the standard column models supplied by SAP.
    (iv) Defining the report: Defining a Report Painter report involves the following steps.
    (a) Define the report columns: You define the report columns using the characteristics, key figures, and predefined columns selected for the library that the report uses. Alternatively, you can use a column model for column definition. Column models are predefined column structures which you insert into your entire column definition, instead of defining each individual column.
    (b) Define the report rows: You define the report rows using the characteristics selected for the library selected for the report.
    Alternatively, you can use a row model for your row definition. Row models serve the same purpose as column models, but are used to define a report row.
    Edit and format the report rows and columns in line with your requirements. (For example, you can hide rows or columns, define the column width or define colors for your report rows).
    (iii)Define general data selection criteria for the selection of your report data: Selection criteria are the characteristics used to select data for the entire report. You cannot enter characteristics as data selection criteria if they are already being used in the report rows or columns.
    (iv) Assigning the report to a report group: Once you have defined a report, you must assign it to a report group. A report group can contain one or more reports from the same library. However, reports that share the same data will select data more quickly and improve processing time.
    Hopw this helps you. Please let me know if you need anything more and assign points.
    Rgds
    Manish

  • Creation of report in OBIEE 11g

    Hi
    I need to create a reportin dashboard
    so, i added page for this, but where i can found subject areas in OBIEE 11g so that i can create a report on this page based on that subject area.
    can anyone help me in this.
    Thanks
    Mannu

    Manu,
    For Creating New Reports,
    1.Got to -> New ->Analysis you will have your Presentation Tables under Select Subject Area
    Click on your Subject Area -> you'll get list of tables under the Subject Area
    2. Expand the Folders and click the required column.
    3. Click on Result tab - > you'll get Title and Table View
    4. Format your Table view and Title View
    5. Save your New Report in Shared Folders (You may create your own folder under Shared folder)
    View the Reports on Dashboard.
    1.Got to -> New ->Dashboard -> you will have New Dashboard Window
    Name - Give the name of your Dashboard
    Select Location - /Shared Folders/Standard Dashboard/
    Click Ok -> you'll get Empty Dashboard window.
    2. Edit the Dashboard -> Drag and Drop your Saved reports from Shard Folder under Catalog
    3. Click on Save button (Top Right) and save your dashboard -> click run [Green right Arrow(Top Right)].
    4. Now you'll have your report in your dashboard page.
    Rename Dashboard Page
    Edit the Dashboard - > Click Properties Nedt to X Symbol -> Dashboard Properties
    -> You'll have the Dashboard Properties window -> Select the Dashboard Page -> Rename
    Prompts:
    1.Got to -> New ->Dashboard Prompt-> you will have your Presentation Tables under Select Subject Area
    Click on your Subject Area -> you'll get the Untitle Prompt Window
    -> Click + symbol -> Column Prompts ->you'll get list of tables
    2. Expand the Folders and click the required columns from the list (the Columns should be your Report's table).
    3. Save your New Prompts in Shared Folders.
    Note: The Prompt columns should be Is Promptd in your Reports Filters.
    Thanks,
    Balaa...

  • Help needed regarding creation of report

    Hi all
    I am using apex 4.0 and oracle 10g
    I am creating a classic report and I have columns to display in the report.
    ex col A, Col B and Col C
    I am getting the values of Col A and Col B values from the table. I need to get the value of Col C from a different table based on Col A and Col B.
    Ex:
    Col A Col B Col C()
    5 4 AAA
    1 3 BBB
    7 3 CCC
    Can anyone please let me know how we can do this in apex or write a sql to generate this kind of report
    to get the value for Col C based on col A and B/
    Thanks
    Rik
    Edited by: Rik281 on Aug 4, 2011 7:46 AM
    Edited by: Rik281 on Aug 4, 2011 7:49 AM

    Thomas thanks for the quick reply,
    I am sorry that I have given the question wrong...
    I need to get the value of col C from a different table based on Col A and B Values. can you please let me know about that?

  • Abap Query - Creation of Report

    Hi guys,
    I do have a question to ABAP Query:
    I want to create a report that shows me all current active employees and all of their corresponding positions from Infotype 1.
    I have got it to the part where the report gives me all employees (active and withdrawn).
    The question is:
    How can I show only active employees as of todays date?
    Thanks,
    Sascha

    Thanks for your reply,
    but if I enter date 31.12.9999 and status of active. it gives me for some the latest record and for some two - though I could not find out why?!
    I should say, I am using logical database PNP for this query
    null

  • Creation of Report

    Hi Guys,
    I have to create a report in 7.0. there is only one Characterstic(Materail Group) and two k.figures Volume
    and Values and the quantity based on pack. and need to in each at result output.
    both key figures want for last year, this year plan, and this year Actual with "for the month" and also with
    "year to date".
    and they want to drill down that report for other material group.
    please help me .....
    plese suggest from scrach.
    <removed by moderator>.
    Thanks
    Anil Kumar
    Edited by: Siegfried Szameitat on Mar 1, 2009 1:15 PM

    Hi Expert's,
    I am loading data from PSA to 0IC_C03 through DTP of 2LIS_03_UM. But its showing error "Detailed fiscal year variant not processed".
    I checked in RSA3 and T009B. in both level V3 maintain.
    But still showing same error.
    please help me on that issue. can you send me on my , or 9769497378.
    thanks in advance
    bye
    Anil

  • Creation of reports from Grid control 12c

    Hi All,
    I wish to create some reports from Grid Control and push to mail especially looking for Daily Health Check report like Tablespace,Locks,Alertlog file errors,File systems,Archivelog files sync information in to one report.
    Thanks in advance.

    The native reporting application i.e. Information Publisher does not support such a feature, but in you are using BI Publisher integrated with EM, then BIP allows you to control when to email reports. for example, on completion, on failure, etc ..

  • JasperReports and creation of reports using JasperReports

    Hi all!
    I have a problem with developing Java code for printing reports, by using JasperReports tool.
    I'm trying to create report by using next peace of code (you can found it also on http://ensode.net/jasperreports_intro.html)
    package myReport;
    import java.util.HashMap;
    import net.sf.jasperreports.engine.JREmptyDataSource;
    import net.sf.jasperreports.engine.JRException;
    import net.sf.jasperreports.engine.JasperCompileManager;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    public class Sample
      public static void main(String[] args)
        JasperReport jasperReport;
        JasperPrint jasperPrint;
        try
        jasperReport = JasperCompileManager.compileReport("c:\\report_1.jrxml");
        jasperPrint = JasperFillManager.fillReport(jasperReport, new HashMap(), new JREmptyDataSource());
        //JasperExportManager.exportReportToPdfFile(jasperPrint, "c:\\simple_report.pdf");
        catch (JRException e)
          e.printStackTrace();
    }I'm getting the following error:
    Exception in thread main
    java.lang.NoClassDefFoundError: org.apache.commons.digester.SetNestedPropertiesRule
        at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:202)
        at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:167)
        at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:151)
        at net.sf.jasperreports.engine.JasperCompileManager.compileReport(JasperCompileManager.java:142)
        at myReport.Sample.main(Sample.java:20)BTW, file report_1.jrxml I created using iReport.
    Can somebody help me how to solve this, and to create my report?
    Thank you in advance!
    Message was edited by:
    proNick

    hey
    my problem is same as yours...
    could you please guide me on how u solved it and please also tell me about your jsxml file.. Could u tell me how did u run ur jasper reports as i am a beginner...
    **My java file which i am running in eclipse is**
    package first;
    import java.util.HashMap;
    import net.sf.jasperreports.engine.JREmptyDataSource;
    import net.sf.jasperreports.engine.JRException;
    import net.sf.jasperreports.engine.JasperCompileManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    public class JasperReportsIntro
         public static void main(String[] args)
              System.out.print("hello");
              JasperReport jasperReport;
              JasperPrint jasperPrint;
              try
                   jasperReport = JasperCompileManager.compileReport("c:\\Simple_Report.jrxml");
                   //jasperPrint = JasperFillManager.fillReport(jasperReport, new HashMap(), new JREmptyDataSource());
              catch (JRException e1)
                   e1.printStackTrace();
    and my jrxml file is+
    <?xml version="1.0"?>
    <!DOCTYPE jasperReport
    PUBLIC "-//JasperReports//DTD Report Design//EN"
    "http://jasperreports.sourceforge.net/dtds/jasperreport.dtd">
    <jasperReport name="Simple_Report">
    <detail>
    <band height="20">
    <staticText>
    <reportElement x="180" y="0" width="200" height="20"/>
    <text><![CDATA[Hello World!]]></text>
    </staticText>
    </band>
    </detail>
    </jasperReport>
    thank you for ur help

  • Creation of report using more than 1 table

    Hi,
    We need to create a report pulling profit center data from GLPCT as well as cost center data from COSS & COSP. Is it possible to do this using report painter?
    Thanks & Regards,
    Sangeeta

    Hi,
    That's possible only if you define a special table, which will be extracted from these three. Report tables are defined via GRCT transaction. You will require the help of your BASIS team to do so.
    Regards,
    Eli

  • Creation of report using Report Painter

    Dear All,
    I have a requirement to create a report using Report Painter. I don't have any idea about this.
    Could you pls provide me some study materials or Links to study Materials, it could of great help.
    Regards
    Ranjan

    report painter
    http://help.sap.com/saphelp_47x200/helpdata/en/da/6ada3889432f48e10000000a114084/frameset.htm
    <b>reward points if helpful</b>
    Message was edited by: Rahul Kavuri
    Message was edited by: Rahul Kavuri

  • Creation of reports using JasperReports

    Hi all!
    I have a problem with developing Java code for printing reports, by using JasperReports tool.
    I'm trying to create report by using next peace of code (you can found it also on http://ensode.net/jasperreports_intro.html)
    package myReport;
    import java.util.HashMap;
    import net.sf.jasperreports.engine.JREmptyDataSource;
    import net.sf.jasperreports.engine.JRException;
    import net.sf.jasperreports.engine.JasperCompileManager;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    public class Sample
    public static void main(String[] args)
    JasperReport jasperReport;
    JasperPrint jasperPrint;
    try
    jasperReport = JasperCompileManager.compileReport("c:\\report_1.jrxml");
    jasperPrint = JasperFillManager.fillReport(jasperReport, new HashMap(), new JREmptyDataSource());
    //JasperExportManager.exportReportToPdfFile(jasperPrint, "c:\\simple_report.pdf");
    catch (JRException e)
    e.printStackTrace();
    I'm getting the following error:
    Exception in thread main
    java.lang.NoClassDefFoundError: org.apache.commons.digester.SetNestedPropertiesRule
    at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:202)
    at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:167)
    at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:151)
    at net.sf.jasperreports.engine.JasperCompileManager.compileReport(JasperCompileManager.java:142)
    at myReport.Sample.main(Sample.java:20)
    BTW, file report_1.jrxml I created using iReport.
    Can somebody help me how to solve this, and to create my report? Always, all the time with different examples I got same errors, I guess that I done somethiong wrong on in setup, or classpath, or something like that...
    Thank you in advance!

    dvohra09, first of all, thank you on your reply.
    But I still running round in circles...
    With following code (from JasperReports and Jdeveloper
    package myReport;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.HashMap;
    import java.util.Map;
    import net.sf.jasperreports.engine.JREmptyDataSource;
    import net.sf.jasperreports.engine.JRException;
    import net.sf.jasperreports.engine.JasperCompileManager;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    import net.sf.jasperreports.engine.design.JasperDesign;
    import net.sf.jasperreports.engine.xml.JRXmlLoader;
    public class Sample
    public static void main(String[] args)
    try
    InputStream input=new FileInputStream(new File("c:/jasperreports_demo.xml"));
    JasperDesign design = JRXmlLoader.load(input);
    catch (JRException e)
    ... I'm gettnig following error:
    C:\jdeveloper\jdk\bin\javaw.exe -ojvm -classpath C:\jdeveloper\jdev\mywork\Workspace3\Project1\classes;C:\jdeveloper\jlib\jasperreports-1.2.7.jar;C:\jdeveloper\jakarta-struts\lib\commons-beanutils.jar;C:\jdeveloper\jakarta-struts\lib\commons-collections.jar;C:\jdeveloper\jakarta-struts\lib\commons-digester.jar;C:\jdeveloper\jakarta-struts\lib\commons-logging.jar myReport.Sample
    Exception in thread main
    java.lang.NoClassDefFoundError: org.apache.commons.digester.SetNestedPropertiesRule
         at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:202)
         at myReport.Sample.main(Sample.java:27)
    Process exited with exit code 1.
    Also, as you can see, my path is defined as:
    C:\jdeveloper\jlib\jasperreports-1.2.7.jar;C:\jdeveloper\jakarta-struts\lib\commons-beanutils.jar;C:\jdeveloper\jakarta-struts\lib\commons-collections.jar;C:\jdeveloper\jakarta-struts\lib\commons-digester.jar;C:\jdeveloper\jakarta-struts\lib\commons-logging.jar
    I'm developnig using JDeveloper 10g.
    Can you help more with this, please?
    10000x thanx in advance!

Maybe you are looking for