Hierarchy Report - is this possible through BO???

Hello friends
We have a requirment as follow:
In Row : Hierarchy
In Column: Qty
we have 3 levels of hierarchy: level1 , level2 and level3
we want level1 in row and rest two levels in column along with qty
Row: :Level1
Col: Level2, Level3, Qty
please let me know whether its possible through BO or not,,,I tried out this in BEx (BW) but we cant do that
Edited by: Alok Kashyap on Feb 2, 2009 9:03 AM

Hi Alok,
As I understand you want to set different levels of hierarchies for different Columns objects in the report.
BO doesnu2019t have the concept of Row and Column Level Hierarchy because when you select any value BO Select all values in column we canu2019t refer any single value in column and we canu2019t refer all related values as record thus Row level hierarchy is not possible.
You can use Custom Hierarchies to set different hierarchies for different objects.
Lets Say you Want Object in  Column A to follow Level 1 include that object in Level1 Hierarchy.
Define Level 2, Level 3 Hierarchy and Include Object in Column 2 in those hierarchies thus Column 2 follows Level 2 and Level 3 Hierarchy.
When there is confusion about which Hierarchy Level  to follow when at same level it asks user which way to go.
I Hope this Helpsu2026
Thanksu2026
Pratik

Similar Messages

  • Hierarchy Report - is this possible through Crystal Report???

    Hello friends
    We have a requirment as follow:
    In Row : Hierarchy
    In Column: Qty
    we have 3 levels of hierarchy: level1 , level2 and level3
    we want level1 in row and rest two levels in column along with qty
    Row: :Level1
    Col: Level2, Level3, Qty
    please let me know whether its possible through Crystal Report or not,,,I tried out this in BEx (BW) but we cant do that

    Hi Aloke,
    This is possible,
    Create a group on Level1
    In Detail place Lavel2 ,Level3,Qty
    You may insert totals if required.
    Thanks,
    Sastry

  • How can we transfer product attributes from an already existing site?  We have thousands of items and it would be tedious to do them one at a time.  Is this possible through a CSV?

    How can we transfer product attributes from an already existing site?  We have thousands of items and it would be tedious to do them one at a time.  Is this possible through a CSV?

    There are two parts to this:
    1) It may be that you should have an Apple Education Support person helping you with this. If you have enough computers for this to be a problem, you may benefit from a Server, a site license, and an occasional visit from an Education Support Specialist.
    2) The brief answer, if you want Individual Apple_IDs to control each computer, is to buy new copies of Mac OS X under those new Apple_IDs and re-download and re-Install. Mac OS X is customized to the Apple_ID before it is downloaded.

  • Is this possible through SQL

    Hi,
    Please find below the sample data
    Empl   Start Date   End Date
    A       2-JUN-11     30-JUN-11
    A       1-JUL-11      15-JUL-11
    A       16-JUL-11    NULL
    B       14-SEP-06   3-NOV-09
    B       10-APR-11   4-MAY-11
    B       5-MAY-11    NULLThe above is a sample extract from an employee detail table. Whenever there is a change in the employee data the active row in the table is end dated and a new row inserted with the new start date.
    In the above example employee A joined the organization on 2n June 2011 and is still employed by the organization, and moved teams twice. While B had joined in 14 September 2006, quit the organization on 3rd November 2009, and rejoined the org on 10th April 2011.
    Now, I want to frame a SQL query which returns employee name and his latest joining date. So for the above sample data the result set would be:
    Empl Start Date
    A     2-JUN-11
    B     50-APR-11Do you think this is possible through an SQL query?
    Thanks,
    CJM

    You were right the filter was wrong. I made a correction to my first post.
    A       2-JUN-11    30-JUN-11     0
    A       1-JUL-11    15-JUL-11     1
    A       16-JUL-11   NULL          1
    B       14-SEP-06   3-NOV-09      0
    B       10-APR-11   4-MAY-11    584
    B       5-MAY-11    NULL          1outer query
    A       2-JUN-11    30-JUN-11     0   /* max value */
    B       14-SEP-06   3-NOV-09      0
    B       10-APR-11   4-MAY-11    584   /* max value */Regards
    Etbin

  • Adding Additional Parameter in Oracle Reports -- Is this Possible?

    Hi,
    Please help me with this predicament: There are several reports being called through a single form, wherein a common parameter list is being used. Now I need to add another parameter called BLANKPAGES to one report only. Is it possible for me to put this script inside that one report's trigger?
    ADD_PARAMETER ( pl_id , ' BLANKPAGES ' , TEXT_PARAMETER , ' NO ' ) ;
    What are my other options?
    Thanks in advance,
    Jansen

    Try this
    if :report_name = 'NEW_REPORT' (user substr if needed) then
    ADD_PARAMETER ( pl_id , ' BLANKPAGES ' , TEXT_PARAMETER , ' NO ' ) ;
    end if;

  • Is this Possible through a query?

    Hi All,
    i am calling this function in an update statement.
    this function queries a table based on the conditions and will return the latest(max) date from table.
    Is it possible to achieve this in a query?
    CREATE OR REPLACE Function getmaxdate(pRLK_RK number,
    pLN_RK number,pRLK_ACT_FLG varchar) Return date Is
    vnum number(3);
    pmaxdate date;
    Begin
    select (Trunc(RLOCK_END_DT) - Trunc(RLOCK_EXT_END_DT)) into vnum from rate_tab
    where RLK_RK=pRLK_RK
    and LN_RK=pLN_RK
    and RLK_ACTIVE_FLG=pRLK_ACT_FLG;
    dbms_output.put_line('Value of vnum'||vnum);
    If vnum < 0 then
         select RLOCK_EXT_END_DT into pmaxdate from rate_tab
         where RLK_RK=pRLK_RK
         and LN_RK=pLN_RK
         and RLK_ACTIVE_FLG=pRLK_ACT_FLG;
    elsif vnum > 0 then
         select RLOCK_END_DT into pmaxdate from rate_tab
         where RLK_RK=pRLK_RK
         and LN_RK=pLN_RK
         and RLK_ACTIVE_FLG=pRLK_ACT_FLG;
         --return pmaxdate;     
    End If;
    return pmaxdate;
    dbms_output.put_line('Value of pmaxdate'||pmaxdate);
    End;
    Any suggestions?
    Thanks.

    may be this
    select (case when (Trunc(RLOCK_END_DT) - Trunc(RLOCK_EXT_END_DT)) <0 then
                      RLOCK_EXT_END_DT
              when    (Trunc(RLOCK_END_DT) - Trunc(RLOCK_EXT_END_DT))> 0 then
                    RLOCK_END_DT
              end) max_date       
    from rate_tab
    where RLK_RK=pRLK_RK
         and LN_RK=pLN_RK
         and RLK_ACTIVE_FLG=pRLK_ACT_FLG;

  • Is this possible through sql loader

    hi grus,
    i want to load a data through sql loader but the problem is, data file contains some numeric values and after each numeric value there is sign character,
    for example
    position 1 to 9 = 12345678- (in case of negative)
    or
    position 1 to 9 = 12345678% (% represents blank space in case of positive)
    is there any way to load this numeric value into one field, where the sign follow the numeric value?
    Thanks

    Hi Jim/Jenis
    Just want to know why the below statement dosn't work.
    when i used "MI" format then all the records which trailing blank rejected by the loader only trailing "-" loaded.
    CURR_MON_OPEN_BAL      position(0045:0053) "to_number(:CURR_MON_OPEN_BAL, '99999999MI')"
    then i use the following trick and works fine.
    CURR_MON_OPEN_BAL      position(0045:0053) "to_number(rpad(:CURR_MON_OPEN_BAL,9,'+', '99999999S')"
    Could you guys explain why the MI format doesn't work in my case?

  • Report "freeze" - while running through Appplication

    Hi folks,
    we have a report that runs fine through report builder and while running it through application except the one institute.
    In that institute, where data amount is even not as large as in testing database (or in any other institute), report freeze after while. When I run that report in this database through report builder then it's quick and without any problem - so I think it's not database problem, but could be some setting on report's server.
    We tried to extend cache size from original value 50. After increasing cache size in config file to 600 (in .../reports/conf folder rep_rerver.conf file <property name="cacheSize" value="600"/> ) report runs fine (there were no change in report on in testing data amount during all testing process) . Normal value that we have in other institutions (config files for other databases is 50 - where this amount is enough)
    We don't want lo leave this value on 600, but at the moment we don't know what other parameters can have something to do with it.
    Any ideas?
    Thanks,
    Tomas

    Hi Sudhir,
    Peoplesoft is an OEM Partner of ours and they support their product. We don't have it here so we can't help you.
    Please contact PS for support and mark this post as answered.
    Don

  • I am getting old and looking forward to use I Pad as a Phone if possible through WIFI! I this possible? The screen is to small for me! If possible, with new I Watch taking calls, other uses through I Pad!

    Like I wrote on title, I am getting old and it is not easy to see E-mails, news etc. on a I phone! New I phone will not help me for the size.
    If possible, everything without calls, I would like to use I Pad as direct unit, and for calls through I Pad over WIFI all calls. If a call as Skype, I would like
    to use the I Pad as a monitor. Is this possible?
    I found on a side that there is a product for people for better hearing, which can be put into the ears, using WIFI with I Phone.
    If this product could be used also for I Pad as a Phone for hearing, and the I watch or I Pad as Microphone, it will be great for old Mac users.
    Is this possible with our system know?
    I am using Mac since Classic II! Would like to continue with the newest items with the possibility for old person with bad Eyes or Ears.
    Looking forward for a kind answer
    with regards
    Christian an old Mac user!

    Definitely No

  • I have the djay app on my ipad and i want to record the set i'm playing on my iphone through garageband. i need to take the sound from the headphone jack of the ipad, as the 30pin connector will be used to connect to the DJLive accessory. Is this possibl?

    i have the djay app on my ipad and i want to record the set i'm playing on my iphone through garageband. i need to take the sound from the headphone jack of the ipad, as the 30pin connector will be used to connect to the DJLive accessory. Is this possibl?reco

    You may get a better response in this community:
    https://discussions.apple.com/community/app_store/garageband_for_ios

  • I already have creative cloud Photography plan and just want to add dreamweaver, is this possible?  Alternatively, I have tried purchasing the Complete - For CS Customers but it asks me to contact customer support and then sends me through to the forums!!

    I already have creative cloud Photography plan and just want to add dreamweaver, is this possible?  Alternatively, I have tried purchasing the Complete — For CS Customers but it asks me to contact customer support and then sends me through to the forums!!

    yes.
    contact adobe support by clicking here and, when available, click 'still need help', https://helpx.adobe.com/contact.html

  • In Adobe ExportPDF, can you take an existing PDF and delete existing pages?  For example, I have a 5-page report and need to delete pages 2-4.  Is this possible?  Thanks!

    In Adobe ExportPDF, can you take an existing PDF and delete existing pages?  For example, I have a 5-page report and need to delete pages 2-4.  Is this possible?  Thanks!

    Hi,
    You can do this with Adobe Acrobat.
    If you are using Export PDF it is a long procedure.
    You need to convert your PDF in word or powerpoint.
    Then you can edit the document & again can create PDF.
    Regards,
    Florence

  • Value-based hierarchy on ROLAP dimension. Is this possible and how?

    Value-based hierarchy on ROLAP dimension. Is this possible and how?
    If yes, what tool I have to use. Any simple examples?

    Based on my experience of OWB10gR2 the option to create a "Value Based" hierarchy is only enabled if you create an AW based OLAP model. If you want to create a ROLAP model then I do not think this is possible.
    Question is why create a ROLAP model when you could get better performance and more powerful analytical features by using a multidimensional model within an analytic workspace.
    Keith

  • Calling Forms 6i from Reports 6i. Is this possible. Run Product in Reports

    Re: Calling Forms 6i from Reports 6i. Is this possible?
    Hello,
    I have need programming in Oracle 9.x and using Forms and Reports for about 1.5 years. My ERP application calls a report from a form. I DO NOT have source code for the FORM. But, I DO have source code for the Report. So, from the Report 6i, I would like to call an Oracle Form 6i. Note: Not WEB based. My question is, IS THIS POSSIBLE. I can not find a command like Run Product in Report for calling a Form Application. Can someone please help me. I am under the gun to have this ready in a couple of days. Can I call an Active X Application from Reports..if Oracle Forms DOES NOT WORK. This needs to be a Form Application because of the nature of this request.
    Thank you
    Dennis

    Thank you
    ...the ERP vendor based on a form icon button will call a report. They will pass a TAG_NUMBER from a database record (that they just inserted) to the report. This tag_number will link to other tables and will display the report. The problem is ??..there is additional information that the user needs to scan into the database BEFORE the report runs. This is part of the business work flow.
    I have options.
    1) Get the ERP Vendor to call a FORM based on the name I provide to them.(Not really an option since they are unwilling to make custom mod changes.)
    2) Have the user key into the REPORTS PARM FORM. And I will update the tables...
    3) Call an Active OCX popup FORM from Reports and then update tables. Is this possible from Reports???..I am not sure if I like to introduce ms vb into an oracle application. It just does not seem to be a correct solution/procedure.
    4) Pay the ERP Vendor as a custom mod to make the changes for us. (unlikely because they do not like making custom mod changes)
    5) ....any more ideas/comments please let me know..
    Thank you Again
    Dennis Aubrey

  • I need to upgrade a adobe photoshop cs4 extended package brought through a company. Is this possible?

    I need to upgrade an adobe photoshop cs4 extended package brought through a company. Is this possible?

    It depends what you need to upgrade to.  You probably cannot upgrade CS4 to a newer Creative Suite because it is most often no longer in the upgrade path.  Usually CS5 is the minimum in the path, and the only upgrade that you could get is for CS6 since Adobe does not sell older versions.
    If you would like to join the Creative Cloud then you should be able to upgrade to the special introductory plan they have for Creative Suite owners.
    https://creative.adobe.com/#plans

Maybe you are looking for

  • What is wrong with as3

    this is not a question about 'how i do X'. is rather a 'discussion' (flame or whatever, but to defend or argue about aspects, not people) about 'what is wrong with as3' and what aspects whould be taken into consideration for updates. right now i am u

  • Asus monitor compatible

    is there a compatibility problem with asus monitor?

  • Mail is downloading 9000 old messages from March

    Restarting and opening Mail this morning, strangely, Mail is downloading about 9000 (yes, nine thousand) old messages from last March. WHY? I tried clicking on the X to cancel it, thinking it might just be a glitch, but then it started back up again.

  • "Bad handshake" error with MySQL

    Hello, I'm having problems when I try to connect to DB using MySQL 4.1.1alpha. I have Conector/J 3.1 and Connector/ODBC 3.51. The exceptions occur when I try to connect with the sentence: conection = DriverManager.getConnection("jdbc:mysql://localhos

  • My dial up modem

    my dial up modem isn't connecting on my iMac. when it starts connecting it then starts disconnecting it will say this for ages, then i have to restart. i know it isnt something to do with the ISP as i can still connect on my pc. is it a hardware or s