How do I get the dashboard by default when users connect

Hello



I have 3 users and and I designed 3 dashboard.



Let's say that User1, User2, User3 and Dashboard1, Dashboard2 and Dashboard3. If user1 connects by default, it can get dashoard1 and if User2 connects by default it can get dashboards2 is, how to get there.



Thank you

Malli

Hello
Steps to follow:
Default dashboard for all users.
* 1. Created a block of init session *.
* 2. Source of the data used in select ' / shared/SH Test / _portal / Test1 ' double 3. The value assigned to the variable session CHEMINPORTAIL 4. In presentation services > Administration > my account > default dashboard must be set to "default". Then only the dashboard specified in block init will appear otherwise my account will override the init block.*
* 5. Save the changes to rpd.*
* 5. Disconnect and reconnect to see if it works well. It works perfectly fine.*

For more details, please see the document of CSG replication. But this is for all users.

If the customer wishes to have a user/group basis homepage.
* 1. They may need to have 2 separate tables.*
i. Group_path_tab with 2 columns. Group_id, portal_path have group wise path portal for all the groups ii. The card user group table Group_id, groupname, user_id

The user should be part of a group.

* 2. Then in the writing init bulk sql must be something like that *.

Select A.portal_path in the Group_path_tab A, User_group_map B where = B.user_id: USER and B.Group_id = A.Group_id

SO, based on the USER session variable, it will try to identify the group, and then the portal_path.
Finally, set this value to the session CHEMINPORTAIL variable.

Example:

Please see the below a... it will be very useful to set the homepage to be different on a per user/group basis

http://varanasisaichand.blogspot.com/2010/09/default-dashboard-using-portalpath.html
http://total-bi.com/2011/01/OBIEE-11g-change-default-dashboard/

That is to say:
Init block

Select ' / shared/AFS/_portal/GPC AFS Reporting "of the double
Objective variable is CHEMINPORTAIL (this is CASE-SENSITIVE)

"/ shared/AFS/_portal/GPC AFS Reporting."

Finally, it is to be like this

real (earliar one)
http://w01sgpcbiapp1a:9704/Analytics/saw.dll?dashboard&PORTALPATH=&/shared/AFS/_portal/GPC AFS statement
After the call to the default:

http://w01sgpcbiapp1a:9704/Analytics/saw.dll?dashboard&PortalPath=%2Fshared%2FAFS%2F_portal%2FGPC%20AFS%20Reporting

Thank you

Deva

Published by: Devarasu on October 6, 2011 12:38

Tags: Business Intelligence

Similar Questions

  • How can I get Google to be default when I opened top-a-new-tab? Should what modules I install? Thank you, Alan

    How can I get Google to be default when I opened top-a-new-tab? Should what modules I install? Thank you, Alan

    You are welcome.

  • How can I get the taskbar to show when I want to use?

    In many programs, the taskbar disappears from the bottom of the screen.  Sometimes I need to use an icon that sits on the bar spots.  How can I get the taskbar to show when I want to use an icon on this subject?

    What are 'many programs' to make it happen?  If you are using "full screen", you must leave this mode, usually by pressing F11 or ESC key.

    Unless you are referring to a mode "full screen" programs...

    • The taskbar should appear if you move the mouse to the bottom of the screen.

    OR

    • Right-click on an empty part of the taskbar, and then select Properties
      Uncheck the box "auto-hide the taskbar."
      Click OK
  • How can I get the administrator rights on my user account?

    OT: Without administrator rights.

    I don't have my active administrator account.

    I had a user account that I removed myself from the group administrator.

    Now I'm locked to do anything.

    I can't assign me to the admin group, I can't allow the user to administrator, I can't edit some files or delete some software...

    I tried cmd but get access denied when you try to activate the administrator account. It does not help if I open CMD or anything else with administrator privileges.

    I can't open the recovery mode, tried to start in safe mode and all the rest.

    How can I get the administrator rights on my user account?

    I had a user account, which I removed myself from the group administrator.

    -> This is called "paint yourself in a corner.

    I tried cmd but get access denied when you try to activate the administrator account. It does not help if I open CMD or anything else with administrator privileges.

    -> Is normal. Either you are an administrator, or you're not.

    How can I get the administrator rights on my user account?

    -> Ask a friend to burn a CD repair system for you (Control Panel / backup and restore). Now to use this CD to start the machine in Repair Mode, and then use the system restore to set Windows to a point before you downgrade your one and only the admin account.

    When you're done, plan ahead a little and create, test and document a spare, even admin account that you have a spare House key. This will save you a lot of trouble.

  • How can I get the Client VPN or NAT - ted connection

    I installed a router on a customer site to replace a PC that made the NAT on a cable modem connection.

    On the router THAT NAT is done to get all the s PC on the LAN to access the Internet.

    But... one of the users use a VPN client to get to his office. With the PC, there is no problem, but given that the router is in place it can not connect.

    Because I specialized on switched networks my knowledge; edge of NAT and VPN clients.

    Is there anyone who knows how to get this VPN client-session user to be NAT - ted?

    Kind regards

    Martijn Koopsen

    If you have some onfigured of overload, then you tap the traffic. In all cases, you should at least be able to establish a connection, as IPSec uses UDP 500 for the negotiation of the tunnel. If you are not able to pass all traffic, it is another question. Once the tunnel is established, the traffic can be encrypted using the Protocol ESP who cannot be tapped under normal circumstances. If this is a cisco IPsec client, then you must discover which is the feature of termination. If it's a hub 3K, you could activate IPSec over UDP to the problem of circumvention the ESP

    Hope that helps

    Jean Marc

  • How can I get the classic report value when I click on the record?

    Hi all

    I have a simple classic report and I want to get the empno when I click on record. For example, when I click on record 1, and I'll go '7369', if I click on the 3 card, and I'll go '7521'. How can I do this? Please help, thanks!

    Hi jane.kuang,

    Jane.Kuang wrote:

    Thank you very much!!! Your message is useful for me. But this javascript has something wrong. When I click on the first time, the empno appears only once, but when I click on the other record, empno appear twice, and I click on the third time, it appears three times... I'm new to JS, I don't know how to fix it. Thank you!

    Use instead the dynamic action to that effect.

    Here are the steps:

    • Change your region classic report-> section 'Attributes'-> 'ID' static-> give an id say myempregion static
    • Create a dynamic action with the following attributes:

    Event: click on

    Selection type: jQuery Selector

    jQuery Selector:

    #myempregion table.uReportStandard tbody tr
    

    Action: Run the JavaScript Code

    Code:

    var empno = $(this.triggeringElement).find('td[headers="EMPNO"]').text();
    alert(empno);
    $('#P21_X').val(empno);
    

    Items concerned: keep it unselected

    • Change once created, your dynamic action-> go to section 'Advanced'-> set 'Extended event', 'dynamic'.

    This will fix the following in the code of the Para:

    • The jQuery Selector used by Para to trigger the click event is bad. This will fix the multiple alerts.
    • Para code won't work on loading the page, but if there are many rows in the table and pagination for the report is in place, and then when you paginate your report, it will not work. But it will work with dynamic action 'Scope of the event' the 'Dynamic' value even when you paginate the report.
    • Finally, most of the dynamic interactions page must be converted to dynamic actions, this will help the maintainability of the code, instead of stacking the javascript in your page.

    Kind regards

    Kiran

  • I used to get the Blue error screen when you connect to the wide I did the registry clean, but now, when you connect the computer stops with no error message.

    How can I fix it? or what is wrong now?

    Hi Stelana,

    If I understand correctly, the computer turns off when you want to disconnect.

    This behavior may be caused by this security software on the computer, or the computer might be infected with the virus.

    To refine the question, I suggest you try the following steps:

    Step 1: Disable the security software and test, follow the steps mentioned below

    http://Windows.Microsoft.com/en-us/Windows-Vista/disable-antivirus-software

    Note: Activate security software once it's all done.

    Because this problem occurs after cleaning registry, critical registry keys may have been changed.

    Some programs available for free on the Internet may contain spyware, adware or virus. Only download and install programs from software publishers that you trust. Even if the website, that you download the program trust, you must also trust the Publisher of the program. For more information, see when to trust a software publisher.

    Please see the link below:

    Registry cleaners are needed?

    http://Windows.Microsoft.com/en-us/Windows-Vista/are-registry-cleaners-necessary

    Step 2: Run a scan online for any threat and try to correct

    http://OneCare.live.com/site/en-us/Center/cleanup.htm

     

    You can follow the steps provided by Vincenzo Di Russo MVP to get rid of malware on your computer, please click on here.

    Thank you, and in what concerns:

    Ajay K

    Microsoft Answers Support Engineer

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How do you get the functionality of firefox when you page the entire screen

    I was on a firefox page and fool the screen full page. Now, I can't the configuration of firefox in the upper left corner of the screen to print, layout. How to restore firefox on the screen

    If you are in full screen view then hover over with the mouse upward to make the bar appear Navigation and tab bar.

    You can click the maximize button in the upper right to leave the mode full screen or empty space of a right-click on a toolbar and use "exit full screen" or press F11.

    Press F10, or press the Alt key to bring up the 'Menu Bar' temporarily if the menu bar is hidden.

  • How do I change the action by default when you download a .avi file

    I use a download manager, but recently I had to download using the download window in firefox. By mistake, I checked that box "do this for all files of this type." Now my download manager is is most contagious my downloads, and I can't find the option to remove it from the default action.

    can someone point me in the right direction? Please, I beg you!

    See the article by changing what Firefox does when you click on or download a file for more details.

  • How do you get the layers work correctly when you create a document merged into the InDesign data merge feature?

    Hey everybody,

    I working on a card game using data with a .csv file merge and spin in unusual behavior when you create a merged document when my master document had layers.  Imagine I had a layer of structure that looks like this:

    Layer has
    -< DataMergeFrameA >

    -Cooked in the static element
    Layer B

    -Cooked in the static element B
    -< DataMergeFrameB >

    -< DataMergeFrameC >

    Layer C
    -Cooked in the static element C

    -< DataMergeFrameD >

    Preview, this hierarchy is respected and the image is superb.

    When I create my merged document that each individual card includes this editable structure:

    Layer has
    -< DataMergeFrameA >

    Layer B

    -< DataMergeFrameB >

    -< DataMergeFrameC >

    Layer C

    -< DataMergeFrameD >

    And the order in which the elements are drawn resembles what happened past:

    -< DataMergeFrameA >

    -< DataMergeFrameB >

    -< DataMergeFrameC >

    -< DataMergeFrameD >

    -Cooked in the static element

    -Cooked in the static element B

    -Cooked in the static element C

    I would * really * like solving this problem without going through a column of data fusion with just the same picture in each area or something stupid like that, especially because some of my other static elements are generic text boxes. Is it possible to apply the stacking order in a merged document?

    I have attached a screenshot of the preview and the merged document.
    * WARNING: The main art is a temporary placeholder *.

    The one on the left is how it looks in preview. The second is the merged document. The major problems are that a) static grass image should appear on the art main and b) main image overlays areas of main text on the left. How can-

    InDesignPreviewBug.pngInDesignMergedDocumentBug.png

    Try moving it all off the master and on the page of document in the model.

  • How do you get the toolbar to display when you compose an email?

    When you compose an email I do not have a bar tools that give me such options to add an attachment, save as project etc.

    You try to use an e-mail client based on the web or Thunderbird?

  • How can I get the computer to indicate when an e-mail arrived.

    I would like the computer to indicate with a sound of my choice, when an e-mail arrived. This would be useful when I'm not working in other programs. I use the latest version of Firefox.

    Take a look at these add-ons for Firefox.

  • How can I get the drivers of softwareupdates / when the automatic system does not recognize my model number?

    Hello. I have a Pavilion dv9000 Vista Ultimate 64 bit laptop computer.

    When I type in dv9000 it ask to retype odel number or displays a list of the other models that are not mine.

    The support assistant shows my model correctly but isn't online support.

    Any ideas appreciated?

    see you soon

    Hello

    With the help of RP250UA evokes the model on the following link.

    http://h10025.www1.HP.com/ewfrf/wc/product?product=3340264&LC=en&cc=us&DLC=en&lang=en&cc=us

    Under 64-bit Vista research presents an update of the available bios - if you have an Intel F.2E processor.  I would say it seems to be no need to apply this patch (and the associated risks of flashing the bios) unless you want to upgrade to Windows 7.

    Kind regards

    DP - K

  • How can I get the grid to appear when you use the cropping tool... mine is grayed out

    My crop tool will not display the grid and he is grey.  What I'm doing.

    Hi ECastrillojr

    If please Set overlay tool forever or press 'H'

    ~ Assani

  • I recently downloaded the Lightroom upgrade but the old version remains the default Lightroom Application on my laptop and I can only access the new version through the Adobe icon at the top of ch. How can I get the new version of "AMPERAGE".

    I recently downloaded the Lightroom upgrade but the old version remains the default Lightroom Application on my laptop and I can only access the new version through the Adobe icon at the top of the screen. How can I get the new version of 'replace' the old?

    Try to uninstall the old version - it is not necessary.  An upgrade is a product independent and fully functional.

Maybe you are looking for

  • Acer W4 W3 bluetooth keyboard lag / stuck key

    Hey everybody, Everyone has noticed that there are problems with the Acer Iconia W4 with keyboard?  I have used with the W3 and had no problem at all, but now that I use on the W4, I often get massive lags (2 + seconds) between when I type something

  • Dist limit of 4 volumes. Is there a way to bypass?

    I have the following partitions/volumes put in place for the drive from my computer SYSTEM C: UNALLOCATED EXTENDED- BOOT / HP_TOOLS 100 M 300 G 170 G 500 m 25 G 200 M Extended just consists of the boot and / partitions for a linux OS. HP_TOOLS is not

  • Where can I find a twain driver for the scanner?

    Original title: twain driver for Windows 8 After having upgraded Win 8, my scanner has failed. Once verified, the problem come from twain driver. Pls help

  • Current column in af:table

    Dear Experts,I use JDev 11.1.1.7.0. I have a task to create a button that does something with the name of the column that is currently selected in an af:table component.How can I get the name of the column that is currently selected in a bean?Thank y

  • Tablespace not specified in the CREATE DATABASE command

    HelloI'm cloning a database using "backup controlfile to trace", copy the data to another server, do a restore using backup controlfiles and deliver an open resetlogs.The last steps in the case of "manually", not by the script "create controlfile ':R