Reporting out of SAP R/3 4.7

My client wants reports in WEBI and dashboards in Xcelsius.
The data source is SAP R/3 4.7
I was wondering if we can report from WEBI.
With Crystal Reports 2008 it is possible and Xcelsius dashboards are also possibe using Live Office. But the major challenge here is Reporting on WEBI using R/3.
Can any one suggest a feasible solution?
Thanks,
Krishanu

Hi,
the first option is to deploy SAP BW in your organization and load/organize your R/3 data into the deployed warehouse. You can then build universes (based on SAP BW queries) and thus use WebI to report on your data.
You can also have a look at the BusinessObjects Rapid Marts. These include Data Integrator mappings which allow you to extract R/3 data into a given relational database DWH scheme. Additionally the package includes universes which allow you to report on the extracted data. Prerequisite is a relational database installation like DB2, Microsoft SQL Server or Oracle.
A generic solution for accessing R/3 data directly using WebI is not available.
Regards,
Stratos

Similar Messages

  • How to add a report into the SAP-SCRIPT .using PERFORM ......ENDPERFORM

    My question is that How to add a report into the SAP-SCRIPT .
    by using PERFORM ......ENDPERFORM
    I don't know how to used it .

    Hi Sandeep,
    Please check this link
    http://help.sap.com/saphelp_40b/helpdata/en/d1/803279454211d189710000e8322d00/content.htm
    http://www.allinterview.com/showanswers/37425.html
    Calling ABAP Subroutines: PERFORM
    You can use the PERFORM command to call an ABAP subroutine (form) from any program, subject to the normal ABAP runtime authorization checking. You can use such calls to subroutines for carrying out calculations, for obtaining data from the database that is needed at display or print time, for formatting data, and so on.
    PERFORM commands, like all control commands, are executed when a document is formatted for display or printing. Communication between a subroutine that you call and the document is by way of symbols whose values are set in the subroutine.
    Syntax in a form window:
    /: PERFORM <form> IN PROGRAM <prog>
    /: USING &INVAR1&
    /: USING &INVAR2&
    /: CHANGING &OUTVAR1&
    /: CHANGING &OUTVAR2&
    /: ENDPERFORM
    INVAR1 and INVAR2 are variable symbols and may be of any of the four SAPscript symbol types.
    OUTVAR1 and OUTVAR2 are local text symbols and must therefore be character strings.
    The ABAP subroutine called via the command line stated above must be defined in the ABAP report prog as follows:
    FORM <form> TABLES IN_TAB STRUCTURE ITCSY
    OUT_TAB STRUCTURE ITCSY.
    ENDFORM.
    The values of the SAPscript symbols passed with /: USING... are now stored in the internal table IN_TAB . Note that the system passes the values as character string to the subroutine, since the field Feld VALUE in structure ITCSY has the domain TDSYMVALUE (CHAR 80). See the example below on how to access the variables.
    The internal table OUT_TAB contains names and values of the CHANGING parameters in the PERFORM statement. These parameters are local text symbols, that is, character fields. See the example below on how to return the variables within the subroutine.
    From within a SAPscript form, a subroutine GET_BARCODE in the ABAP program QCJPERFO is called. Then the simple barcode contained there (u2018First pageu2019, u2018Next pageu2019, u2018Last pageu2019) is printed as local variable symbol.
    Definition in the SAPscript form:
    /: PERFORM GET_BARCODE IN PROGRAM QCJPERFO
    /: USING &PAGE&
    /: USING &NEXTPAGE&
    /: CHANGING &BARCODE&
    /: ENDPERFORM
    / &BARCODE&
    Coding of the calling ABAP program:
    REPORT QCJPERFO.
    FORM GET_BARCODE TABLES IN_PAR STUCTURE ITCSY
    OUT_PAR STRUCTURE ITCSY.
    DATA: PAGNUM LIKE SY-TABIX, "page number
    NEXTPAGE LIKE SY-TABIX. "number of next page
    READ TABLE IN_PAR WITH KEY u2018PAGEu2019.
    CHECK SY-SUBRC = 0.
    PAGNUM = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY u2018NEXTPAGEu2019.
    CHECK SY-SUBRC = 0.
    NEXTPAGE = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY u2018BARCODEu2019.
    CHECK SY-SUBRC = 0.
    IF PAGNUM = 1.
    OUT_PAR-VALUE = u2018|u2019. "First page
    ELSE.
    OUT_PAR-VALUE = u2018||u2019. "Next page
    ENDIF.
    IF NEXTPAGE = 0.
    OUT_PAR-VALUE+2 = u2018Lu2019. "Flag: last page
    ENDIF.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    Best regards,
    raam

  • Add New Column in ALV Report of Standard SAP ME28.

    Hi anybody,
    I want add new column in alv report of standard SAP Program ME28 Screen.
    Add Last PO Price column inside ALV Report ME28 Screen.
    Can u please anybody tell me how to add new column in ME28 Screen.
    Thanks
    S.Muthu.

    Try to find any BADI for the same
    Follow the below steps to find out what all BADI's are called when you press any button in any transaction.
    1) Goto se24 (Display class cl_exithandler)
    2) Double click on the method GET_INSTANCE.
    3) Put a break point at Line no.25 (CASE sy-subrc).
    Now
    4) Execute SAP standard transaction
    5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.
    6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.
    7) This way you will find all the BADIs called on click of any button in any transaction.
    OR
    Also one more option is to copy ME28 and, make modifications to the copied program.

  • Problem to run the Crystal report inside from SAP B1 based on SQL views.

    Hello,
    I have a problem to run my Crystal report inside from SAP B1 which is based on SQL views.And the SQL views are stored in a separate database in SQL server.The error which i am getting is saying the the tablename does not exist.What i need to do in order to sort this problem.
    Great if somebody can help me to sort out this so that i can run my report based on SQL views stored on separate database other than SAP databases inside from SAP B1.
    Edited by: rozenagrawal on Apr 19, 2011 11:51 AM

    Try using a SQL synonym in your company database for the views outside the company database. I don't know if SBO will let you get away with it, but its worth a shot.
    If your company database is MyCompany and you have a view called MyView in Views database, assuming the view belongs to schema dbo, and you want the synonym to belong to dbo schema in your company database, run this:
    Use MyCompany
    go
    create synonym dbo.OutsiderView for
    Views.dbo.MyView
    go
    select * from OutsiderView
    The select statement should return the contents of MyView in the Views database while you are connected to your MyCompany database.
    For more info, see the Books Online for MSSQL on topic synonym.
    You will need to change your CR options to include displaying synonyms along with tables, views, etc. You may also need to grant select to B1 users.
    Edited by: Cindy Lange on Apr 21, 2011 4:00 PM

  • How to make a Roll Out in SAP BW

    Dear Gurus,
    In a few days I'm going to work in a Roll Out of SAP BW and I have never worked in a Roll Out. The idea is that a company should have the same BW than the pater company. I have to ensure and prevent that they will won't have any problem when we add the same BW to the company.
    I would like to know the steps that I should make. Some of the things I think I have to check are: Check that the data sources in R3 extract the information, check they need the same infoobjects than the parent company and if they need new ones. Check that they use the same reports, etc.
    Any information you can add about this? I've been seeking in SCN but I haven't found information about this.
    Many thanks!
    Regards,
    J.

    Hi,
    Below are my suggestions for the rolll out ( new Bi system  development  which will use the existing the ECC system) and it will be  fast too.
    1)Ask your basis system to build a BW system same  like existing  with a different SID.  This will ensure all  your BW  data models will come as like that. They will do an export  and will build the new  system.Depending upon the size and back size strategy  it will take  upto  max 1 week to build a new system.
    2) Now connect all the source systems to this  new BW system.
    3)Replicate and activate the  Datasources which  ever required.
    4) Fill the set up tables in ECC for LO **** pit datasources by deleting the set up tables.
    5) start the init loading for this  datasources. If  it is finance , just trigger the init infopackage.
    6) As delta queue is based    upon a combination of datasource and  source system , your earlier BW system will not have any impact.
    7) You can have   new developments in this  new  system too .
    8) Transport path is most important...  You can use one development and  different quality and productions or multiple development , quality  and productions.
    DBW-->QBW-->PBW
    DEC-->QEC-->PEC
    I suggest first  you can have one development and then different quality and prodcutions. This saves the  development time and also resource cost. Hope this info  is useful
    Regards,
    Rajesh.

  • Is there any possibility for extraction of statutory reports in std sap....

    hi sap gurus,
    good afternooon toall,
    is there any possibility for extraction of statutory reports in std sap r/3 with out any customization
    is there any possibility ?
    for eg:
    the reports which will be given for internal audit purpose.
    like tax, lst,vat reports
    plz let met know
    regards,
    balaji.t
    09990019711

    Dear balaji
    check j1i2
    thanks
    G. Lakshmipathi

  • Standard man hours out of SAP ...help

    i have a   standard reports OUT of COPA ..but i am trying to addd standard man hours onto it. i am not able to find anything.
    kindly help me if you know any cube or DS which has standard man hours?
    here is what i am looking
    u201C Modify the operating report to show the standard man hours out of SAP on the operating report instead of the old standards.u201D
    help is much apreciated

    solved

  • Combine report list for SAP-PP module

    Respected SAP GURU,s
    Can any body give me the combined report list of SAP-PP modules or give some direction to search it.
    SFC route is not required...
    pl reply urgently
    Rewards point will be given.
    VEDANT

    Hi,
    These are the few reports
    1. KanBan Analysis1 Plant          
    Txn Code: MCQ.
    This report gives information of KanBan usage. This can be used only when KanBan Component is used. 
    2 KanBan Analysis 2
    KanBan Board Demand Source Overview 
    Txn Code: 
    PK11
    PK12
    PK13
    PK18
    This report gives information of KanBan usage. This can be used only when KanBan Component is used.
    3 Material Usage Analysis Plant        
    Txn Code:  MCRE
    This report can be used for analyzing the actual material usage against plan in manufacturing process.
    4 Product Cost Analysis Selection Plant        
    Txn Code: MCRI
    This report can be used for finding out planned cost vs. actual cost in the manufacturing process
    5 Missing Parts Info System
    Txn Code: CO24
    Missing Part List Check

  • Crystal Reports Based on SAP Function Module and Transperant Tables

    Hi,
    I need to develop reports based on SAP trasperant tables and to filter the records I require to use one of the function module in SAP.
    I have created parameters in Crystal reports that are required for the function to execute and are included in the where clause of the query. This helped the fuction to get those parameters and execute it.
    The thing is that the fuction works fine with one set of parameters and gives accurate results both in SAP and Crystal Reports.
    But fails for other set of parameters.
    It works fine when we directly execute function in SAP produces a record set. But, when we pass those parameters from Crystal Reports it fetches no data.
    Can anybody tell me the exact procedure to use function module and transperent tables together in Crystal Reports ?
    Thanks in Advance.
    Niwas Joshi

    Hi,
    This is going to be hard to explain, however you need to recognize that the function has input and possibly output (export) parameters.  Crystal Reports is able to work with these parameters.  However it is up to you to figure out how these parameters are used effectively to give you the correct results when joining the function with other data sources such as transparent tables.
    If you're using transparent tables and functions in a Crystal Report, then you need to link these objects in such a way so that a left outer join for example is using the function's output parameters to join to the transparent table equivalent fields.  However if the table is the starting point then the joins from the table should join the Input parameters of your function.
    you can set these joins in the Database menu | Database Expert | Links of Crystal Reports.

  • Recipe Management: Reporting out of rmwb

    Hi Experts,
    what kind of ways do I have to generate reports out of recipe management, without having the EHS Module licensed?
    For example there is the option to generate reports, but as I see the EHS module is neccessary for usage. An other way is the button "output" above the navigation area. But this option is not very good-looking in my eyes. Is there any other way?
    For example I want to execute some reports like "in which formula is substance xy included" or a list over all substances or I want to execute a search over physical and chemical parameters.
    Are these requests provided by standard or is there any other way to provide reports like this? Or do I have to write some reports?
    Thanks for your time,
    Tan

    That you are forwarded to websmp201 is ok.
    Haven't you been asked for a User ID and PW when opening the site?
    When I logon with my C-User (for SAP partners) I see on the left side a menu tree structure with an entry 'Demos'.
    I think it should also be possible to access this page for SAP customers (but I am not quite sure).
    If you open <a href="http://service.sap.com">http://service.sap.com</a> you will find on the lower part a screen the 'How to Sign in'-section. Maybe this helps.
    Regards,
    Andreas

  • Trying to delete a Report Variant in SAP

    I'm trying to delete a Report Variant in SAP, and I receive the
    following Error:
    Variant WF_6DXXJT cannot be deleted/renamed.
    Message no. DB294
    Diagnosis
    You tried to delete variant WF_6DXXJT. However, it is still in use in
    job (job count ).
    How can I find out where this variant is being used at? It could be in
    a scheduled job, but Variant Name is not displayed in SM37.

    hi ,
    check the table VARID ,TVARV which gives all the information about the varients..
    regards,
    venkat.

  • For Delivery Performance what are the standard report available n SAP?

    For Delivery Performance what are the standard report available n SAP?

    hi
    If you wanna know the SD report just go to SAP1 transaction code from easy access( it works only from easy access) and you will find entire reports available in SAP. Then select what is relevant to you. And as you asked any material on reports, so I have some good material on it and will surely send you tonight.
    And Some of the Standard reports in SD are given below check it out for convenient however always better to chek above told transaction code:
    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
    These are all main standard reports as well I am again repeating that it's better to check all reports from above said transaction code.

  • Where to find Crystal Report Formats for SAP B1 8.8 (India Localization) ?

    Hi Experts,
    do anybody knows Where to find Crystal Report Formats for SAP B1 8.8 (India Localization) ?
    For example
    Sales Register
    Purchase Register
    Journal Register
    Sales Analysis - Crystal Report
    Purchase Analysis - Crystal Report
    Check Register - Crystal Report
    Production register
    Pending Sales Order
    Outstanding Receivable
    Outstanding Payable
    BankBook
    CashBook
    General Ledger
    BP Ledger (Customer / Supplier)
    Trial Balance
    Balance Sheet
    Profit & Loss Statment
    Cash Flow statment
    Excise reports
       RG 23 A Part I
       RG 23 A Part II
       RG 23 C Part I
       RG 23 C Part II
       Daily Stock Account
       RG 1
       ER 1
       etc....
    Documets Layout
       Incoming Payment
       Outgoing Payment
       Journal Entry
       Transaction Journal Report - Crystal Report
       Sales Quotation
       Sales Order
       Sales Delivery
       Sales Return
       Sales Invoice (A/R Invoice)
       Purchase Order
       Goods Receipt PO
       Purchase Goods Return
       Purchase Invoice (A/P Invoice)
      Inventory Transfer
      Inventory - Goods Receipt
      Inventory - Goods Issue
    Best Regards,
    Samir Gandhi

    Hi Neetu,
    Do you wish that at all customer site all concern involved in implemtation do the same work ?
    I believe ERP is meant for single entry system, and it should be true for implementation also, why to invest man hours for the same task ?
    I expect it standard reports should be released by SAP, so that speed of implementation improve, we have more nos. of satisfied customers.
    customised reports is all together different and it is understood that it is needed to be developed after study the exact requirement.
    Best Regards,
    Samir Gandhi

  • Reporting tools and SAP BW

    Dear Sirs,
    We have Business Objects BI 4.0 and SAP BW 7.3.
    Actually we are using Web Intelligence and BEx Query to reporting.
    We have not Business Layer (Universe) between BW and BO because BO it's not supported to create universe (unx) on BW. So we create document in WEBI using BEx Query.
    We want to use Xcelsius (Dashboard Design) 2011 and I was thinking that we can use query from universe to connect with BW (new functionality in version 2011). Can we? Or maybe we should to connect to BW using "Connecttion to SAP BW"?
    We want to use Explorer (on iPad and iPhone), but Explorer requires universe (unx).
    Is not possible to create universe (unx, because unv is not supported via Explorer) based on SAP BW, is it true?
    We should we do, when we want to use Explorer with SAP BW?
    Do I understand connection between reporting tools and SAP BW:
    Crystal Reports - can I use cubes or BEx queries
    Xcelsius - using "Connection to SAP BW"
    WEBI - BExqueries or universe (but only UNV - old version).
    Explorer - in my opinion is not possible
    Analysis for OLAP - drirect to cube in SAP BW
    Could you please comment.

    Hi
    With the current version of the BI 4.0 SP2 BI Platform, one cannot create a universe (.UNX format) against BW using the OLAP connection. However you can create a universe (.UNX format) using the Relational connection (see OSS note: 1656905 - How to create UNX universe based on Business Warehourse InfoCubes). One limitation is the use of hierarchies with the relational connection.
    Then you can create the Information spaces based on the universe (.UNX format) that the Explorer can use.
    BO Reporting tools:
    1. Crystal Reports for Enterprise = you can use the OLAP connection (BICS) directly against the BW InfoCubes or Queries, if queries already exist in the BW system then you can leverage these directly (less time spent recreating the entire query in Crystal)
    2. Xcelsius = you can use the BICS or Web Service or Universe to access the data
    3. Web Intelligence = you can use the OLAP Connection (BICS)
    4. Explorer = you can use a universe (.UNX format) via a Relational Connection
    5. Analysis for OLAP = you can use the OLAP connection (BICS) to either a query or InfoCube.
    It is hoped that in Feature Pack 3 which will be released later this year, that missing functionalities will be delivered for BI 4.0.
    Regards
    Derek

  • How to open Crystal Report from the SAP GUI ?

    Hi experts,
        We have developed some reports for our ECC 6.0 system by using Crystal Report 2008 and SAP integration kit , these reports are published to BO edge 3.1 server.  To view the report, our user have to open IE and login Infoview first.
       For convenience, we want to open Crystal report from SAPGUI directly without login BOE, How can we do it? 
    Thanks.

    Hi
    please take a look here
    Crystal Reports
    Regards,
    STratos

Maybe you are looking for