EBS Tables with columns of the report from the olive TREE relationship.

Hi friends,

We try to find the required Tables of EBS for the tables of the HR module report below. Please find the tables in the query of the OBI.


*************************************

Select sum (case when T91397.) GROUP_ACCOUNT_NUM = "EXP CONT" then case when T91707. OTHER_DOC_AMT is null then 0 T91707 else. OTHER_DOC_AMT * T91707. GLOBAL1_EXCHANGE_RATE end else 0) in c1.
sum (case when T91397.) GROUP_ACCOUNT_NUM = "EMP SUPP" then case when T91707. OTHER_DOC_AMT is null then 0 T91707 else. OTHER_DOC_AMT * T91707. GLOBAL1_EXCHANGE_RATE end else 0) C2.
sum (case when T91397.) GROUP_ACCOUNT_NUM in ('GEN PAY', "MKTG PAY", "R & D on the PAYROLL", "SLS PAYROLL") then the case when T91707. OTHER_DOC_AMT is null then 0 T91707 else. OTHER_DOC_AMT * T91707. GLOBAL1_EXCHANGE_RATE end else 0) as c3.
sum (case when T91397.) GROUP_ACCOUNT_NUM = "EMP BENFT" then case when T91707. OTHER_DOC_AMT is null then 0 T91707 else. OTHER_DOC_AMT * T91707. GLOBAL1_EXCHANGE_RATE end else 0) as c4.
sum (case when T91397.) GROUP_ACCOUNT_NUM = "GEAR" then case when T91707. OTHER_DOC_AMT is null then 0 T91707 else. OTHER_DOC_AMT * T91707. GLOBAL1_EXCHANGE_RATE end else 0) as c5.
sum (case when T91397.) GROUP_ACCOUNT_NUM = 'RECIPES' then case when T91707. OTHER_DOC_AMT is null then 0 T91707 else. OTHER_DOC_AMT * T91707. GLOBAL1_EXCHANGE_RATE end else 0) as c6,.
T66755. PER_NAME_MONTH as c7
Of

W_DAY_D T66755 / * Dim_W_DAY_D_Common * /,.
W_GL_ACCOUNT_D T91397 / * Dim_W_GL_ACCOUNT_D * /,.
W_GL_OTHER_F T91707 / * Fact_W_GL_OTHER_F * /,.
W_STATUS_D T96094 / * Dim_W_STATUS_D_Generic * /,.
W_MCAL_DAY_D T300914 / * Dim_W_MCAL_DAY_D_Ent * /.

where (T66755. ROW_WID = T300914. MCAL_DAY_DT_WID and T66755. PER_NAME_YEAR = '2009' and T91397. ROW_WID = T91707.GL_ACCOUNT_WID and T91707. DOC_STATUS_WID = T96094. ROW_WID and T91707. DELETE_FLG = ' n and T91707. ACCT_PERIOD_END_DT_WID = T300914. ROW_WID and (T96094. W_STATUS_CODE in ("DETACHED", "REVERSED")))
Group of T66755. PER_NAME_MONTH

*********************************************

Select sum (case when T299373.) W_EMPLOYMENT_STAT_CODE = 'A' then T299423. NUMBER 0 if not end) as c1,.
sum (T299423. STAFF) C2.
T100027. PER_NAME_MONTH as c3
Of

W_MONTH_D T100027 / * Dim_W_MONTH_D * /,.
W_EMPLOYMENT_STAT_CAT_D T299373 / * Dim_W_EMPLOYMENT_STAT_CAT_D * /,.
W_WRKFC_BAL_A T299423 / * Fact_Agg_W_WRKFC_BAL_A * /.

where (T100027. ROW_WID = T299423. SNAPSHOT_MONTH_WID and T100027. PER_NAME_YEAR = '2009' and T299373. ROW_WID = T299423. EMPLOYMENT_STAT_CAT_WID and T299423. CAL_MONTH_START_DT < = TO_DATE ('2013-05-01 00:00:00 ',' YYYY-MM-DD HH24:MI:SS')))
Group of T100027. PER_NAME_MONT

*********************************************

Of course, if we can pass through as:

OLIVIER <-Infa PLP <-Infa SILOS <-Infa SDE <-SDE Mappletes <-Source qualifier <-Sql query.

We get the number of tables for table unique obi. But it takes only the required tables for requests above OBI for one report.

Please correct me if wrong and guide me with the best approach...

Thanks in advance... Enjoy your entries here.

Best regards
Raghu Jen7782

Published by: Jen7782 on May 1, 2013 Rambaud 05:30

Published by: Jen7782 on May 1, 2013 Rambaud 05:31

Your approach is correct. This being the fact table, you can't wait for a single table as source.
http://docs.Oracle.com/CD/E10783_01/doc/bi.79/e10742/anyimp_configfinance.htm#CHDJHHDH

Check if help

Thank you

Tags: Business Intelligence

Similar Questions

  • How to create a report (timesheet) with columns as the row values?

    Hello

    I created a table in APEX 4.2.2.00.11...

    CREATE TABLE "TRIAL_3_DETAILS"
      ( "CONSULTANT" VARCHAR2(20),
    "CLIENT" VARCHAR2(10),
    "PROJECT" VARCHAR2(20),
    "BILLABLE" VARCHAR2(10),
    "TASK" VARCHAR2(50),
    "DATE_" DATE,
    "EFFORT" NUMBER
      )
    /

     

    now, I want to create a report "Time Sheets" where the date values are columns in the weekly timesheet with other columns like customer name, project name, etc...

    also, I want the value of the estimated effort to the title of the column date of...

    Task

    Customer

    Project

    Bill (Y/N)

    < date >

    < date >

    < date >

    < date >

    < date >

    < date >

    < date >

    Hours

    < Job description >

    < empty >

    < project >

    < empty >

    < Estimated effort >

    < Estimated effort >

    < Job description >

    < empty >

    < project >

    < empty >

    < Estimated effort >.

    < Estimated effort >

    < Job description >

    < empty >

    < project >

    < empty >

    < Estimated effort >

    < Estimated effort >

    < Job description >

    < empty >

    < project >

    < empty >

    < Estimated effort >

    < Estimated effort >

    < Job description >

    < empty >

    < project >

    < empty >

    < Estimated effort >

    < Estimated effort >

    Is it possible to create this type of report?

    Syed

    MikeKutz wrote:

    Use TO_CHAR() to 'calculate' the day of the week.  Then, use this value.

    1. WITH e
    2. (
    3. SELECT consultant, client, project
    4. the task, effort
    5. TO_CHAR(date_,'Day') day_of_week
    6. billable
    7. OF trial_3_details
    8. -WHERE date_ between ____ and ____
    9. )
    10. SELECT *.
    11. E
    12. PIVOT (sum (effort)
    13. FOR that day_of_week IN ('Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday')
    14. )

    Note that you actually need to use 'fmDay' as the mask of format of date with this approach. Using of 'Day' will result in all the day_of_week values be padded with blanks to the length of the longest value (Wednesday), then this will be the only match value in the pivot:

    SQL> with t as (
      2    select
      3        to_char(trunc(sysdate) + (level - 1), 'Day') d
      4      , round(dbms_random.value(0, 100), 2) z
      5    from
      6        dual
      7          connect by level <= 10)
      8  select
      9      *
    10  from
    11      t
    12  pivot (
    13      sum(z)
    14      for d in ('Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'));
    
      'Monday'  'Tuesday' 'Wednesday' 'Thursday'  'Friday' 'Saturday'  'Sunday'
    ---------- ---------- ----------- ---------- ---------- ---------- ----------
                                83.23
    

    Using "fmDay" avoids filling and the pivot works according to the needs:

    SQL> with t as (
      2    select
      3        to_char(trunc(sysdate) + (level - 1), 'fmDay') d
      4      , round(dbms_random.value(0, 100), 2) z
      5    from
      6        dual
      7          connect by level <= 10)
      8  select
      9      *
    10  from
    11      t
    12  pivot (
    13      sum(z)
    14      for d in ('Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'));
    
      'Monday'  'Tuesday' 'Wednesday' 'Thursday'  'Friday' 'Saturday'  'Sunday'
    ---------- ---------- ----------- ---------- ---------- ---------- ----------
        60.16    125.09      44.17      77.5      3.63      82.89      26.22
    
  • Create table with data in the column

    Create a new table, just want to know if there is a way to add a new column to the table with a value in all areas of this column when new rows are added to that this column will always be the same value

    As...

    name | address | zip | assets



    Active will always be Yes.
    I do a trigger?

    Use the default...

    create table (test)
    name varchar2 (20).
    address varchar2 (40),
    zip number (7).
    Active VARCHAR2 (3) DEFAULT NULL NOT 'yes');

  • Create a document with columns and the effects of impression

    If you create a new document and set the columns in the new menu document inside, and then subsequently create images, tables, text etc. in the document that are larger that a single column (which for example spans the whole page), will be the part of the image that is in the gutter print or see if it is saved in PDF format?

    Help!

    Thank you!

    Guides are there as a reference for you help in alignment. They restrict what or where objects can be placed or affect their visibility or printability.

    To see what your printed page, switch to Preview Mode (quick is to press W with nothing selected).

  • As a table with column comment onhover

    Hi guys!

    I was wondering if any of you saw an example of element onhover help with query... I mean.. Lets imagine a form of table with a column of comment text field. Comment column a width 50, but we all know that comment as being long ;) ale I would like to see the full length comment whenever I put my cursor on a specific line. Is this possible? If Yes can you show me an example or point me in a good response... (I don't know javascript well..)

    With respect,

    PsmakR

    PsmakR,

    I have some examples of what you are looking for. Please visit my [tabular with Popup when hovering on column | http://apex.oracle.com/pls/otn/f?p=57043:6].

    I would like to know if it works for you.

    Tarraf

  • Customize the table (first column and the first row)

    Hello everyone, I have a question: How can I insert words and numbers in the same table?

    I have create a VI that measure the temperature with an external instrument and put the data into a table, which is saved.

    Each line is a Thermocouple and each column is a measure, but there are only numbers!
    I would have the first column with the name of the channel and line of fist with the name of the measure.

    I had create an excel for example to explain my wish (Cattura.PNG).

    Thanks to all who help me

    You can insert headers required as column and row to convert it to an array of strings, as in the image below.

  • check line table with column checkbox

    Dear,

    I have a vision and inside I transitional boo returned, privilege attribute checkbox and I have a method of earphone change value set for the check box.

    have an idea on how to access the values of attriburte line when I press on the box of the valuechangelistner

    concerning

    Hello

    Best to handle this in case of selection. Do not give a handful of listener value change, it will create some kind of problem.

    Frankly I can not remember the problem. Follow the blog below as I said.

    War begins between me and Jdeveloper: Boolean checkbox Select ADF file

    then follow the Cvele_new_account.

    Thank you.

  • How to create a table with spaces between the lines...

    Hello

    I use jdev 11.1.1.6 and I need to insert spaces between the lines. How this can be done?

    Thank you and best regards,
    Tarun Agrawal

    Hello

    I'm sorry to forget on the spacer. You must use css like mentioned AP.

    Arun-

  • Prerequisites for the olive TREE

    Hi friends,

    What are the prerequisites for the installation of OBIA(latest version), informatica (latest version) with the 11.1.1.6 OBIEE.

    I have the following conditions as
    Software-------------------------------Version
    Oracle database ------------------11g Release 2
    Hibernate libraries--------------------3.2.5.ga
    OBIEE----------------------------------11.1.1.6
    Oracle BI Applications release-------7.9.5.1
    Informatica power center-------------8.1.1
    But I need to know the latest version of OBIA and informatica distributor of electric power that is affordable, with the (11.1.1.6) version last OBIEE.

    Friends, someone guide me with the prerequisite that I must follow.

    Thanks in advance.

    Kind regards
    Saro

    Oh, we had last version ;) then go for the version 9.1

    Oracle Business Intelligence Data Warehouse Administration Console 10.1.3.4.1 for Microsoft Windows and Informatica PowerCenter and PowerConnect adapters 9.1 for Windows x 86 (64 bit) (part 1 of 2) V30859-01 Part 1 2 2.0 g
    Download Oracle Business Intelligence Data Warehouse Administration Console 10.1.3.4.1 for Microsoft Windows and Informatica PowerCenter and PowerConnect adapters 9.1 for Windows x 86 (64 bit) (part 2 of 2) V30859-01 Part 2 of 2 1.4 G

    Download Applications Oracle Business Intelligence licenses and Guide 7.9.6.3 packaging and Informatica PowerCenter PowerConnect adapters customer 9.1 (part 1 of 2) V33700-01 Part 1 of 2 of 1.7 G
    Download Applications Oracle Business Intelligence licenses and Guide 7.9.6.3 packaging and Informatica PowerCenter PowerConnect adapters customer 9.1 (part 2 of 2) V33700-01 Part 2 of 2

    First server installation and then go for the customer.

    Published by: vieren on October 8, 2012 11:57

  • How to compare one by an element of a column with the first column in the other table?

    Hello

    I have two files into a single file has only Id numbers and the second file has table with for example the column 4, and his first column identification number.

    So I want to compare the first item in the User.ID file with the 1st column all the table file items in this column until it finds matches.

    If compare match then LED will be IT other wise LED will be OFF.

    Here as an attachment, I've attached the two file.

    Please guide me how can I do the same thing.

    Thank you much in advance.


  • How to export data to excel that has 2 tables with the same number of columns and the column names?

    Hi everyone, yet once landed upward with a problem.

    After trying many things to myself, finally decided to post here...

    I created a form in form builder 6i in which clicking on a button, the data gets exported to the excel sheet.

    It works very well with a single table. The problem now is that I cannot do the same with 2 tables.

    Because the tables have the same number of columns and the columns names.

    Here are the 2 tables with column names:

    Table-1 (MONTHLY_PART_1) Table-2 (MONTHLY_PART_2)
    SL_NOSL_NO
    MODELMODEL
    END_DATEEND_DATE
    U-1U-1
    U-2U-2
    U-4U-4
    ..................
    ..................
    U-20U-20
    U-25U-25

    Given that the tables have the same column names, I get the following error :

    402 error at line 103, column 4

    required aliases in the SELECT list of the slider to avoid duplicate column names.

    So how to export data to excel that has 2 tables with the same number of columns and the column names?

    Should I paste the code? Should I publish this query in 'SQL and PL/SQL ' Forum?

    Help me with this please.

    Thank you.

    Wait a second... is this a kind of House of partitioning? Shouldn't it is a union of two tables instead a join?

    see you soon

  • How to add scroll bar to the field in the column of the report

    Hello again,

    I need to add a scroll bar to the field in the column of the report in my application "form.

    There is a table with columns of text and sometimes a lot of information must be filled in these areas, and thus the overview of the report becomes unreadable, because all rows have different heights according to the amount of text has been filled.

    What I want is to make all lines with the same height, and if there is more text in a field that can allow a height - a scroll bar appears so for this specific domain.
    Is it possible to do?

    Thank you in advance.

    Hello

    OK - it is important that tell you what type of report that you use like this makes a difference to what is possible!

    For interactive reports, you cannot use a CSS stylesheet in the same way with respect to normal relations. The easiest way is probably to include a complete div in your SQL statement directly. Something like:

    select      ID as "ID",
          '
    ' || "MY_BIG_FIELD" || '
    ' as "DETAILS" from TABLEX

    This will put the data in this column in the individual DIV tags, and then apply the style from the example of the Dene.

    Andy

  • Discovered lines with column names where the cell contains a value

    I have a table with columns Additive_ID, A, B, C. Each Additive_ID has a single row.

    I would like to write a query that returns a result set with two columns: Additive_ID and values. It will have up to three lines for each Additive_ID, with the values column that contains the name of the column in the source table if it contains a 1 for this Additive_ID.

    What is the best way to achieve this?

    (In fact, the source table contains about 50 columns.)
    Select additive_id, decode(A,1,'A') value from your_table union all
    Select additive_id, decode(B,1,'B') value from your_table union all
    Select additive_id, decode(C,1,'C') value from your_table
    

    Here's a quick way to get all the SELECT to build the union:

    Select 'Select additive_id, decode('||column_name||',1,'''||column_name||''') value from your_table union all'
    from cols
    where table_name = 'YOUR_TABLE';
    

    Max

  • Select tables with a number of corresponding columns

    Hi guys

    I need to find a list of tables with columns in common.

    So basically I need a list of tables and tables that have 3 or more column in common with her, and what are these columns.

    This could take the form of pairs of tables, IE table A table B on columns 1,2,3 games
    Table of an array of matches C on columns 1,3,4

    or it could be games table A table B and C columns 1,2,3 etc.

    I think I do with PL/SQL, what I can do - but I was wondering if this kind of thing is possible with just an SQL statement - if any of you have done it before and you have some SQL, which would be a great help.

    Thank you very much

    Scott

    Well, most of the work is done.
    'Just', you need to add an aggregation function to present the list of corresponding columns.

    In 11.2, it has LISTAGG:

    SELECT a.table_name tab1,
           b.table_name tab2,
           count(*) match_count,
           listagg(a.column_name,',') within group(order by a.column_id) col_list
    FROM user_tab_columns a
         JOIN user_tab_columns b ON a.column_name = b.column_name AND a.table_name != b.table_name
    GROUP BY a.table_name, b.table_name
    HAVING count(*) > 2
    ;
    

    For older versions, other techniques are summarized here:
    http://www.Oracle-base.com/articles/Misc/StringAggregationTechniques.php

  • a table with 1200 coulumns or 30 tables with fewer columns

    Is there any show shot in a table with columns of 1200 by report to separate columns in the 30 tables by certain categories of business?
    Queries will always require a subset of the columns of 1200 across all categories of 30 companies.

    a. you may not have a table with more then 1000 columns:
    http://download.Oracle.com/docs/CD/E11882_01/server.112/e10820/limits003.htm#i288032

    b. After 255 columns, the line will be chained between two (or more) data blocks,

    So yes, this will impact your performance:
    http://download.Oracle.com/docs/CD/E11882_01/server.112/e10713/logical.htm#CNCPT1055

    c. you might want to consider grouping table 30:
    http://download.Oracle.com/docs/CD/E11882_01/server.112/e10713/tablecls.htm#i25478

    Amiel Davis

Maybe you are looking for

  • BIOS 1.90 for Satellite A205-S7458

    My boyfriend bought a PC laptop toshiba satellite A205-S7458. Recently a new BIOS was published for this model, which has support for changing the size of the video RAM specifications. But it can not find this option in the BIOS. Anyone know where?

  • Image optimization eat a huge amount of memory

    Hi all I use an image in my VI control comes to display an image to the user. The image that I am inserting in the image control is about 100 KB. But, the amount of memory, it takes the disk is about 10 MB, which makes my very slow running program. W

  • Could not import the address book OE (with folders) for Outlook 2007

    HelloI installed outlook 2007 and I already transferred my email accounts and my emails from outlook express. I have a problem with the address book.I can't import it not entirely because it is some folders inside the address book who are not giving

  • How CSNA music from my pc to my ipad?

    How can I sync music from my pc to my ipad?

  • Music in the queue is horrible

    I'm running 10.5.1 UCCX. I'm working on a scenario where I want to put the music on hold in a queue. I formatted the audio file accordingly. (8 bit, 8000hz, mono) and it sounds good when I play the file itself. I just wanted to download that, referen