How to have KM useful links ivew in a drill down tree format.

Hi All,
I am having a KM iview which displays useful links.
The problem is it initially displays only one/two levels of drilldown from the configured root folder. How can we modify such that it displays <b>n</b> levels of folders & links from the configured.
Also here in the iview every user is having access to organize the folders & links with the command link <b>Organize Entries </b>. How can we configure such that this link is visible only when a Role is assigned to the user.
Many Thanks,
Sai.
Edited by: Konchada Sai Krishna on Jun 16, 2009 6:30 AM

Hi All,
I am using KM Navigation iview to display Useful links.
I was using <b>LinlListExplorer</b> layout set earlier.
On search in SDN and SAP help found that we can use <b>RoomTreeLayoutSet</b> to display the KM folders in drilldown tree format.
But unfortunatly, when I preview this <b>RoomTreeLayoutSet</b> in KM config it works fine but when I use this in the iview layout profile, the none of the folder / documents are displayed..
Does anybody came across this issue earlier, how can this be resolved.
Many Thanks,
Sai
Edited by: Konchada Sai Krishna on Jun 17, 2009 5:30 AM

Similar Messages

  • How can I get the link not to override my style sheet formatting?

    I have an html page with text that has a style sheet applied
    to it. When I insert a link into parts of the formatted text, the
    style sheet formatting is lost in the linked text (the text for
    mylars, shapes and number shapes becomes smaller: see code below).
    How can I get the link not to override my style sheet
    formatting?
    Here is the html code I am referring to:
    <span class="bodyheader20pt">Fall into winter's biggest
    celebration with our New Year's Day <a href="
    http://www.usballoon.net/web/default.asp?pagename=mg_cls&mg=A9&mg2=&cl=A4&sc=184&PageNumbe r=1"
    style="text-decoration:none">mylars</a>, <a href="
    http://www.usballoon.net/web/default.asp?pagename=mg_cls&mg=A9&mg2=&cl=L2&sc=184&PageNumbe r=1"
    style="text-decoration:none">shapes</a>, and 2-0-0-9 <a
    href="
    http://www.usballoon.net/web/default.asp?pagename=mg_cls&mg=A9&mg2=&cl=L2&sc=166&PageNumbe r=1"
    style="text-decoration:none">number
    shapes</a>.</span>
    I am using Dreaweaver CS3 on a Mac running OSX
    10.4.11.

    Show us this rule --> bodyheader20pt?
    Also, having this in your three anchor tags -
    style="text-decoration:none" -
    will prevent your anchors from displaying any stylesheet
    style for
    text-decoration.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "ellfwar" <[email protected]> wrote in
    message
    news:geqiph$foq$[email protected]..
    >I have an html page with text that has a style sheet
    applied to it. When I
    > insert a link into parts of the formatted text, the
    style sheet formatting
    > is
    > lost in the linked text (the text for mylars, shapes and
    number shapes
    > becomes
    > smaller: see code below).
    >
    > How can I get the link not to override my style sheet
    formatting?
    >
    > Here is the html code I am referring to:
    > <span class="bodyheader20pt">Fall into winter's
    biggest celebration with
    > our
    > New Year's Day <a
    > href="
    http://www.usballoon.net/web/default.asp?pagename=mg_cls&mg=A9&mg2=&cl=A4&
    > sc=184&PageNumber=1"
    style="text-decoration:none">mylars</a>, <a
    > href="
    http://www.usballoon.net/web/default.asp?pagename=mg_cls&mg=A9&mg2=&cl=L2&
    > sc=184&PageNumber=1"
    style="text-decoration:none">shapes</a>, and 2-0-0-9
    > <a
    > href="
    http://www.usballoon.net/web/default.asp?pagename=mg_cls&mg=A9&mg2=&cl=L2&
    > sc=166&PageNumber=1"
    style="text-decoration:none">number
    > shapes</a>.</span>
    >
    > I am using Dreaweaver CS3 on a Mac running OSX 10.4.11.
    >

  • How to Hide/show the columns data while doing Drill down or drill up

    Hi ,
    How to Hide/show the columns data while doing Drill down or drill up in webi report .
    Does it possible BO 3.1 version ?
    Please suggest me on this.
    Thanks & Regards
    Venkat

    While that is not there yet, you can make use of the show when empty yes/no in combination with alerters.
    So I have an alerter applied to every cell of the table.
    When a condition is true (say I drilled down) I just put = "" in every cell, emptying the table,
    because its now empty and doesn't need to show, it wont.
    For the detail table I use the opposite, so when you drilled down it becomes visible...
    Hope this helps all that do not have 40 yet
    Good luck,
    Marianne

  • How to have an email link that accesses APEX page w/o logging in again.

    Greetings,
    It is common in our APEX applications to send email to a user with a link to a specific row of data so they may access the row and approve it. The user who gets the email is already logged into the application, but when they click on the link in their email they are prompted to log in. How do I get around this?
    Thanks, Tony
    Edited by: cloaked on Jul 5, 2012 2:47 PM

    What you need is a custom page sentry setup which detects if there is an already valid session and then uses that.
    See {thread:id=2283805} for a fantastic example by Patrick Wolf about page sentry functions. You will need to alter it to retrieve a valid session, through apex_custom_auth.get_session_id.
    For some more pointers, take a look at these blog posts
    http://joelkallman.blogspot.be/2010/10/custom-authentication-scheme-for-oracle.html
    http://zetetic.net/blog/2010/12/10/updating-page-sentry-for-apex-40-upgrade.html
    http://timnzblog.wordpress.com/2010/09/13/application-express-and-janrain/
    (example code taken from last blog:)
    FUNCTION PAGE_SENTRY
    RETURN BOOLEAN
    IS
        l_username VARCHAR2(512);
        l_session_id NUMBER;
    BEGIN
        IF USER != 'APEX_PUBLIC_USER' THEN
            RETURN false;
        END IF;
         l_session_id := wwv_flow_custom_auth_std.get_session_id_from_cookie;
         -- check application session cookie.
         IF wwv_flow_custom_auth_std.is_session_valid THEN
             apex_application.g_instance := l_session_id;
             l_username := wwv_flow_custom_auth_std.get_username;
             wwv_flow_custom_auth.define_user_session(
                 p_user => l_username, p_session_id => l_session_id);
             RETURN true;
         ELSE
             OWA_UTIL.REDIRECT_URL('f?p=RPXAUTH:LOGIN:'||
                 nv('APP_SESSION')||
                 '::::RETURN_APP_ID,RETURN_PAGE_ID:'||
                 v('APP_ID')||
                 ','||v('APP_PAGE_ID'));
         END IF;
         RETURN false;
    END page_sentry;Perhaps others have more recent links, but this is the direction you should be looking at. I haven't set this up myself yet though, so i can't really be of much more assistance on this.

  • I updated Adobe flash player and now i'm unable to open Opera and I have to use the power button to shut down the computer?

    I updated Adobe flash player and now i'm unable to open Opera and I have to use the power button to shut the computer down.
    How do you delete programs?
    thanks

    If Flash Player is indeed the problem I would suggest using the Adobe Uninstaller.
    Have you tried using a different browser such as Chrome, Firefox or Safari to see if they have a problem with Flash?

  • How does OBI decide what column to display when drilling down on hierarchy

    Hi All,
    Lets say I have a logical table called Custom_Account which has Level 1 through 10, where 1 being the total level and 10 being the detail level. I have created a level based hierarchy.
    On the total level, lets say I have 2 columns called Hier1_code and Hier1_name, and in the next level, I actually have four columns, Hier2_code, hier2_name, hier2_desc, hier2_details.
    Now what configuration settings do I need to make in order for OBIEE to display all the fouce columns from level 2 when a user clicks on a column from level1?
    Meaning, how do I define the columns that would be displayed upon drilling down from a parent level to child level.
    Can someone please give some clear explanation, as I am confused here.
    Thank you,
    Peter.

    Hi Peter,
    After you have defined a hierarchy, you could open the properties of any level in the hierarchy and set the 'Use for Display checkbox' in the "Keys" tab for all the columns you would like to be displayed at this level.
    Hope this helps.
    Thank you,
    Dhar

  • How to get the 'hand' cursor on an ALV drill down report?

    I have a drill down on PO # going to trans ME23N that is working great.
    But I have noticed on my other drill downs (E.G for billing doc VF03) that when the report is displayed the drill down field value is a) underlined and b) has a 'Hand' appear when you place the cursor over the billing document field.
    This does not happen on my PO # - it is not highlighted with an underscore, nor do you get the small hand  - but it does work when you double click the field.
    The field I am using on the ALV report is RSEG-EBELN.  This is not a KEY field in the table - perhaps that is why it does not have the underscore and the 'hand'.
    Thanks!
    Scott

    Here it is.
    When you build your field cat use the below code.
    DATA : x_fieldcat TYPE slis_fieldcat_alv.
    * Single click on the field will trigger double click event.Also, a hand
    * will appear when the cursor navigates to the field
      X_FIELDCAT-HOTSPOT = 'X'.
    Regards,
    ARS

  • How can i call one report from another report (Drill Down Approach)

    Hi Friends,
    I've two reports in completely different layout format.
    One is in Crosstab & another is in Tabular.
    Now i want to call my Tabular report(report 1) from my Crosstab (report 2) without using BO's default drill down feature. Or, you can show using BO's feature if it supports my requirement.
    How to do that?
    Is it at all possible?
    Please share your thoughts. Thanks in advance for your time.
    Regards.
    Satyaki De.

    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

  • Using multiple XML files for drill-down

    I have an XML file which populates a graph showing months of the year.  I have 12 other XML files which have data for each day of the month running from 1 - 31.
    What I would like to do is use the 12 XML files to drill down for each of the months on my graph, but am struggling to get it to work.
    The XML that populates the graph is in the following format :
    <?xml version="1.0" encoding="utf-8"?>
    <items>
         <item month="Jan" value="536102" />
         <item month="Feb" value="484570" />
         <item month="Mar" value="155840" />
    and the other XML files are in the following format:
    <?xml version="1.0" encoding="utf-8"?>
    <items>
         <item Timestamp="24/04/2010" Value="4178" />
         <item Timestamp="25/04/2010" Value="8075" />
         <item Timestamp="26/04/2010" Value="14611" />
    Would it be simpler to combine all the XML into one file?
    Sorry that this is a bit vague, but if you could help me that would be appreciated. Let me know if you require any more information.
    Thanks.

    You can only import a single XML file. You may have an xml file that has multiple occurances of data but it must be a single xml file.
    So you woudl have to find a way to combine all of those xml files into one then do the import.
    Paul

  • How to show the chart(of report header) in drill down tab

    Hello all,
    i have a subreport with a chart in report header,which has drill down functionality, my requirement is the chart should be visible in drill down tab.
    thanx in advance.

    Hi,
    I believe you need to go into File -->  Report Options and select 'Show All Heades On Drill Down'.
    Michael.

  • I am unclear how I have to use the Recovery CD

    I have added up all the space my hard disk is using it comes to about 12GB, I have 27.9 GB disk space but my disk only has 1.80 disk space left. I have done everything obvious to resolve this problem. Recycle bin is empty, I have run disk clean up.
    A computer expert suggested that Windows could have become confused and cannot recognize what space I have spare, this could be because I have run a program called Cyberscrub often. His solution was to reload Windows XP home. My laptop came with recovery disks, everything else already loaded. I have so much I do not want to lose on my laptop. If I use the recovery disks, will I lose everything on my computer, am I best to buy Windows XP home and re-load, in which case will I not lose my work?
    Also I am unclear how I use the recovery discs, I cannot find any instructions on what you do.
    The one person who could help me has gone off traveling and not contactable.
    Any help greatly appreciated
    Lorraine Hart

    Hello,
    what kind of programs do you have on your harddisk? Maybe a little description of your System will help us further. You mentioned, that you have a Program called Cyberscrub. Is this Program showing you your diskspace? Check this out! This program is, as i know, usually intended to wipe harddisks or files.
    Maybe you can try some Registry cleaner that cleanes out some information which is showing you wrong information that is corrupted by Cyberscrub. Maybe this helps.
    Another suggestion: run the program "chkdsk". This program will check out your filesystem on errors. Maybe it can fix that problem. You can run this program with right-clicking on the symbol of your systemdisk, clicking on "extras" and choosing the "Checking on errors" or something like.
    At all events, when this fails, then you dont have to buy a new XP Home. You dont need it because you have already one on a recovery cd, and you can solve that easily.
    You have to write down which programs you have in your system and backup your important data with a backup program or just burn it to a dvd or cd. You have the option to put the whole system on a mobile Harddisk connected over USB. This means backing up your system to this harddisk.
    After that, you have to boot with the recovery-cd, by pushing the "c" button at boot time.
    Then you follow the instructions and reload the "factory-like-installed" Windows XP on your Harddisk. Dont forget: all your data on the system disk will be erased, and the corrupted information of the free diskspace too. After that you just put the backup of your data back to your systemdisk and reinstall the programs you noted before the re-install of your system. Then the system will be clear again.
    Let me know about the activity of your problem.
    Greets

  • How to attach sound using link to any button?

    Hi,
    am using this code to call sound file after click on button.
    PAdha1.onRelease = function () {
    mySoundC = new Sound(this);
              mySoundC.attachSound("PAdhaSound1");
             mySoundC.start(0, 99);  //10 represents the number of loops
             gotoAndPlay("play2");
                          _global.myTaalLaya = "High1";
    My problem is I have more than 100 buttons and their own sound files.Now ,this buttons are on separet scene so, it creates separet image for each button and separet sound for each button which is in liblary.Now,my problem is there are huge sound files and button images.So,flash is not supporting this.It does not show .swf file(Output result).
    I think this is beacause of a lot of images and sound files.
    Is there any other way to call sound file through link function.Now sounds files are called through "linkage".from liblary.
    am using flash cs 5 with as 2.

    I found some refrance it,works.But another thing is every code i found is applied on button.But,I cant use this code b.coz I have n number of buttons,it will again create problem.Can u suggest me anything more?
    I want something like it will attch sound through folder path (link).And 1 button should abale to play more than 10 sounds with diffrent click.
    Thanks.

  • How to have Firefox use same bookmark file when running on either Windows XP or Ubuntu (dual boot desktop)

    Recently installed Ubuntu 10.04 on my desktop in a dual-boot configuration with Windows XP. (Ubuntu is awesome !)
    I can run Firefox on either OS - each version maintaining its own bookmark file.
    Is there any way to have each version of Firefox look in the same place for the bookmark file ? That would remove the need to regularly export/import bookmarks between versions to keep them in sync.
    Thanks !
    Andrew Chorlton

    You can use Firefox Sync.
    See:
    * [[What is Firefox Sync]]
    * [[How to sync Firefox settings between computers]]

  • How to Pre-populate DueDate+7 in Report w/ drill down HTML link to new task

    Wizards,
    I have created a report that has a column containing a HTML link to create a new task with pre-populated data filled in from the report row. Everything works great except two fields:
    (1) Due Date field should be Todays's date + 7 days.
    (2) Description should be today's date
    What is the formatting to populate these fields after the =? (&TaskEditForm.Comment=XXX)
    It seems to take whatever code I try and inserts the code into the field, instead of a date. So &TaskEditForm.Comment=CURRENT_DATE returns the words CURRENT_DATE
    Thanks

    Wizards,
    I have created a report that has a column containing a HTML link to create a new task with pre-populated data filled in from the report row. Everything works great except two fields:
    (1) Due Date field should be Todays's date + 7 days.
    (2) Description should be today's date
    What is the formatting to populate these fields after the =? (&TaskEditForm.Comment=XXX)
    It seems to take whatever code I try and inserts the code into the field, instead of a date. So &TaskEditForm.Comment=CURRENT_DATE returns the words CURRENT_DATE
    Thanks

  • Pages are not loading after using for 20 min so i have to use task maneger to shut it down and restart

    i can download for about 20 min then i try to go to another page by opening a new tab or using a bookmark Firefox totally freeze's up so i have to close down and go into the task mngr and shut down the process for firefox and restart because if i do not do that it will not open back up i am using vista home pro on a 64 bit system please help this very bothersome

    This issue can be caused by an extension or plugin that isn't working properly.
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]

Maybe you are looking for