Is planning - possible to break out a report at a particular level (for example. Level 5) limited by a Member

Hello


I'm breaking the books of report for the entity dimension. There are a total of 7 levels within our hierarchy of entities.


Is it possible to break out at all levels of 5 out of the 7, but limited to a particular entity, so that the batch report is not burst at all the level 5 within the hierarchy of entities together?


The common way to burst at a given level is by selecting the tab "Lists" when the preview to view window. However, this option in the list allows you to select the level for the entire dimension (in my case, entity). I would select level 5 (our level 7) to the [ABC] entity only.

Does anyone know how to do this? Any help would be much appreciated!

Thank you very much!
Tiffany

Thanks for your comments. I tried, but it does not work. It does not recognize the logic.

I got did, however, find a way to do by exporting the file list batch-burst, put on day of individual members on the CSV file in a breakthrough down Smart View file copying-sticky and import again. It's a great work around what I'm trying to do.

Thank you

Tiffany

Tags: Business Intelligence

Similar Questions

  • Break-up and report parameters

    Hello

    My script is as follows:

    I have a report that shows the details of the customer for the given month.

    Previously, I've created this report with two parameters-

    (a) customer ID

    (b) month-year

    Now, I have to use burst to generate the report for each customer combination / month-year

    My questions are,

    (1) in this case, I have two KEY - customer and month-year values

    But, we can give a single value for the KEY.

    How can I add Customer ID as well as month-year in KEY tag?

    (2) if I have to use the breaking ability, I remove parameters - Customer ID and month-year

    Because, if I keep my dataset query filter on it

    and I get no results burst.

    Can I use parameters and burst at the same time?

    For example:

    My query was previously

    Select Customer_ID, Month_Year of clients where Customer_ID =: Customer_ID and Month_Year =: Month_Year

    In the application of fracture will be,

    Select Customer_ID, customer Month_Year

    I want to use the capabilities of two-

    (a) user must be able to view the report with parameters

    (b) user should be able to break out the report

    Thanks for help

    Here is my understanding

    Case 1 - the user should be able to run the report with parameters

    Here, I guess it's a type of text box parameter so that the user can enter values to run the report for specific data

    Case 2 - burst, you would want the report to run for all values regardless of input parameters

    Here, since it is a same report which is used to display online and burst, the input parameters will appear in both places.

    For example, to run the report for all values in the burst - modify your report as below

    1 remove all default values, so the parameters will be empty at the time of the break-up

    2. change your SQL to run to white input parameters

    Select Customer_ID, Month_Year of clients where Customer_ID = nvl(:Customer_ID,Customer_ID) and Month_Year = nvl(:Month_Year,Month_Year)

    Using the method described above

    -L' user can run the report for the specific input parameters

    -L' user can burst the report for all values


  • Disable the use of break out definition to determine and verify the delivery Destination

    Hello

    I want to burst with email delivery channel report, but it's "use break-up box to output Coachman determined definition and place of delivery is disable/invisible, don't know, where I am doing wrong, please help me.

    Set query data

    SELECT EmpNo,

    Ename,

    SAL

    OF my_emp

    Application of bursting

    SELECT empno AS KEY,

    'burst_emp_sal' AS TEMPLATE,

    'en-US' AS LOCAL.

    'PDF' AS OUTPUT_FORMAT,

    "E-MAIL" AS DEL_CHANNEL,

    Email AS "Parameter1",

    e-mail1 AS parameter3,

    "Salary slip" parameter4.

    'Salvation'. Ename | "Please find enclosed." AS PARAMETER5,.

    'true' AS PARAMETER6

    WCP

    I'm following links below

    Addition of the definitions of break

    Creating report jobs

    How burst and deliver enterprise BI Publisher Documents. STR software

    Version: Oracle BI Publisher 11.1.1.6.0

    Recommendation:

    Make sure that there is no error in your query of rupture.

    Create model manually based on xml RTF and download it. so break out your report.

  • How to report errors in Windows 8. Example: Data transfer freezes.

    How errors in the operating system Windows 8 Customer Preview can be reported to Microsoft?

    For example: when I transfer data from an external desktop USB hard drive, when it reaches 99% it freezes for 50 seconds.  It is independently the size of data from a few KBs to the top.

    There is a work around.   If the Panel of Navigation is active in the view for Windows Explorer, data transfers normally and are slightly faster than Win7 on the same machine.

    However, this is not normal.  Windows 7 has the transfer rate even if the Navigation pane is enabled or not in Windows Explorer.

    I would like to be able to report to Microsoft so that they can fix this error.  Any suggestions?

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_8-Performance?tab=unanswered

    This is the forum for windows 8.

  • It is Possible to "Break" a refreshing interactive report

    We have an interactive report for which we want to apply two filters of columns as required. We already understand how to examine active filters and determine if they are defined.

    What we need now is a mechanism by which if the user changes the filter criteria (for example by removing one of these mandatory filters), we can stop the refresh of the APEX and produce an error message. For example, such logic could be placed in the event before updating ?

    Does anyone have any ideas of how this could be done?

    -Joe

    I watched it for a bit, but I don't think that there is a same way by far just to deal with this. Ajax for IRs calls do not use calls jQuery.ajax (unhappy), but using a call to htmldb_Get.getAsync. An XmlHttpRequest object is created it but of course never exposed, not allowing only no interaction on this and is probably too entrenched in apex javascript to change. If it was using jQuery you might have tried to use the ajaxSetup, such as described in javascript - Ajax Abort request using jQuery - Stack Overflow or stop all active in jQuery - Stack Overflow ajax requests (and all the variants by seeking the abandonment of ajax).

    There is nothing you can do to tell the front discount event since the cancellation which is only to cancel forward discount event, not the update real.

    I think that simply the substitution of certain functions on the gReport object might serve you best. Keeping in mind it is better not tampered with and only is not supported etc etc - I assume that you know the drill now.

    There are a couple of candidates for this. "gReport.action" for example: you could simply block any action of ajax on the report before that happens: remove the filters, add filters, search, sweater - without having to worry about xmlhttprequests. I explored a few other roads, but honestly, they have become too complex for what it was.

    //first store the original _Get function. We can't lose this because we still need it.
    var old_Get = gReport._Get;
    
    //now override the existing function with our own implementation. Preserve the signature so that the params can
    //be passed on
    gReport._Get = function(p_widget_mod,p_widget_action,p_widget_action_mod,p_id,p_value,p_x05,p_x06,p_x07,p_x08,p_x09,p_x10){
      //lets do some arbitrary check in here
      if(p_widget_mod == "PULL"){
         //now nothing will happen when you want to pull the report
         return false;
      };
      //and dont forget to at least execute the original function !
      old_Get(p_widget_mod,p_widget_action,p_widget_action_mod,p_id,p_value,p_x05,p_x06,p_x07,p_x08,p_x09,p_x10);
    };
    

    Now when running

    gReport.pull()
    

    nothing will happen.

    You will need to modify it to meet your needs. If it is to take it too far for you then you can hit a brick wall though, I see no other option personally and to this day.

  • How many people currently work at apple (by country, if possible), I write a business report and need to know the answer, thank you.

    How many people currently work at apple (by country, if possible), I write a business report and need to know the answer, thank you.

    Watch their deposits of the company. This community is to post technical questions.

    We are users like you. We are not Apple. If you wish to contact Apple use the link contact us at the bottom of this page.

  • How (if possible) I point out a whole day in the Windows calendar instead of just a single event? (With the help of Vista Ultimate) Thank you.

    How (if possible) I point out a whole day in the Windows calendar instead of just a single event? (With the help of Vista Ultimate) Thank you.

    I have no experience with Windows Calendar, but see this article for a bit of luck:

    Customize Windows Calendar
    http://Windows.Microsoft.com/en-us/Windows-Vista/customize-Windows-Calendar

  • Print sΔ Wireless - Local Break Out?

    Hello

    Have a wireless LAN deployment whereby we have several LWAPP (1242AG) in different regional offices linking on the existing wired network and WAN to a central WLC 5508.

    Different wireless users 'burst' on different VLANS on the back of the WLC in central location and can access all very well centralized services.

    However when they print to a local printer in the Office of the print traffic going to the central site and return to the printer next to the user...

    Client-> LWAPP-> wired LAN-> WAN-> Central wired WLC-> WAN-> LAN-> printer

    Printing performance is terrible because of the latency to go across the Wan to the Central WLC and backtrack across the WAN to the printer.

    Is it possible that we can 'pull out' traffic of printer on a VIRTUAL LAN on the local network while still having the rest goes to the WLC?

    See you soon

    Mike

    A HREAP can be supported two local switched and Central switched WLAN at the same time, but a WLAN can support the local switch and central switch mode at the same time.

    So basically, you can create two wireless LANs in the WLC, one for local printing, which must be configured as locally switched, another for the internet/e-mail traffic that must be confgigured as centrally switched. You can then apply these two wireless LANs in the HREAPs in the remote office, so that the circulation of local printing will not pass by WLC, but the electronic internet/mail traffic will be sent to the WLC.

    If you don't want to use two local wireless networking for different traffic, so there is no ability of the WLC, you must use the wired method, for example, you can set up a WLAN for local switching, and then configure routing in the first Bond film L3 material of the HREAP, so that the circulation of local printing is routed to the local printer internet/e-mail traffic is routed to the central site.

  • Is it possible to find out what I did to the previous photo, so I know what to do to duplicate the effect?

    Is it possible to find out what I did to the previous photo so that I will be able to reproduce the effect?

    Nice tip MichelBParis, thank you.

    You don't mention how to get to the last option of conversion and it took me a while to find the menu options in Camera RAW. So I write a page if Judy want to use as well.

    I love the ability to save these default Camera Raw settings to automatically apply to multiple images. Who can save a bit of time as well. Then, when you are finished using these parameters. You can reset Camera Raw in the same menu.

  • I bought the plan of photographer, signed Out and back in creative cloud, but Photoshop is still unavailable for me

    I bought the plan of photographer, signed Out and back in creative cloud, but Photoshop is still unavailable for me

    Hello

    Please see the below help documents:

    Applications creative Cloud back in test mode after an update until 2015 for CC

    Solutions to connection errors, activation and connection with creative Cloud applications and Creative Suite

    Kind regards

    Sheena

  • is 10g - possible to know if the report to get the data in the CACHE?

    Hi, experts,

    Is it possible to know if the report to get the data in the CACHE (per share on the dashboard page)?

    of NQQuery.log?

    Forreging,

    Yes, it is possible to know if a query pulled from the cache to access Oracle answers/dashboards or not.
    If you find the part of the sentence "cache hit on request" within the NQQuery.log against any request, this request did get the results from the cache.

    Another way:
    Also under settings > Administration > manage Sessions if you find "Ref" > 1, which refers the number of times where a cache is used to provide results.

    -bifacts :-)
    http://www.obinotes.com

    Published by: bifacts on November 1st, 2010 22:42

  • Possibility to generate reports of RH Server 7 for CHM project?

    Hello
    We are developing aid for a new product needs.

    For the moment, we are looking to produce documentation in CHM format which will be set up as a context-sensitive help for a software application. Our team promotes the CHM on WebHelp format.

    However, there is still a requirement to be able to report on the use of headings in compiled help.

    Is it possible to generate RH Server7 reports on different topics within a help CHM project? Or RH Server 7 users can only generate reports for WebHelp projects?

    Thanks Rick! That's what we needed to know.

  • Line break in the report?

    Hello people,

    I've created a report with the "SQL query" Type and query as something like this:-

    ------------------
    Select
    B.SID,
    a.FName,
    b.Address,
    b.Street,
    c.City,
    c.Community
    Of
    staff one
    inner join
    b postal
    on a.id = b.id
    inner join
    area c
    on a.id = c.id
    where
    a.ID =: P1_ID

    ------------------

    and under attributes report-> setting - layout and Pagination > report model, I use "value attribute pairs.

    My reports print the form: -.

    ------
    name-> fname-> address-> Street-> City-> Community
    -----

    rather, I want to print in the form:-


    -------------
    < header >
    name-> fname
    <>footer

    < header >
    street address->
    <>footer

    < header >
    City-> Community
    <>footer
    -------------

    In short, how breaking the line (or you can say multiple reports in a SINGLE REPORT), to make an own sense, as all three reports are three separate DB table.


    a good link... or for example how approach!


    Thank you


    Kind regards
    Kumar

    Hello

    Take a look at your page now - I'm not 100%, I just your needs?

    Andy

  • Planning in Foglight 5.6.4 report

    Hello

    We would like to schedule a report for one of our Application teams, we want it in a mode like,.

    "every day the report should be generated with data from the previous day (24 hours)" automatically and above all it should be given the day before of the Application. (i.e.) if we choose 6 may 2013, while the report should have exactly 6 data and it should be built on onwards (daily) may 7 with only have the data the day before and the day to come on the next day.

    Can someone help us make same pls...

    Kind regards

    Guenoun.

    Hi guenoun

    If you have the generated report and you want to demand, it should be a fairly simple process.  Click the box with the three points in next to the slot:

    Then select the time period you want by clicking on the Edit button:

    Note that as well as "The last 24 hours", you can use the "last day 1»  Run this once a day as a regular report (for example "Start of Day" that she will work daily at 08:00) and you will achieve a daily report for the last 24 hours, any day it is.

    Hope this helps

    Brian

  • Speedometer with two sliders... Is this possible? (Creation of interactive reports)

    Hi all
    I work in a cooperative and we use the hyperion 11.1.2.1 Tools version. I have a doubt about the use of the sliders. Here's my situation: I have a result that shows sales by branch product x. In a slider I the branch and o the other products. Both are assigned to a speedometer. When I put a cursor in one position (when I choose a branch, for example) the speedometer indicates all the sales for this branch, regardless of the product placed in the other cursor. In the lead, I thought that the cursor works as a filter and the speedometer will respect the two sliders.
    My main question is: is possible to work with a meter speed (for example) and two or more cursors? And two slide acting as a filter...

    I don't know if I was clear enough...
    Thanks in advance!

    Rafael Melo - Brazil.

    Edited by: 844299 11/05/2011 04:40

    Unfortunately a cursor is allowed to control other objects. You can use a different control in combination with slider - dropdown or Listbox.

Maybe you are looking for

  • Please explain how to delete a computer IMAC?

    Please explain how to delete documents and files from my office? Why simple Apple does not offer an option to delete above under edit. This totally baffles me? How much easier would it be? I'm not tech savvy so I end up saving multiple copies of the

  • How to cancel the update of firefox that I've updated today?

    Windows 7 64 x or x 64. The update just today & desperately wanted to cancel it. Thank you so much, Jim

  • New tabs does not open (to connect) unless I move the mouse. Why?

    As noted, when I open a new tab just hangs until I move my mouse. When I stop moving the mouse, the new tab freezes again ergo, I must keep it around in circles until it opens!

  • Threshold voltage

    I am trying to extract the voltage threshold of an IDVG curve using linear extrapolation. I need to get a line tangent to an index value and extrapolate the data x ordered originally. in the example of the index would be 15. Any suggestions?

  • Touchpad works do not (HP laptop)

    Hi all I have a HP Pavilion dm4-2165dx Entertainment PC. For some reason, the system is no longer recognizing the touchpad. Here are some details: -J' already tried typing on the left corner. It does not work. -None of the keyboard shortcuts work. -J