Can Drill-down paths being made dependent on the user roles and groups

Hello Experts
Is it possible to restrict user after certain level of drill down. Here I mean after drilling upto country level from Total World , can we restrict the user to further drill down upto state level.
OR we can say that we need to restrict certain user to look into transaction level details
thansk and appreciate any hlep on this.

i Guess u can...by setting object level security? suppose if you dnt want to drill to state... you can restrict the state column inpresentation laye... so when the user uses the the report he cannot see state and also in drill down....hope this is helpful/answered...

Similar Messages

  • I just bought macbook pro with 10.8.3 os. When i start the system, all applications automatically start up as well! How can I turn them off. I checked the user settings and no application is set tom open automatically!

    I just bought macbook pro with 10.8.3 os. When i start the system, all applications automatically start up as well! How can I turn them off. I checked the user settings and no application is set tom open automatically!

    You have 14 days to return the computer w/no questions asked.  Plus you have 90 days of FREE phone tech support on top of your standard 1 year warranty unless you also purchased AppleCare which gives you an additional 2 years of coverage plus FREE phone support.
    Strongly suggest that you take FULL advantage of the above before it runs out.  Let Apple deal w/the problems.

  • On the web how can I check the user role to display the form suitable for this role i

    Hello
    How can I check on the web the use role to display the a form for each role
    Example
    If the admin login I display admin_form.fmb and if user login I display
    user_form.fmb
    Thankx
    Tamer

    In my forms I hide tab pages according the role using something like the following script in the WHEN_NEW_FORM_INSTANCE trigger.
    So the user can not navigate to tabs which are vorbiden by his role.
    CURSOR users_roles_cur IS SELECT granted_role FROM user_role_privs
    WHERE username=(SELECT user FROM dual);
    user_roles_rec users_roles_cur%ROWTYPE;
    IF users_roles_cur%ISOPEN
    THEN
    CLOSE users_roles_cur;
    END IF;
    OPEN users_roles_cur;
    LOOP
    FETCH users_roles_cur INTO user_roles_rec;
    EXIT WHEN users_roles_cur%NOTFOUND;
    MESSAGE (user_roles_rec.granted_role);
    PAUSE;
    IF RTRIM(user_roles_rec.granted_role,' ') = 'BLA-BLA'
    THEN
    tb_pg_id := FIND_TAB_PAGE('activity');
    IF GET_TAB_PAGE_PROPERTY(tb_pg_id, visible) = 'FALSE' THEN
    SET_TAB_PAGE_PROPERTY(tb_pg_id, visible, property_true);
    END IF;
    END IF;
    END LOOP;
    CLOSE users_roles_cur;
    Other solution may be is to use an initial form which only will detect the user role and run the appropriate form.
    Other solutions are also possible.
    Joseph

  • Navigate to a different report from the Drill down path

    Hi,
    I have a question regarding the navigation.
    I have a summarized report showing the fields City, Year and Count.
    Now the user has the privilege to drill down on the Day dimension. He can drill down from Year to Quarter to Month to Day.
    Is there a way for me to provide a navigation path at the Day level. Lets say when the user clicks on the Date then he has to be navigated to a different report showing the detailed report.
    Since my summarized report does not have the fields Date I cannot provide the navigation path. The Date field is displayed only in the drill down path and I am not sure how to proivde the path.
    Can anyone throw their inputs into this?
    Thanks

    hi,
    i don't think there exists any out-of-the box solution through front-end.
    If you know what fields appear on the detail report, provide a PRE-DEFINED drill path in the rpd to all the columns from the date column.
    -bifacts
    http://www.obinotes.com

  • Webi Report with two drill down paths

    HI All,
       I have a requirement to build two different drill down paths in a report , i think i need to create custom hiearchies for that,
    can anyone give me information/links regarding.
    please help!!
    Thanks in advance
    Yogz

    Hi Yogz,
    In Universe Designer,
    From  u2018Toolsu2019 menu, click on Hierarchies.
    Choose the desired class from u2018Default Hierarchiesu2019 panel. Add it to the u2018Custom Hierarchiesu2019 area.
    Click OK then on Click Save > Export.
    In Web Intelligence document :
    Add the dimension that is at the top of the hierarchy to the report.
    Click Drill under the u2018Edit Reportu2019 tab. and then Save the report
    hope this will help you.
    regards
    laksh

  • How we can   drill-down, sorting, traffic lights,  in ALV report

    hi gurus ,
    how we can   drill-down, sorting, traffic lights,  in ALV report .
    please any one suggest that...
    regards,
    praveen

    Check the sample code for drill-down, sorting, traffic lights,  in ALV report.
    REPORT YMS_COLOURALV NO STANDARD PAGE HEADING.
    TYPE-POOLS: SLIS, ICON.
    DATA: FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA: BEGIN OF IMARA OCCURS 0,
    LIGHT(4) TYPE C,
    MATNR TYPE MARA-MATNR,
    MTART TYPE MARA-MTART,
    MAKTX TYPE MAKT-MAKTX,
    COLOR_LINE(4) TYPE C,
    TCOLOR TYPE SLIS_T_SPECIALCOL_ALV, "cell
    END OF IMARA.
    DATA: XCOLOR TYPE SLIS_SPECIALCOL_ALV.
    START-OF-SELECTION.
    PERFORM GET_DATA.
    PERFORM WRITE_REPORT.
    FORM GET_DATA.
    WRITE ICON_GREEN_LIGHT AS ICON TO IMARA-LIGHT.
    IMARA-MATNR = 'ABC'.
    IMARA-MTART = 'ZCFG'.
    IMARA-MAKTX = 'This is description for ABC'.
    APPEND IMARA.
    WRITE ICON_YELLOW_LIGHT AS ICON TO IMARA-LIGHT.
    IMARA-MATNR = 'DEF'.
    IMARA-MTART = 'ZCFG'.
    IMARA-MAKTX = 'This is description for DEF'.
    APPEND IMARA.
    WRITE ICON_RED_LIGHT AS ICON TO IMARA-LIGHT.
    IMARA-MATNR = 'GHI'.
    IMARA-MTART = 'ZCFG'.
    IMARA-MAKTX = 'This is description for GHI'.
    APPEND IMARA.
    LOOP AT IMARA.
    IF SY-TABIX = 1.
    IMARA-COLOR_LINE = 'C410'. " color line
    ENDIF.
    IF SY-TABIX = 2. " color CELL
    CLEAR XCOLOR.
    XCOLOR-FIELDNAME = 'MTART'.
    XCOLOR-COLOR-COL = '3'.
    XCOLOR-COLOR-INT = '1'. " Intensified on/off
    XCOLOR-COLOR-INV = '0'.
    APPEND XCOLOR TO IMARA-TCOLOR.
    ENDIF.
    MODIFY IMARA.
    ENDLOOP.
    ENDFORM. "get_data
    FORM WRITE_REPORT.
    DATA: LAYOUT TYPE SLIS_LAYOUT_ALV.
    LAYOUT-COLTAB_FIELDNAME = 'TCOLOR'.
    LAYOUT-INFO_FIELDNAME = 'COLOR_LINE'.
    PERFORM BUILD_FIELD_CATALOG.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    IS_LAYOUT = LAYOUT
    IT_FIELDCAT = FIELDCAT
    TABLES
    T_OUTTAB = IMARA.
    ENDFORM. "write_report
    FORM BUILD_FIELD_CATALOG.
    DATA: FC_TMP TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE.
    CLEAR: FIELDCAT. REFRESH: FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Status'.
    FC_TMP-FIELDNAME = 'LIGHT'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '4'.
    FC_TMP-ICON = 'X'.
    APPEND FC_TMP TO FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Material Number'.
    FC_TMP-FIELDNAME = 'MATNR'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '18'.
    APPEND FC_TMP TO FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Material Type'.
    FC_TMP-FIELDNAME = 'MTART'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '10'.
    APPEND FC_TMP TO FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Material'.
    FC_TMP-FIELDNAME = 'MAKTX'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '40'.
    APPEND FC_TMP TO FIELDCAT.
    ENDFORM. "build_field_catalog

  • Drill down path

    how to display the drill down path on somewhere near the chart
    for example,
    there are 3 levels in a dimension: category, brand, product
    then "software - microsoft - windows xp home edition" is shown on somewhere.
    thank you very much!

    "software - microsoft - windows xp home edition" is the sample of the drill down
    "windows xp home edition" is one of the products in brand "microsoft"
    "microsoft" is one of the brands in category "software"
    that means the user first clicks one of the bars which is "software" on the bar chart.
    then the path will be "software"
    then the user clicks one of the bars which is "microsoft" on the bar chart.
    then the path will be "software - microsoft"
    and so on...

  • "How can I call Drill down report in 10g Without hard code user/password"

    Dear All;
    Can I get the "Pasword" of the login user in oracle, because I want to use in report, i have get the
    User Name and Connecting string already but I can not get the Password. can I anybody tell me
    "How I get the Password in Oracle 10g"
    Give User Name: = SELECT SYS_CONTEXT('USERENV','CURRENT_SCHEMA') FROM DUAL;
    Give DB Name: = SELECT SYS_CONTEXT('USERENV','DB_NAME') FROM DUAL;
    BUT how I get the password............???
    regards;
    Zahid Hussain
    Edited by: zahid9999 on Jun 10, 2010 3:04 AM

    hi
    you can use openDocument for this.
    [http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_url_reporting_opendocument_en.pdf]
    I would suggest to use variables that build the HTML code for the hyperlinks dynamically, and display them in your crosstab. Set the display option for the related cells (ie. the cells where your variables are displayed in) so that the cell's contents as interpreted as HTML code.
    Regards,
    Stratos

  • ADF: Can drill down feature of data visualization chart trigger a method?

    I'm using jdev 11.1.1.2.0 and I can see that charts can use a master-detail link to allow the user to click on a data element in a chart and so select the data in the detail chart. Can this feature be used in other ways?
    I'm wondering whether a click on a chart could call a method which uses the data selected in the chart. For example, a click on a marker in a scatter graph might write that data (x and y values, maybe even some of the tooltip data) into a separate table; alternatively such a click would copy such data into variables which will be combined with data selected by further clicks on the chart, eventually updating a table with calculations based on the data points selected.
    Possible?

    I'm afraid I haven't been able to work it out. The instructions on using the demo describe creating a project from a WAR file - but the download of the 11.1.1.3 version isn't a WAR file, it's a ZIP. I also tried extractng and copying the files but couldn't work out what was required - it seemed particularly odd that there wasn't a JWS file.
    Also, I'm still on 11.1.1.2: should I still be able to get most things running?

  • Drill down more than one characteristic at the same time.

    Hi,
    Is there any way to drill down more than one characteristic at the same time?
    When I drill down by 0cust_sales I would like to have drilled down: division/distrchan/salesorg/cust_sales without having to do that one by one.
    thank you!

    Hi,
    This cannot be done unless these characterstics are related to each other in some way as Charactertics & Display Attributes.
    The reason being when you drill down the 0cust_sales , there is no link from 0Cust_sales to the other characterstics hence there is no prompt for these characterstics to be drilled down.
    However, a smiliar thing might be acheived by adding these chareacterstics into the 0cust_sales in teh query designer by dragging n dropping them over 0cust_sales. you can try this and see if this is close to your requiremetn.
    Kind Regards,
    Tapish

  • Customized drill-down report cannot go to line item level (FGI4 and FGI1)

    Hi Expert,
    I created a customized drill-down report using New GL features, as follows:
    FGI4 create form, with reference to form: 0SAPBLNCE-01
    FGI1 create report for the form created.
    After that I set some things like characteristic, variables, and output type.
    When I execute the report, the data shown cannot be drill-down to line item level:
    Goto > Line Item (this function is disabled).
    Kindly advise why I cannot goto line item level, where I copy from standard form: 0SAPBLNCE-01, which ha sthe features of drill-down to line item level.
    Thanks
    sbmel

    Hi sbmel,
    For calling up a line item report in a drill down report you need to make the below settins:-
    - You first have to generate the line item report with program RGRGENSI for your summary table.
    - Then assign the generated line item report to the summary report.
               Assiging the report is part of the 'Change drilldown report' function, which you reach by activating the characteristic selection field and then Extras -> Report assignment.
                In the dialog box that appears, choose the 'Other report type' function and insert the line item report generated earlier, as an ABAP report
    Regards,
    Gaurav
    Edited by: gka2707 on Jul 19, 2010 8:07 AM

  • Despite my best efforts, I am unable to remove iTunes 11.1.4 from my PC, this being made necessary because the original installation had a flaw and did not load properly. Effor to use the control panel, deleting dll. files, etc. all failed. iTune out??

    Despite my best efforts, I am unable to remove iTunes 11.1.4 from my PC, this being made necessary because the original installation had a flaw and did not load properly. Effor to use the control panel, deleting dll. files, etc. all failed. And, of course, on startup, a window opens with the error and tells me find QTMovie.dll and delete it because this may be the source of the hangup. Also, in trying to delete iTunes, I get the additional message that I must get approval from the System Administrator to take this action. I am the System Administrator.
    Any ideas would be welcomed.
    Thank you.
    James
    <E-mail Edited by Host>

    Thank you for asking this question.  I'm having the same issues. 
    Liz

  • My FSG report drill down redirectly to PROD url in the cloned instance

    Hi All,
    Version : R12.1.3
    DB : 11.2.0.3
    My FSG drill down is giving error in my DEV instance ,as the drill down is taking me to wrong url(PRODUCTION)
    Anyone know where to define the hostname for drill down RG.
    Thanks

    Brian:
    Thanks for the reply.
    I found out a simple drop-down list referencing to a conditional MEMBERSET cell (if a then level4 else level 5) works pretty well.
    I do have two questions though:
    1. For LDEP or LALL, it puts the parents on top of the children. Is there anyway to display the children nodes first before their parents? For instance:
    LDEP (2, TOTALFOOTWEAR) gives me:
    RUNNING (LEVEL1)
    Men's Running (LEVEL2)
    Women's Running (LEVEL2)
    WALKING (LEVEL1)
    Men's Walking (LEVEL2)
    Women's Walking (LEVEL2)
    When I really want:
    Men's Running (LEVEL2)
    Women's Running (LEVEL2)
    RUNNING (LEVEL1)
    Men's Walking (LEVEL2)
    Women's Walking (LEVEL2)
    WALKING (LEVEL1)
    2. It took me a while before I realized there is a LDEP function. How did you get LALL LBAS, etc? Is there a complete reference document?
    Thank you! Happy Holidays!
    Brian

  • Can not down load my programs, my disk dose not work.,, and I keep getting this massage when i try down load off Adobes sight....  HTTP ERROR: 404 /support/downloads/dlm/main.jsp

    can not down load my programs, my disk dose not work.
    and I keep getting this massage when i try down load off Adobes sight....  HTTP ERROR: 404 /support/downloads/dlm/main.jsp

    Hi Tim,
    Kindly try the link mentioned below.
    Other downloads
    Thanks,
    Atul Saini

  • Apple Mail: How can I automatically set a signature, depending on the sender, NOT on the account?

    Apple Mail: How can I automatically set a signature, depending on the sender (have several for one account), NOT on the account?
    I have some comma-separated senders in my Apple Mail accounts, some for business, some for private (using the same account). When I'm sending a business mail, I would like to append my business signature, when I send a private one, either nothing, or a fun signature.
    Best,
    Berlin1892

    karenbee,
    Here's the solution for PCs: Tools>Options, then click Sync in the Options window. Good luck.

Maybe you are looking for

  • How to create events in iCal

    I know we can create events (like birthdays, anniversary etc.) from address book and sync it with iCal. What i want to know is how do I create an event (b'day, anniversary etc.) for a person who is not in my address book.

  • Need help on how to re-install​/wipe OS on my BB Torch 9860

    Can anyone in the house please give me a breakdown on how I can wipe completely my blackberry torch 9860 device and re-install a new OS without any fuss, thank you.

  • I upgraded to iOS 7 and did a dumb thing

    I upgraded to iOS 7. When asked to type in a 4-didit, I blithly did, not realizing what I was really doing. Later when I wanted to use the phone, it asked me for the code, which I had completely forgotten. I have tried to correct this by following Ap

  • Nexus 5500 qos drop priority

    Hi If I have two COS values within the same queue on a 5500 port can I set drop priority for them ? I am looking at setting in contract and out of contract data rates for some VMs, setting the COS value dependant on this and then getting the 5K to be

  • IChat wont send files. Please help.

    I've just started using iChat this week and it works great. Everything works like it should except i can't send files. It's shows a progress bar saying it's waiting for the recipient to accept but after a few seconds it says failed. How can i fix thi