What tables are important in FICO module to extract to BW server

I recenlty staretd on a new BW project, now in the initial stages.
Can you please provide a list of tables that are mostly used extracting the data . this client has FICO and HR modules.
That will really help, all table name are with number with three zeroes, thats what someone told me.
this is my first project.
Thank you very much for the helpful info.

Hi,
Check out the below thread.You need information regarding tables or datasources as there are some standard datasources available for FI.
You can search the forum lot of information is already available as your question and requirement is pretty generic.
Know the tables for FI and COPA datasources
Hope it helps.
Regards,
AL

Similar Messages

  • Query to determined what tables are associated with parent table

    Hello -
    how would I query the data dictionary to determine what tables are referenced by a parent table via Pk/FK relationship?
    Thanks in advance!
    Mike

    Hi,
    Try this:
    UNDEFINE table
    UNDEFINE owner
    ACCEPT owner CHAR PROMPT 'Enter Owner: '
    ACCEPT table CHAR PROMPT 'Enter Table: '
    COLUMN y new_value sid NOPRINT
    SELECT name||'_'||TO_CHAR(sysdate, 'ddmonyy_hh24miss') y FROM v$database;
    SPOOL constraints_&owner..&table..&sid..txt
    SELECT a.constraint_name constraint, DECODE(a.constraint_type,
                                                                  'C', 'Check',
                                                                  'P', 'Primary Key',
                                                                  'U', 'Unique Key',
                                                                  'R', 'Referential Integrity',
                                                                  'V', 'With Check Option',
                                                                  'O', 'With Read Only') constraint_type,
           a.index_name, a.owner||'.'||a.table_name table, a.status,
           DECODE(a.r_owner||'.'||a.r_constraint_name,'.',null,a.r_owner||'.'||a.r_constraint_name) rconstraint,
           f.constraint_name fconstraint, DECODE(f.owner||'.'||f.table_name,'.',null,f.owner||'.'||f.table_name) ftable,
           f.status fstatus
    FROM dba_constraints a, dba_constraints f
    WHERE a.owner = f.r_owner(+) AND
          a.constraint_name = f.r_constraint_name(+) AND
          a.owner LIKE UPPER('&owner') AND
          a.table_name LIKE UPPER('&tabla')
    ORDER BY 3,1;
    SELECT constraint_name constraint, owner||'.'||table_name||'.'||column_name column, position
    FROM dba_cons_columns
    WHERE owner LIKE UPPER('&owner') AND
          table_name LIKE UPPER('&tabla')
    ORDER BY 1,2;
    SPOOL OFF
    UNDEFINE table
    UNDEFINE owner
    PROMPT
    PROMPT ******************************************** DEPENDENCIES ************************************************************
    PROMPT
    UNDEFINE object
    UNDEFINE owner
    UNDEFINE type
    ACCEPT owner CHAR PROMPT 'Enter Owner: '
    ACCEPT object CHAR PROMPT 'Enter Object: '
    ACCEPT type CHAR PROMPT 'Enter Type: '
    COLUMN REFERENCED_LINK_NAME FORMAT a10
    PROMPT ******************************************** OBJECTS WITH DIRECT REFERENCE
    SELECT owner||'.'||name object, type , referenced_owner||'.'||referenced_name robject, referenced_type rtype,                    dependency_type, referenced_link_name
    FROM dba_dependencies
    WHERE owner LIKE UPPER('&owner') AND
          name LIKE UPPER('&object');
    execute deptree_fill('&type','&owner','&object');
    PROMPT ********************************************  DEPENDENCIES TREE
    SELECT nested_level, schema||'.'||name object, type, seq#
    FROM deptree
    ORDER BY seq#;
    UNDEFINE object
    UNDEFINE owner
    UNDEFINE typeCheers,
    Francisco Munoz Alvarez
    http://www.oraclenz.com

  • Please tell me SQL to see, what tables are locked by which user

    could you please tell me the query
    so that I can see, what tables are locked by which user in a databse
    Thanks

    The only way you can ensure that only one transaction touches the data at any one time is to use a select .. for update nowait statement to select the rows to be updated.
    Try this::
    Where I select the data i want to update in a cursor Incase the row is locked due to any reason it will throw me an error as shown below;
    SQL>DECLARE
      2   cursor c
      3   is
      4   select * from emp
      5   where empno = 10
      6   for update nowait;
      7  BEGIN
      8 
      9   for rec in c
    10    Loop
    11     update emp set ename ='J' where empno = 10;
    12    End Loop;
    13   
    14  DBMS_OUTPUT.PUT_LINE('Record Updated');
    15 
    16  EXCEPTION
    17 
    18  WHEN OTHERS THEN
    19 
    20  DBMS_OUTPUT.PUT_LINE(sqlcode || sqlerrm);
    21 
    22  END ;
    23  /
    -54ORA-00054: resource busy and acquire with NOWAIT specified
    PL/SQL procedure successfully completed.Edited by: J99 on Jul 28, 2009 4:57 PM

  • Find out what tables are lock

    how do i find out what tables are lock and who is locking it? i am using 9i. also, i do i kill he session that is locking a table. thanks

    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:839412906735
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:368418111101

  • How to see what Tables are being used in all reports

    Post Author: tmashley
    CA Forum: Crystal Reports
    Hello,
    How can I see what database tables are used in all my online reports? I have around 1000 reports posted to Enterprise over 6 different datasources. If possible I would like to see the fields within those tables that are being used to.
    I am using Crystal Reports XI Release 2
    Any help is appreciated
    Thanks,
    Tom

    I don't think you can see the databases of the reports unless you download the report onto your pc as a Crystal Report format and then open it under Crystal Reports.
    This way it will open the report within Crystal Reports and will show you the datasource it is coming from.
    I doubt if you can see them online.
    Kind Regards
    Jehanzeb

  • How can I extract data from ST03 - what tables are used?

    Hi
    I currently have to create performance statistics daily for management. To do this I use transaction ST03 and manually copy the previous days Dialog average response time, DB, CPU and GU av. times into a spreadsheet, and also the average dialog response time for 4 key transactions from the transaction profile.
    It would be nice to automate this. I was thinking of writing a basic ABAP program to query the relevant tables to extract this data - does anyone know which tables are used? I'd tried running a trace but it was not clear which tables/rows etc would be required.
    Thanks
    Ross

    Ok, that FM is an old one - for NW2004s (700) need to use 'SWNC_COLLECTOR_GET_AGGREGATES'.
    Have a basic program below. What I'm trying to do is get the average response time for transactions. I can get 'respti' from the table but I think this is the total response time - what field represents average response time?
    Also, the numbers that it's pulling back don't seem to match the numbers in ST03 at all... except 'dcount'. This seems to correct ly show the number of steps... but the other values don't match anything. What am I doing wrong?
    Program below...
    Cheers
    Ross
    REPORT  Z_GETSTATS.
    PARAMETER: day TYPE dats DEFAULT sy-datum.
    DATA: t_usertcode  TYPE swnc_t_aggusertcode,
          wa_usertcode TYPE swncaggusertcode.
    START-OF-SELECTION.
    CALL FUNCTION 'SWNC_COLLECTOR_GET_AGGREGATES'
        EXPORTING
          component     = 'TOTAL'
          periodtype    = 'D'
          periodstrt    = day
        TABLES
          usertcode     = t_usertcode
        EXCEPTIONS
          no_data_found = 1
          OTHERS        = 2.
      LOOP AT t_usertcode INTO wa_usertcode.
             WRITE:/ wa_usertcode-entry_id.
             WRITE:/ wa_usertcode-respti, wa_usertcode-procti, wa_usertcode-cputi, wa_usertcode-dcount, wa_usertcode-ucount.
             WRITE:/ '*************************************'.
      ENDLOOP.

  • What tables are updated?

    I have some software that came bundled with Oracle as the database. When I perform an action in the GUI of the software I need to know what tables in Oracle are getting updated. How can I query Oracle to find that information.? We are using Oracle 9i.
    Thanks.

    You can turn on trace for the session, or for the database (usually a bad idea since it procuces huge amounts of files), or you can use OEM to login and view the top activity and get the statements that are running.
    You can also select directly from the v$ views (v$sqlarea etc).

  • What tables are usede for posting gl entries?

    I need to create an interface that takes SAP GL postings, summarrizes them and then sends them to a legacy system.
    Any idea on how to do this?
    What tables should I be using?
    Any help most appreciated and rewarded with points.
    Thanks!
    Scott

    Rob,
    I have 3 summaries:
    expenses                     company code, gl balance, cost center, acct number
    sales & gross margin    company code, gl balance, control area
    balance sheet               company code, control area, acct number
    Any idea what other tables besides BKPF and BSEG that could be used?
    Thanks.
    Scott

  • In what table are stored information about BOR objects

    Hi Gurus,
    I have to find all objects like classes, function modules, reports and other related to BOR objects. Let say that I have BOR object type. With this information where can I find information about it? In which table this information are storred?
    Best regards
    Marcin Cholewczuk

    Hi ,
    SWOTDI      Definition Interfaces
    TOJTB       Business object repository: Basic data
    u  can use search  help  in SE11 with  table name equal  to  TOJ*

  • What tables are using in backend to store sxmb_moni messgaes

    Hi experts,
    I want to know what are the tables used in back end to display messages in sxmb_moni.
    I am preparing a report to send alerts to few people based on the status of the messages in the pipeline or which are failed and showing as failed messages in   SXMB_MONI
    Thanks in advance

    That is a message may get processed or failed or waiting for the queue.
    you have to check status of the meesage in SXMB_MONI  and if there message is any struck in Queue , showing . otherwise you need to check SMQ1 for Outbound and SMQ2 for inbound Queues
    We can see error messgaes .Is there any way to see other messgaes whether they were processed or stuck up in the queue.
    you have to check SMQ1 for Outbound and SMQ2 for inbound Queues

  • What Tables are updated for BAPI      BAPI_COSTACTPLN_POSTPRIMCOST .

    What are the database tables that are updated when this BAPI returns no error .
    I am trying to use this BAPI to load the data entered in transaction KP26.
    The BAPI gives me no errors and does not update the table COST ( which is updated when the trasaction is saved manually )
    Urgent....

    Thanks for your reply.
    No, I am not looking directly for dependencies which can be very well if any table is read in a PL/SQL code.
    I am strictly (subset of dependecies) looking for PL/SQL that updates tables.
    I was going to search for update string in user_source, but was hoping someone must have figured out a nicer way.
    Thx

  • What table are event details stored apart from SWEQUEUE

    Hi
    SWEQUEUE contains the event details for the events that have not been successfully sent outside, or completed.
    Is there any table where the successful event details are saved, as we need to identify daily which event IDs were successful and which were not. Using SWEQADM is not suitable as there are admin access issues which cannot be worked around.
    Thanks.

    Logging for delivered events is a configurable parameter within transaction SWEQADM, it's a checkbox on the 'Activation' tab with name 'Delete event after delivery' - if it's not checked, your events will be stored after delivery.  If people are having trouble accessing the transaction for whatever reason, you can check the value of the event deletion checkbox in table 'SWEQADM', field 'DEL_EVENT.'
    For information, if your delivered events are being stored, you'll also be able to see them in the 'SWEQUEUE' table - a delivered event will have the field 'DELIVERED' equal to 'X.'
    It's also worth noting that you may have more granular information on event delivery available if the event trace is switched on (transaction 'SWELS').  Event trace information (viewable in transaction 'SWEL') will advise you of when the event was delivered, who caused the event to be delivered, the event key, and whether any workflows resulted from the delivery of the event.  In addition, if there's any check function modules activated for the event, then it'll tell you whether it made it through the check FM, and also whether any other general event delivery errors occured.  It'll also tell you about events that haven't yet being delivered.
    SAP advise not turn it on in production however (only in development and test systems), due to a detriment in performance, so you might find that it's not turned on in production.  Still, that said, I find it an incredibly powerful tool for a quick turnaround on workflow issue resolution - you can turn it on for new environments, and then turn it off when the system becomes stable.
    Thanks,
    JJ

  • What table are Exception Messages in MRP stored?

    The requirement is to develop an error report from an MRP run to capture the exception messages along with the selection groups.
    Ex:Selection Gr 2; Exception Message 15: Reschedules In.
    I am unable to track where exactly the exception messages are stored after an MRP run. Any suggestions as to how to go about this requirement.
    Thank You.

    You can basically get a list of all tables MD06 (colelctive MRP list) uses to fetch data. GO to tran se30. Under Measurement restrictions click new and in Duration/Type tab select none. Go back to se30 main screen enter tran MD06 and execute. It will take you to MD06, run it with any material and go back to se30 screen. At the botton select evaluate and on the evaluation screen select "Data base hit list" or F6. That will give a list of all tables accessed by MD06. SO basically you will know all the tables that were filled during last MRP run.
    Atul

  • What tables are there behind the trees.

    If a tree is set up with a node that has a set of accounts... what set of tables can I query to find that info?

    CMehta wrote:
    I also found that if you want to look up any table at all within Peoplesoft, just search the psrecdefn table.
    select * from PSRECDEFN where RECNAME like '%SOME PART OF THE TABLE NAME%';Just a side note, RECNAME is not the table name, it is the record name. It is slightly different, recname is generally not prefixed by PS whereas the table name in the backend is under PSxxx format.
    And since Peoplesoft schema contains a "copy" of its own metamodel, you can find all the components existing in the backend like tables (record), views, indexes and so on, even tablespaces.
    Nicolas.

  • What permissions are required to see scheduled tasks on a remote server using SCHTASKS /S {server}?

    When I attempt to run SCHTASKS /S {server} some servers return:
    ERROR: Access is denied.
    On servers where I am a member of the local Administrators group I can run this command successfully. There are many servers where it is not appropriate for me to be a local Administrator but would be fine for me to monitor the status of scheduled tasks
    on the server.
    What permissions need to be granted to me to see the scheduled tasks and not be a local administrator? Is this even possible?
    Thanks,
    Matthew

    Hi Matthew,
    Based on my research, any user can schedule a task on the
    local computer and they can view and change the tasks that they scheduled; however, to schedule, view, or change a task on a
    remote computer, we must be member of the Administrators group on the remote computer.
    Therefore,
    What permissions need to be granted to me to see the scheduled tasks and not be a local administrator? Is this even possible
    It is not possible.
    More information for you:
    Schtasks
    http://technet.microsoft.com/en-us/library/cc725744(WS.10).aspx
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Maybe you are looking for