R/3 table data for BI reporting ?

In R/3 i have a table and I want to take the complete table data into SAP BI system for reporting .
In how many ways can I take the data to sap BI system.
In how many ways I can make use of that table for reporting in BI
please suggest me some .

Hi,
You have to create a generic datasource based on this table (if no Bi content is supported)
You can direct assign this (1)table for generic datasource is it a transparent table.
or u can create a (2) view based on this table then use that view for the datasource
or u can create an (3) Infoset query on this table
or u can create a (4)function module to extract its data..
Its more simple to create a generic datasource based on 1 option
Then u have to create a data target(info cube/DSO)  for this generic datasource and create report on this data target.
you can search the forum for generic datasource creation.
Hope this helps and ask if further question are there
Sonal.....
Edited by: Sonal Patel on Aug 14, 2008 12:52 PM

Similar Messages

  • What are all the tables used for this report:

    hi
    what are all the tables used for this report:
    report:
    •     <b>Stock Report, which will give opening balance, receipt, issue, and closing balance for any given Duration for any material.</b>
    thanks in advance

    Tables: MSEG, MKPF, MARD.
    FOR REFERENCE SEE TRANSACTION : MB5B.
    Message was edited by: Sharath kumar R

  • What are the tables used for this Report

    hi all..
    i am a fresher for ABAP. i need the help.
    what r the tables used for this report.
    Reports provide pending order details according to Material wise and customer wise for particular month.
    thanks in advance
    RK.Ashokkumar.
    9994262112.

    hi
    good
    try with these tables,
    MARA
    KNA1
    thanks
    mrutyun^

  • What r all the tables used for this report. please reply

    hai,
    what r all the tables used for this report.
    report :
    <b>
    •     Report to display all finished goods that go out-of-stock. Developed a drill down report for materials details (totals and subtotals for material stock values by material group and material type).</b>
    thanks in advance

    hi Ashok,
    Check this out
    http://www.allsaplinks.com/tables.html
    http://www.sapgenie.com/abap/tables.htm
    Regards,
    Santosh

  • What r the tables used for this report.

    hi all..
    i am a fresher for ABAP. i need the help.
    what r the tables used for this report.
    Reports provide pending order details according to Material wise and customer wise for particular month.
    thanks in advance
    RK.Ashokkumar.

    Hi Ashok,
    this is easy to do.
    Open Two SAP Screen with same user ID.
    Run SQL trace using ST05 transaction.Open ST05 transaction in One and make
    Trace on ,Run the report in another screen.
    Once report run is over.End the trace process and click on display trace in same ST05 transaction.There is a click button on ST05 Transaction screen to start trace
    process,End trace process and Display track process.
    The SQL trace will  give you all the table details which is used in that particular report.
    You have not mentioned about the report name so I have suggested this way.
    regards,nishant
    Please reward if this helps

  • Using SQL queries via ODBC connection to obtain data for a report

    Post Author: adhiann
    CA Forum: General
    Hi All,
    I was trying to run a Crystal Reports report through Clearquest using an SQL query I designed in CQ to give me the data I need, however, from within ClearQuest, I cannot associate an SQL query on a report, so I went directly to Crystal Reports and am using the ODBC connection to the ClearQuest database to run the report. I selected the right tables and fields and am using the same formula that I used on ClearQuest's SQL query to get the data, however, the report doesn't return any data whereas I am getting at least 5 records from Clearquest for the same query.
    Granted there's a difference in the way you create a SQL formula in Crystal, but I don't know if I'm doing it right as I've never had to use CR as a standalone product.
    Is there a way I can directly plug my ClearQuest's SQL query into the CR and run it? I don't know why the results won't return any data for a query that has some results
    Thanks in advance
    nandita

    Post Author: Roscoe1822
    CA Forum: General
    Did you try to add a command through the Database Expert? Also creating a Business View that contains your sql query might help as well.

  • What are all the tables used for this report ? please reply

    hai
    i have practcing reports,
    so any one give me the name of the tables used for the below report
    <b>Created report for invoice details, shipping details and partner function.</b>
    thanks in advance.
    by
    ashok

    Hi Ashok,
      I am sending you the code which will display tables present in SAP with the description and jump to datadic or SE16 by selecting plus F2 or F8.
    REPORT ZZBGS044 MESSAGE-ID Z1 LINE-COUNT 65 LINE-SIZE 132
                    NO STANDARD PAGE HEADING.
    Description: This program list all tables in        regards to the   *
                 selection criteria.                                     *
    Customizing: You need not to make any customizing to use this program*
    Change of    You only have to check that tables, functions and       *
    release:     includes till exists. Bedst just to check and run the   *
                 program.                                                *
    Programmer:  Benny G. Sørensen                                       *
    Date:        July 1995                                               *
    SAP R/3      2.2F                                                    *
    Corrections----
    Date        Userid     Correction                                    *
    xx-xx-xxxx  xxxxxxxxx  xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx *
    TABLES: DD02V                "SAP tables view
    DATA: BEGIN OF DYNTAB OCCURS 2000.
            INCLUDE STRUCTURE BDCDATA.
    DATA: END OF DYNTAB.
    DATA: BEGIN OF TABLES OCCURS 100.
            INCLUDE STRUCTURE DD02V.
    DATA: END OF TABLES.
    DATA: L        TYPE I,
          REPL(30) TYPE C VALUE '????????????????????????????'.
    FIELD-SYMBOLS:
    PARAMETERS:
    TABLE(30) TYPE C,
    TITLE(74) TYPE C LOWER CASE DEFAULT ' ',
    DOWNLOAD(1) TYPE C DEFAULT ' ',
    FILENAME(65) TYPE C DEFAULT 'c:SAPDOC?',
    EXCEPT(30) TYPE C DEFAULT ' '.
    START-OF-SELECTION.
    IF TABLE = ''.
    TABLE = '*' .
    ENDIF.
    IF TITLE = ''.
    TITLE = '*' .
    ENDIF.
    TRANSLATE TABLE USING '*%'.
    TRANSLATE TITLE USING '*%'.
    CONDENSE EXCEPT NO-GAPS.
    L = STRLEN( EXCEPT ).
    IF L > 0.
    ASSIGN REPL(L) TO
    ENDIF.
    SELECT * FROM DD02V INTO TABLES
    WHERE DDLANGUAGE = SY-LANGU
    AND TABNAME LIKE TABLE
    AND DDTEXT LIKE TITLE.
    HIDE DD02V-TABNAME.
    IF EXCEPT NE ''.
    REPLACE EXCEPT LENGTH L WITH
    INTO TABLES-TABNAME.
    ENDIF.
    TRANSLATE TABLE USING '% '.
    CONDENSE TABLE NO-GAPS.
    IF TABLES-TABNAME CS TABLE.
    WRITE:/ TABLES-TABNAME, ' ', TABLES-DDTEXT.
    APPEND TABLES.
    ENDIF.
    ENDSELECT.
    IF DOWNLOAD NE ''.
    CALL FUNCTION 'WS_DOWNLOAD'
    EXPORTING
    FILENAME = FILENAME
    FILETYPE = 'WK1' "ASC, WK1, DBF, DAT, bin
    TABLES
    DATA_TAB = TABLES.
    ENDIF.
    AT LINE-SELECTION.
    SET PARAMETER ID 'DOB' FIELD SY-LISEL(30) .
    CALL TRANSACTION 'SE12' AND SKIP FIRST SCREEN.
    AT PF8.
    CHECK SY-LISEL <>
      SET PARAMETER ID 'DTB' FIELD SY-LISEL(10) .
      REFRESH  DYNTAB.
      PERFORM DYNPRO USING:
         'X'  'SAPMSTAZ'     '0100'        "Selection screen
        ,' '  'DD02V-TABNAME'  SY-LISEL(10).
      CALL TRANSACTION 'SE16' USING DYNTAB MODE 'A' .
    FORM DYNPRO USING DYNBEGIN NAME VALUE.
      IF DYNBEGIN = 'X'.
        CLEAR DYNTAB.
        MOVE :  NAME TO DYNTAB-PROGRAM,
                VALUE TO DYNTAB-DYNPRO,
                DYNBEGIN TO DYNTAB-DYNBEGIN.
        APPEND DYNTAB.
      ELSE.
        CLEAR DYNTAB.
        MOVE:  NAME TO DYNTAB-FNAM,
               VALUE TO DYNTAB-FVAL.
        APPEND DYNTAB.
      ENDIF.
    ENDFORM.
    Regards,
    Azaz Ali.

  • Breakout of data for Webi Report

    I am not sure if this question should go here or in the Universe forum but I will post it here first.  I am using BOBJ Edge XI3.1 with SQL Server 2005 holding my data.
    I have a universe that has 4 tables in it.  The first table is "CSS_Facts" which is a Fact table consisting of aggregate data.  Table two is "TJG_Organization_CSS"  that holds six levels of hierarchy for all clients.  Corporation, System, Facility, Division, Service Line and Department.  Department is the lowest level so there is an "Organization_Key" for every department for every client.  Table three is "TJG_Survey_CSS" which holds all of the survey data for every client.  Every answer for every survey has its own "Survey_Key".  Lastly I have "TJG_Time" which has a "Time_Key" for every day of the year.
    Table "CSS_Facts" has a foreign key for each of the three tables above with the same field name as the key field in each of those tables.  The cardinality for all three of these joins is many to 1 from the "CSS_Facts" table (ex:  many "Survey_Keys" from the Facts table to one key in "TJG_Survey_CSS").  The facts table also has 4 other fields which hold the counts and or computed fields.
    All of this works perfectly for most of what we do.  I can build a WEBI document that has all of the fields that I need.  As an example, I can get a report of all the statements for a given timeframe for a specific survey number for a specific client.  If the survey has 50 statements in it I can get back all of the statements with the counts for all of the possible answers for each statement.  This is expected and what we want.
    Our problem is being able to break this down based upon the answer(s) to one question in the survey.  Let's say statement number 2 in the survey is an age statement that has 5 possible answers.  Answer 1 might be "Less than 18.".  Answer 2 might be "19 to 29.", and so on.  When I filter my query in my Webi to just bring back results for anyone who chose Answer 1 (Less than 18) for this statement I get back pretty much what I expect, that question only with all of the possible answers but a computed total for just answer 1 (less than 18) with all of the other answers getting zeroes.  Again, this is what I expect to get back based on the WHERE clause that is generated but not really what we want.  We want to get back the complete survey in the report, all 50 statements with new count totals per statement based on the answer (Less than 18) from that 1 question.
    Is this possible to do within Webi reports?  If not, can this be done outside of a webi report, but then brought back into the Universe to be consumbed by a Webi report?
    Thanks for any help in advance.

    You can use the following work-around without the need for an SDK solution.
    Display this info in the report in stead of in the pop-up...
    Just create a cell with the info want to show and hide it if there is data,
    (use and alerter to empty it when you have data and hide on empty)
    show it when there is no data fetched.
    Hope this helps,
    Marianne

  • Table Data on Letter Report

    Hello Guys,,
    How are you all ?
    i have a Letter type report, on which i am printing Data with totals in between M_BODY1 AND M_BODY2.
    :M_DATE := SYSDATE;
    :M_REF := 'HRA/SR/ ';
    :M_TO := 'Chief Executive Officer';
    :M_FROM := 'Chairman';
    :M_SUBJECT := 'Loan Summary for ';
    :M_BODY1 := 'The Loan Scheme Committee has reviewed the following Loan applications .....';
    <+table data starts here....+>
    whats happening is when the data rows goes on to 2nd page, then on the 2nd page the top space
    reserved for from M_DATE AND M_BODY1, remains blank. and the remaining rows are printed leaving so many space.
    i want on the 2nd page the data to start print from top.
    The property for all fields from M_DATE and M_BODY1 is set to "+First Page and Enclosing Object+"
    :M_BODY2 := 'I seek your approval on the above for total amount of US$ 316,854.64 as recommended by the Committee of the Loan scheme.';
    :M_PREPARED_NAME := 'R A S';
    :M_PREPARED_DESIG := 'Housing Loan Administrator Secretary';
    :M_APPROVED_NAME1 := 'Y A H';
    :M_APPROVED_DESIG1 := 'Chairman, Loan Committee';
    :M_APPROVED_NAME2 := 'A A. A K';
    :M_APPROVED_DESIG2 := 'Cheif Executive Officer';
    Also, if after printing the data upto M_BODY2, i want all the Fields from M_PREPARED_NAME upto M_APPROVED_DESIG2 to be always printed together. Suppose if on the last page theres only space left
    for M_PREPARED_NAME or M_PREPARED_DESIG, I want all to be printed on the fresh page..
    Kindly help solve this.
    I am using Report 6i, DB oracle10g
    some URL of my problem;
    http://www.flickr.com/photos/41671539@N05/4445208242/
    http://www.flickr.com/photos/41671539@N05/4445208430/
    http://www.flickr.com/photos/41671539@N05/4445208570/

    Hi,
    You need to do somethings with fields and frames.
    1. For the top fields...
    :M_DATE := SYSDATE;
    :M_REF := 'HRA/SR/ ';
    :M_TO := 'Chief Executive Officer';
    :M_FROM := 'Chairman';
    :M_SUBJECT := 'Loan Summary for ';
    create one main frame and in keep all these fields inside that frame and frame printing property keep "FIRST PAGE"
    and "VARIABLE".
    Keep the body1 and body2 as it as...
    for the below fields
    :M_PREPARED_NAME := 'R A S';
    :M_PREPARED_DESIG := 'Housing Loan Administrator Secretary';
    :M_APPROVED_NAME1 := 'Y A H';
    :M_APPROVED_DESIG1 := 'Chairman, Loan Committee';
    :M_APPROVED_NAME2 := 'A A. A K';
    :M_APPROVED_DESIG2 := 'Cheif Executive Officer';
    create one main frame and place all these felds in that frame nad printing property keep "LAST PAGE" and there is one property call "Page Protect" keep this property to YES.
    then it will work...
    Regards
    -Ammad

  • Create or not a new table just for one report

    hi guys,
    I'm working on a java client server application with an oracle db.
    I need to create a new report in my application with requires lots of
    calculation out of a table. I mean I cannot obtain the report just using
    sql query.
    My solution is:
    use an oracle procedure, create a new table, fill it and then use sql to
    get the report data. (that is fastest solution in my opinion)
    My question is:
    is a good choice to create a new table that will be exploit just to create
    a report in the application?Or it's not worth and I should process the data with java without creating a new table?
    thanks in advance!

    Hi,
    >>is a good choice to create a new table that will be exploit just to create
    a report in the application?
    No problem, but in your case create a global temporary table is more appropriate, because many users can generate a report on the same time and you don't need worry about what table data is for what user, or to do something like create some tables with randomizes names like TEMP010304 or TEMP386679 and drop them when the user finish to view the report ...
    http://www.oracle-base.com/articles/8i/TemporaryTables.php
    Cheers

  • Change table data without tabular report

    Hi,
    I am very new the APEX, and PL/SQL for that matter, but hope this is not too newbie.
    I am trying to make a page with a report where I can change table values by ediiting text in report columns. I have tried to use tabular report but since my source pl/sql includes a search etc I am not able to write SQL which is accepted as SQL updatable report.... this is my source which works with search:
    declare
    q varchar(32767);
    begin
    --Search with no text
    if(:p1_report_search IS NULL) then
    q := 'select * from tpd_delivery_detail';
    --Search According to criteria
    else
    q := 'select *
    from tpd_delivery_detail
    where upper(trim(:p1_report_search)) '||:P1_OPERATOR||' upper(trim('||:p1_in||')) ';
    end if;
    return q;
    end;
    So my first question is if it is possible to write this as SQL updatable report, and if how?
    Then I have a process which start when a button is pressed which is:
    declare
    l_colA tpd_delivery_detail.status%TYPE;
    l_colB tpd_delivery_detail.usr_comment%TYPE;
    begin
    for i in 1..apex_application.g_f01.count
    loop
    select status
    , usr_comment
    into l_colA
    , l_colB
    from tpd_delivery_detail
    where id = apex_application.g_f01(i);
    if l_colA != apex_application.g_f12(i) or l_colB != apex_application.g_f13(i) then
    update tpd_delivery_detail
    set status = apex_application.g_f12(i), usr_comment = apex_application.g_f13(i)
    where id = apex_application.g_f01(i);
    end if;
    end loop;
    end;
    In the process I try to to see if any of the two updatable columns are changed and needs updating, and if so update. Here my problem is the apex_application.g_f01(i) which when i is a number refering to the row...cant get the apex_application.g_f01(i) to refer to the data in the report.
    My question is how I can use the apex_application.g_f (suspect you can only use for tabular report) or if there is another easy way to do the updates I want?
    Best regards
    Alex

    Is it common to implement TDMS without scrambling sensitive data? => This depends on the customer situation , if you feel that you have very sensitive data in sender system and do not want to expose this data to users in receiver system , then for sure scrambling is the way else leave it .
    Or to change table auth groups in one system and not in another?=> I do not understand the need of doing this , can you elaborate a bit more .

  • No data for daily report sent from my PC

    Since a clean install of Windows 7 Ultimate on my PC, no data is being sent to the Cisco server from my PC. Previously I was running the RC version of Windows 7 Ultimate on this PC, with the same router and configuration, and no problems in being able to access a full daily report. I was using Outpost Security Suite Pro, which allowed the data to be sent, but am now using the native Windows  firewall, configured to allow NM outward communications.
    I asked Support to assist with configuring the Windows  firewall, but they were unable to assist, as they did not know how to do this- I would have thought that as NM is Windows 7-compatible, this information would have been available to them.
    My netbook is running Windows 7 Ultimate RC, with OUtpost Security Suite Pro, and does send the data for the daily report, when using my home wireless network and the same router, so I suspect that the Windows 7 firewall is causing the problem with the PC.
    Can anyone advise me on the specifics of configuring the Windows 7 firewall to allow NM to send the necessary data so that I can get the daily report?
    Running Network Magic version -5.5..9195.0-Pure. ADSL-2 connection; Netcomm Router NB6Plus4W;PC connection to router wired; PCI Adaptor card; VIPRE Antivirus and Antispware (disabling this made no difference)

    ambergris77 wrote:
    Since a clean install of Windows 7 Ultimate on my PC, no data is being sent to the Cisco server from my PC. Previously I was running the RC version of Windows 7 Ultimate on this PC, with the same router and configuration, and no problems in being able to access a full daily report. I was using Outpost Security Suite Pro, which allowed the data to be sent, but am now using the native Windows  firewall, configured to allow NM outward communications.
    I asked Support to assist with configuring the Windows  firewall, but they were unable to assist, as they did not know how to do this- I would have thought that as NM is Windows 7-compatible, this information would have been available to them.
    My netbook is running Windows 7 Ultimate RC, with OUtpost Security Suite Pro, and does send the data for the daily report, when using my home wireless network and the same router, so I suspect that the Windows 7 firewall is causing the problem with the PC.
    Can anyone advise me on the specifics of configuring the Windows 7 firewall to allow NM to send the necessary data so that I can get the daily report?
    Running Network Magic version -5.5..9195.0-Pure. ADSL-2 connection; Netcomm Router NB6Plus4W;PC connection to router wired; PCI Adaptor card; VIPRE Antivirus and Antispware (disabling this made no difference)
    Hi ambergris77,
    First only one Software can be turned on within the operating system, otherwise you have problems. Also Network Magic needs Full Access, not just Outward Access.
    thecreator - Running Network Magic version -5.5..9195.0-Pure0 on Windows XP Home Edition SP 3
    Running Network Magic version -5.5.9195.0-Pure0 on Wireless Computer with McAfee Personal Firewall Build 11.5.131 Wireless Computer has D-Link DWA-552 connecting to D-Link DIR-655 A3 Router.

  • How to find out the table, data for the IDOCS is pulled from?

    HI
    The ZFPH9999397 VENDOR FEED job runs the RBDMIDOC program with the variant Z9999_397.  This creates IDOCS that are sent out and eventually wind up in IMOS.
    The IDOC Type is CREMAS.
    Can you tell me which table or tables the data for these IDOCS is pulled from?
    Or tell me the procedure to find out the table name.
    Thanks,
    das.
    Edited by: sathish dasari on Dec 10, 2009 11:54 AM

    You can use Transp. Table      TBD62 .
    enter Message Type                      CREMAS
    you will get the list of tables and the fields from which data is pulled based on the change pointers in Transp. Table      BDCP.

  • Error seen in table used for creating report being sent to BW

    we use customised table in creting a delivery report which is then being sent to BW. In <u>order</u> there is only one line item as well as in the <u>delivery</u>.. the item is warehouse managed material that is why in delivery, it reflects there that it picks from several bins/pallets to fulfill the ordered quantity... but when we run the order in a custimised table to create a report for BW.. it has more than 10 line items (only one material) compared to only one line item in <u>order</u>... all the line item in table does not fulfill the ordered quantity but they are in descending order... Is this normal/wrong? Why did it happen?
    please help..
    kind regards,
    Pablito

    please advise if this query is not posted in the correct thread... thanks

  • How to Integrate SAP EP with SAP PI to send data for creating reports in BW

    Hi Gurus
    I am struck with an Object/Interafce Creation in my project. My requirement is to Integrated SAP Enterprise Portal and SAP BW using SAP Pi. I am working on SAP PI7.1. The SAP EP sits on the Oracle Database and it will send some data required for generating some reports in BW.
    My question is how to integrate the above systems by which adapters and which will be the best approach. If we use PI, the major advantage is we can Monitor the flow of the messages .
    Cant the BW System directly talk with the SAP EP System. If there is an approach, can we monitor the message flow with out PI involvement.
    All the above mentoined systems(SAPEP,SAPPI,SAPBW,SAPSRM,SAPABAP) are in the client landscape only.
    Please suggest me the approach.
    Thanking you

    Hi rajshekar
    Thanx for the reply
    In the current project we are having an Interafce which is a B pass sceanrio from MDM to BI; MDM is dat , pi is picking the data by Sender File CC and Posting the Data to BW by using Receiver File CC. this does not involve any developemnt of ESR Objects.
    My current requirement also seems to be the same Pick thhe date from SP Portal and give it to BW for generaiting reports.
    Can i use the SOAP at sender side and File at receiver side with out the involvement of ESR Objects.
    Does the By Pass aprroach work for this aprticular interafce.
    How can we integrate SAP EP with BW withour Pi?
    please share any blogs or forums
    please help
    Thank you
    Edited by: VArjun86 on Jan 4, 2012 10:27 AM

Maybe you are looking for