Portal framework when using bookmarks

Hi
When we use bookmarks to run reports, the portal framework does not show (the portal menu). It is only the BI template that is shown just like when you run a template from WAD. Is it possible to direct the user to the report with the portal framework around the WAD template when using bookmarks?
Erik

Hi,
I do not want to create confusion but PFCG would not be helpful. If users want to run the report for different variables and different drilldowns. It would not be possible to keep record of their each bookmark and adding it to the Role.
Ravi: I did understand what your solution but How to do it is not clear to me.
they can save the bookmark of report in portal
Could you please elaborate on this one if you know how to do it. Per my understanding the Bookmark is saved in terms of Web template id.
~abhijit

Similar Messages

  • Error in UOMs when using Bookmarks

    Hi,
    I have a Forecast Consumption report which has 4 tabs: Data Analysis (which gives UOMs in KGs) , U.S. UOM View (which converts UOMs to LBs), Chart Display and Report Information.
    An interesting problem faced by an User. When the User runs the Forecast Consumption report from the web, he is able to see UOMs in KGs in Data Analysis tab and in LBs under U.S. UOM View, which is expected.
    But when he tries to execute the report using bookmarks, he is able to view only KGs in both the tabs in Data Analysis tab and under U.S. UOM View.
    Have checked all the settings and everything seems fine but cannot figure out why U.S. UOM is showing in KGs when the report is run via bookmark. Has anybody encountered this issue. Any help would be appreciated.

    Do you know how to use the 'result' parameter of the query
    tag to get
    the actual, complete SQL statement sent to the database.
    Looking at
    this may tell you what your issue is.

  • Garbled characters when using bookmark fast searches

    I add the following site into my bookmark search:http://bk.baidu.com/searchword/?word=%s&pic=1&sug=1&oq=w&rsp=-1
    and set keyword bk.When I search chinese words the search words become garbled characters.For example,I type"bk 内存" in the address bar to search,and it turns out the search words become garbled characters"鍐呭瓨".The search result address is "http://bk.baidu.com/notexists?word=内存",if I replace the %s with the search words and type it in the address bar,it turns out OK.Chrome do not have such problem.

    The difference seems to be this HTTP request (first 4 RC and second in 3.6).<br />
    That first code is the result of encodeURIComponent.<br />
    I don't know how the second is encoded, but it looks like a bug in Firefox 4.<br />
    That second request is also send in Firefox 4 if I use the search field on http://bk<i></i>.baidu<i></i>.com/
    * GET /searchword/?word=%E5%86%85%E5%AD%98&pic=1&sug=1
    * GET /searchword/?word=%C4%DA%B4%E6&pic=1&sug=1

  • Portal Favorites when using Application Integration

    Hi,
    We have implemented application integration for BW for rendering reports and display in portal. We have BI Java portal where the reports run and user portal where the rendered report gets diplayed. This has been achieved through Application Integration for BI Java.
    When the user saves the report, its getting saved on BI Java Portal Favorites. So the user is not able to see it. To resolve this we have followed the below steps:
    1. Created a remote iView in user portal which points to the Portal Favorites iView in BI Java portal -- using this we are able to see the user saved favorites in user portal
    2. Renamed the BEx Web(ID:bex) iView in user portal and created a remote bex iView which points to the BEx Web iView in BI Java portal - When I preview it, it displays the prototype properly
    Now when I click on the favorite links, those reports were not running. Only the bex prototype page is coming up.
    When a report is saved its bookmarkId is saved on KM user account in BI Java portal. From there I took the bookmarkId and added to 'application parameters' property value for bex remote iView in user portal. This made the report to run on BI Java and render the report on user portal. But when I click on the favorites link in user portal, it is not running the report.
    Does someone has any suggestion on this.
    Thanks in advance.
    Regards,
    Archana

    I was able to resolve this by creating a remote iView in user portal for the Portal Favorites iView from BI Java portal. And the remote iView created for the bex, we changed one iView property ‘Parameters Forwarded to Remote Application’ to ‘*’ which resolved the issue.
    Thanks,
    Archana

  • Small bug, there isn't a close button for my sidebar when using bookmarks.

    I have selected a few of my bookmarks/shortcuts to open in the sidebar. When they do, there is no way to close the sidebar. The little bar at the top does not seem to show up with the "X" symbol. When I open in a new window, however, it is there.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * [[Troubleshooting extensions and themes]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)

  • Don't want TOC to show when using Bookmark feature

    I want to use the bookmark feature on a quiz but the TOC shows on the screen.  How do you take it off?

    If you are NOT using an LMS then you can turn on Self Paced Learning in the TOC settings.
    If you ARE using an LMS, then Self Paced Learning is disabled and you need to rely on Resume Data Bookmarking which is on by default whenever you report to an LMS (unless you have Never Send Resume Data checked in your LMS Customization Settings in Captivate).

  • How to edit text in MS Word HEADER using bookmarks?

    I've been using the ActiveX calls to edit text in Word docs for a while. I assumed there was no trick to doing it in the header of a Word doc, but there seems to be no way to get into the header via LabView ActiveX calls.
    Regretably, Word also makes this tricky. I found these VBA hints:
    Bookmark, Go to Bookmark:
    (This method does not work with bookmarks in Headers/Footers)
    Selection.GoTo What:=wdGoToBookmark, Name:="Name"
    Bookmark, Select a Bookmark:
    (This method works when using bookmarks in Headers/Footers)
    ActiveDocument.Bookmarks("BookmarkName").Select
    Bookmark, Insert Text Using Range (Change Content of Range):
    (This method works when using bookmarks in Headers/Footers)
    ActiveDocument.Bookmarks("BookmarkName").Range.Text="Text"
    Bookmark, Insert Text Using Range (Add After Range):
    (This method works when using bookmarks in Headers/Footers)
    ActiveDocument.Bookmarks("BookmarkName").Range.InsertAfter _
       "Text"
    I have been using the first one and I was hoping one of the last three would be simple to implement, but there does not seem to be a way to do any of them via LabView.
     I do not have the reports tool kit, but I have seen nothing to indicate that it is possble with that either.
    So, is it possible to edit the headed of a MS Word doc?

    I'm also not happy about word and LabVIEW and I hope that there will be much more improvement with the open document format... right know I have to use a word document template .
    However, here is a code I use to fill bookmarks even in the header. I found that somehow the bookmark vanish after manipulation and you have to add it again.
    Hope that it help ....
    Greetings from Germany
    Henrik
    LV since v3.1
    “ground” is a convenient fantasy
    '˙˙˙˙uıɐƃɐ lɐıp puɐ °06 ǝuoɥd ɹnoʎ uɹnʇ ǝsɐǝld 'ʎɹɐuıƃɐɯı sı pǝlɐıp ǝʌɐɥ noʎ ɹǝqɯnu ǝɥʇ'
    Attachments:
    MSWord_write_recreate_Bookmark.vi ‏20 KB

  • Add to favourites disabled when using light framework page

    Hi,
    When using the light framework page our "add to favourites" link is disabled. If we instead use the normal framework page add to favourites in the dropdown menu works. Does anyone have an idea why this could be?
    Regards
    Mattias

    Hi,
    The reason why I decide to use Light Framework, itu2019s because Iu2019m creating an EFP, and Iu2019m using the WPC to publish the content (articles, news, and link list), using the standard Web Forms.
    The problem is, after adding to a WPC Page something so simple like an article (using the Web Form Article), no Portal iView, HTMLB or other stuff included, the preview of the WPC Page using the Default Framework Page is ok, but when using the Light Framework Page, the text in the article doesnu2019t have the correct font-family. It looks like there are some styles missing in the Light Framework Page, that WPC content is expecting.
    Thanks and Regards,
    John

  • No style applied when using light framework and WPC content

    Hi,
    Iu2019m facing a strange behavior, and Iu2019m almost pretty sure that is an error in the WPC, but I decided to post it here, maybe someone can confirm it. When using both, Light Framework and WPC, for some reason, the text inserted in the WPC containers, using the Web Forms, doesnu2019t appear correctly (no style/font applied), but viewing the same information, using the Default Framework Page, it works correctly.
    Any hint?
    Thanks and Regards,
    John

    Hi,
    The reason why I decide to use Light Framework, itu2019s because Iu2019m creating an EFP, and Iu2019m using the WPC to publish the content (articles, news, and link list), using the standard Web Forms.
    The problem is, after adding to a WPC Page something so simple like an article (using the Web Form Article), no Portal iView, HTMLB or other stuff included, the preview of the WPC Page using the Default Framework Page is ok, but when using the Light Framework Page, the text in the article doesnu2019t have the correct font-family. It looks like there are some styles missing in the Light Framework Page, that WPC content is expecting.
    Thanks and Regards,
    John

  • No content loads when using portal links

    We recently upgraded from 3.0.9.8.2 to 3.0.9.8.5 and in the new version we are having issues with our favorites portlet as well as any links that users create to send to other users. In the new version, after a user logs in, if they click on a saved favorite link, the new page does not load. The tabs at the top of the screen stay and the content of the page is left blank. The same thing happens if you copy a link into the browser window after logging in. However, if you navigate to the tab that the link is going to, and then go back to the login page and use the link, it works fine. We have a TAR logged with Oracle and they do not know what is wrong. Has anyone experienced a similar problem or know a solution?
    After testing, we came up with something interesting. When we were creating favorites, we were going to the page we wanted, copying the URL, and pasting it into a favorite. This URL is fairly short. Just now I tried right clicking on the folder I wanted to make a favorite and copying a shortcut. This URL is much longer (although it should point to the same place as the short one). When I tested the favorites, the first URL loaded a blank screen (as you saw in the ODC), but the second loaded the page correctly. I went back to our System Test environment to make sure that the problem does not exist there (this instance is still 3.0.9.8.2). Both the short URL and the long URL worked. Why should patching the portal cause the short URLs, which worked before, to
    stop loading pages correctly? Here is an example:
    Portal Production (3.0.9.8.5)---------------------------------------------------------------------------
    URLs for My Regional tab
    WORKS(right-click and copy shortcut)
    http://portal.us.colorcon.com:7777/pls/cc_prod/CC_INTRANET.wwpob_page.changetabs?p_pageid=952&p_regionid=2264&p_portletid=956&p_mainpageid=952&p_mode=3&p_debug=0&p_back_url=http%3A%2F%2Fportal.us.colorcon.com%3A7777%2Fservlet%2Fpage%3F_pageid%3D952%2C956%26_dad%3Dcc_prod%26_schema%3DCC_INTRANET
    BREAKS(navigate to page and copy URL)
    http://portal.us.colorcon.com:7777/servlet/page?_pageid=952,956&_dad=cc_prod&_schema=CC_INTRANET
    URLs for QA Tab under My Knowledge (this is a sub-tab)
    WORKS(right-click and copy shortcut)
    http://portal.us.colorcon.com:7777/pls/cc_prod/CC_INTRANET.wwpob_page.changetabs?p_pageid=952&p_regionid=2277&p_portletid=997&p_mainpageid=952&p_mode=10&p_debug=0&p_back_url=http%3A%2F%2Fportal.us.colorcon.com%3A7777%2Fservlet%2Fpage%3F_pageid%3D952%2C954%2C960%2C997%26_dad%3Dcc_prod%26_schema%3DCC_INTRANET
    BREAKS(navigate to page and copy URL)
    http://portal.us.colorcon.com:7777/servlet/page?_pageid=952,954,960,997&_dad=cc_prod&_schema=CC_INTRANET
    Portal System Test (3.0.9.8.2)-------------------------------------------------------------------------
    URLs for My Regional tab
    WORKS(right-click and copy shortcut)
    http://hercules.us.colorcon.com:8020/pls/cc_prod/CC_INTRANET.wwpob_page.changetabs?p_pageid=952&p_regionid=2264&p_portletid=956&p_mainpageid=952&p_mode=3&p_debug=0&p_back_url=http%3A%2F%2Fhercules.us.colorcon.com%3A8020%2Fservlet%2Fpage%3F_pageid%3D952%2C956%2C960%2C964%2C48%2C47%2C614%2C50%2C103%2C49%26_dad%3Dcc_prod%26_schema%3DCC_INTRANET
    WORKS(navigate to page and copy URL)
    http://hercules.us.colorcon.com:8020/servlet/page?_pageid=952,956,962,964,48,47,614,50,103,49,1006,1020,1154,1060&_dad=cc_prod&_schema=CC_INTRANET&2086_IT_EBUS_PROJ_93987.p_subid=83600&2086_IT_EBUS_PROJ_93987.p_sub_siteid=1&2086_IT_EBUS_PROJ_93987.p_edit=0

    Hi,
    The reason why I decide to use Light Framework, itu2019s because Iu2019m creating an EFP, and Iu2019m using the WPC to publish the content (articles, news, and link list), using the standard Web Forms.
    The problem is, after adding to a WPC Page something so simple like an article (using the Web Form Article), no Portal iView, HTMLB or other stuff included, the preview of the WPC Page using the Default Framework Page is ok, but when using the Light Framework Page, the text in the article doesnu2019t have the correct font-family. It looks like there are some styles missing in the Light Framework Page, that WPC content is expecting.
    Thanks and Regards,
    John

  • I have been noticing that when using the computer the mouse keeps going in places where I really do not want and just now select the sentence without I have done anything. Sometimes goes to places like bookmark or open tabs in website when I am reading a

    I have been noticing that when using the computer the mouse keeps going in places where I really do not want and just now select the sentence without I have done anything. Sometimes goes to places like bookmark or open tabs in website when I am reading a page.
    Also I have noticed opened windows that I have not opened.
    I have verified the sharing folder and also the remote access but it not let me turn it off.
    Also I have add a password to my computer and even using the same one it looks like is not working.
    The I photo stopped working, Mac Mail does not let me add rules (this is from one day to the other)
    The computer is mine, the internet I use is payed by me with a password. I did not give permission to anyone to use my computer or share my files.
    In system preferences in the sharing folder is showing everyone and staff.
    My computer is private I do not own a company and I do not have a network set up in my house.
    I had my photos removed from my computer and even after trying to reinstall I photo and fix the Mac Mail is not working.
    I am receiving emails saying that I have sent emails to people that I do not know and including in a time where I am working and not using the computer.
    Any suggestions in how to fix this issue?
    I really appreciate.

    With the multitude of issues you have I would take it to an Apple store or AASP and have them sort it out. Then I would sign up for Apple camp or one on one.

  • Keeping Bookmarks when using PDF Optimizer

    Is there a way to keep bookmarks when using PDF Optimizer? Or a way to easily transfer my links and bookmarks to the new document?

    Got it. I had "Discard invalid bookmarks" checked. Since the "Discard bookmarks" in the other menu was not selected I figured I would be fine. Oh well, it's working now.

  • [Automation] Differences when using Flex Automation Framework ?

    Hello everyone,
    I recently made some tests with Flex Automation Framework and noticed that using it slightly change the application behaviour.
    First, it changes the way container intercept dans handle mouse event as expalined in Adobe JIRA ticket #791:http://bugs.adobe.com/jira/browse/FLEXENT-791
    I'm using sdk 3.2 so it won't be fixed. However future releases (3.4+ and 4.0+) should not have this problem.
    Secondly I notice that using RuntimeLoader.swf on my application remove the text of some labels I have in my login form.
    This does not happen when compiling the application with automation libraries.
    Does anyone experienced other bahavioural changes when using automation ?
    Thank,
    Olivier

    Hi Olivier
    The only change which we know of is the one that you rightly pointed out in bug http://bugs.adobe.com/jira/browse/FLEXENT-791 . There are no other behavioral changes that occur when you compile your application with automation.
    With regards to your statement
    Secondly I notice that using RuntimeLoader.swf on my application remove the text of some labels I have in my login form.
    This does not happen when compiling the application with automation libraries.
    Can you please send us a working sample of this issue as we have not come across this behavior before.
    Regards
    Shanaz

  • Please help. my address bar has vanished. i have no idea how to retrieve it, so can only access bookmarked sites when using firefox.

    please help. my address bar has vanished. i have no idea how to retrieve it, so can only access bookmarked sites when using firefox.

    Make sure that you do not run Firefox in Full Screen mode with all toolbars hidden.
    * Press F11 to toggle full screen mode (Firefox/File > Full Screen)
    If the menu bar is hidden then press the F10 key or hold down the Alt key, that should make the menu bar appear.
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible: "View > Toolbars"
    * If items are missing then open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout" (Linux, Windows)
    * If a missing item is in the toolbar palette then drag it back from the Customize window on the toolbar
    * If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up.
    See also:
    * http://kb.mozillazine.org/Toolbar_customization

  • Weblogic 9.2 error when using spring framework and taglibs.

    I am getting the following error when using spring binding for a command form class.
    Class ExCommandForm
    private String firmCode;
    public String getFirmCode ()
    public void setFirmCode ()
    In my jsp I have the following
    <spring:bind path="exCommandForm.firmCode">
    <input name="<c:out value="${status.expression}"/>" type="text" value="<c:out value="${status.value}"/>" >
    </spring:bind>
    Ps. exCommandForm is the commandForm declaration in my SiimpleFormController.
    When I deploy the application to weblogic 9.2 I get the following error :
    <Apr 26, 2007 4:34:44 PM BST> <Error> <HTTP> <BEA-101017> <[weblogic.servlet.int
    ernal.WebAppServletContext@1f601c6 - appName: 'BDRui', name: 'BDRui', context-pa
    th: '/BDRui'] Root cause of ServletException.
    java.lang.ClassCastException: javax.servlet.jsp.jstl.core.LoopTagSupport$1Status
    at jsp_servlet._web_45_inf._jsp.__tradesearch._jspService(__tradesearch.
    java:1075)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run
    (StubSecurityHelper.java:225)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecuri
    tyHelper.java:127)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:283)
    Ps. Deploying application on Tomcat 5.23 works.
    Can anyone help on this ?
    cheers in advance.
    More Info - Using Weblogic 9.2 on UNIX, servlet 2.4, jstl 1.1
    regards
    Edited by kings_citi at 04/26/2007 9:03 AM
    Edited by kings_citi at 04/26/2007 10:35 AM
    Edited by kings_citi at 04/26/2007 10:36 AM

    The problem doesn't look like it has anything to do with wappers per se. The stack indicates that the JVM died when the persistent store tried to invoke a standard Java synchronize operation. JVM crashes need to be analyzed by a JVM expert, so I second the suggestion to solicit help from JVM experts and/or filing a case with customer support. In the mean-time, you can probably work-around the issue by either (A) ensuring you have a recent version of the JVM installed, or (B) temporarily switching to the Sun JVM.
    Regards,
    tom
    Edited by: TomB on Sep 17, 2010 2:33 PM

Maybe you are looking for

  • I want to recover purchased items from the past 6 years so i can have them on my computer

    hi im looking to recover past purchases from the past 6.5 years my fiance and i just broke up of 6.5 years and all my music is on her computer and i would like it on my computer so i can use it through other apple devices so i would like to know if y

  • Populating values in dropdown based on values selected in second dropdown.

    Hi, I  have two listboxes on the screen. Based on value chosen in first dropdown, I want to populate the values to be selected in second dropdown. How can i achieve this? I would be glad if anyone can help me out with this requirement. Thanks, Ameet

  • SSPIs and SPNEGO

    Robert, In a previous post you said, "I've said this elsewhere on this forum, but in case you missed it, in certain cases you might be forced to implement a servlet filter rather than use the SSPIs. My case was using identity assertion with SPNEGO wh

  • How do i change the background theme color in keynote for ios

    Is there a way to change the background color theme in Keynote for iOS? Let's say I start with a Black or White theme, but I want it to be red, consistently on every slide. Is this possible?

  • Lost ipad

    Hi, Had a bad day. My IPad2 WiFi got stolen yesterday. Unfortunately, I did not remember if I did turn on my "Find my ipad" under iCloud. I don't know if by default, it's turned ON or OFF. Anyway, I logged into my www.icloud.com to try my luck if I c