Show bspiView without TLN. (WDPortalNavigation navigateAbsolute )

Hi
Im trying to open a bspiView (in a new browser window) from my Web Dynpro application using WDPortalNavigation.navigateAbsolute. I want the iView to be rendered without TLN, detailed navigation and so forth. Just the iView!
WDPortalNavigation.navigateAbsolute has an argument for WDPortalNavigationMode.SHOW_EXTERNAL which, according to the documentation, should show my iView "in a new browser window that has no portal frame". The thing is; it doesn't! Ive tried using ".SHOW_EXTERNAL_PORTAL" and ".SHOW_EXTERNAL" and there is no difference. We're using SP15. Can anyone help me? Is there a better solution?
Thanks in advance
Carl Schultze

Hi Carl Schultze,
Try the following method:
IWDWindow windowName = wdComponentAPI.getWindowManager().createExternalWindow(<path to the iView>,<title>,false);          
          windowName.removeWindowFeature(WDWindowFeature.MENU_BAR);
// There are many features you can remove like Address bar, Status bar, tool bar . . .
// And also you can set the size, position, etc for the window.          
          windowName.open();
Hoping that this helps.
Thanks and regards
RK

Similar Messages

  • WDPortalNavigation.navigateAbsolute is not working correctly.

    Hi All,
    I have a  page in portal.When the user clicks on this page then a web dynpro java application iview will be called.
    In this an wd java application runs. It checks for some data base entry and if that entry exist then we navigate to a new page in the portal.I have used
    WDPortalNavigation.navigateAbsolute api in my wd java component.
    The issue is
    I am getting an error while using this api  WDPortalNavigation.navigateAbsolute.
    The code which I have written is
    WDPortalNavigation.navigateAbsolute("my pcd  address",WDPortalNavigationMode.SHOW_INPLACE,WDPortalNavigationHistoryMode.NO_HISTORY,"");
    The error is
    NavigationNode.addExtConnectorKeytoEnv: Exception
    [EXCEPTION]
    java.lang.NullPointerException: while trying to invoke the method java.util.Hashtable.remove(java.lang.Object) of a null object loaded from local variable 'env'
    at com.sapportals.portal.navigation.NavigationNode.addExtConnectorKeytoEnv(NavigationNode.java:491)
    at com.sapportals.portal.navigation.NavigationNode.getRelatedSeeAlsoNodes(NavigationNode.java:1194)
    at com.sapportals.portal.navigation.NavigationNode.getRelatedSeeAlsoNodes(NavigationNode.java:1256)
    at com.sapportals.portal.navigation.TargetsiView.doOnNodeReady(TargetsiView.java:116)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.handleEvent(AbstractPortalComponent.java:390)
    at com.sap.portal.prt.core.RequestDispatcherFactory$PortalComponentRequestDispatcher$1.service(RequestDispatcherFactory.java:168)
    at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:270)
    at com.sap.portal.prt.core.RequestDispatcherFactory$PortalComponentRequestDispatcher.handleEvent(RequestDispatcherFactory.java:158)
    at com.sap.portal.prt.pom.ComponentNode.handleEvent(ComponentNode.java:242)
    at com.sap.portal.prt.pom.PortalNode.fireEventOnNode(PortalNode.java:342)
    at com.sapportals.portal.prt.pom.AbstractNode.addChildNode(AbstractNode.java:345)
    at com.sapportals.portal.pb.PageBuilder.createAndAddEmbeddediView(PageBuilder.java:197)
    at com.sapportals.portal.pb.PageBuilder.createiView(PageBuilder.java:469)
    at com.sapportals.portal.pb.PageBuilder.createAndAddiViews(PageBuilder.java:280)
    at com.sapportals.portal.pb.PageBuilder.doOnNodeReady(PageBuilder.java:711)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.handleEvent(AbstractPortalComponent.java:390)
    at com.sapportals.portal.pb.PageBuilder.handleEvent(PageBuilder.java:878)
    at com.sap.portal.prt.component.CachablePortalComponent.handleEvent(CachablePortalComponent.java:429)
    at com.sap.portal.prt.core.RequestDispatcherFactory$PortalComponentRequestDispatcher$1.service(RequestDispatcherFactory.java:168)
    at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:270)
    at com.sap.portal.prt.core.RequestDispatcherFactory$PortalComponentRequestDispatcher.handleEvent(RequestDispatcherFactory.java:158)
    at com.sap.portal.prt.pom.ComponentNode.handleEvent(ComponentNode.java:242)
    at com.sap.portal.prt.pom.PortalNode.fireEventOnNode(PortalNode.java:342)
    at com.sapportals.portal.prt.pom.AbstractNode.addChildNode(AbstractNode.java:345)
    at com.sap.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:465)
    at com.sapportals.portal.prt.connection.ServletConnection._handleRequest(ServletConnection.java:224)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:101)
    at com.sap.portal.prt.dispatcher.DispatcherServlet.service(DispatcherServlet.java:132)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:202)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:103)
    at com.sap.portal.http.EnrichNavRequestFilter.doFilter(EnrichNavRequestFilter.java:49)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)
    at com.sap.portal.prt.dispatcher.CustomHeaderFilter.doFilter(CustomHeaderFilter.java:58)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)
    at com.sap.portal.http.EnrichNavRequestFilter.doFilter(EnrichNavRequestFilter.java:49)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:432)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:210)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:441)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:430)
    at com.sap.engine.services.servlets_jsp.filters.DSRWebContainerFilter.process(DSRWebContainerFilter.java:38)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:81)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:278)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:81)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.SessionSizeFilter.process(SessionSizeFilter.java:26)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.MemoryStatisticFilter.process(MemoryStatisticFilter.java:57)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.DSRHttpFilter.process(DSRHttpFilter.java:43)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:475)
    at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.process(Processor.java:269)
    at com.sap.engine.services.httpserver.server.rcm.RequestProcessorThread.run(RequestProcessorThread.java:56)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:122)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:101)
    at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:328)
    Please help me to resolve this issue.
    REgards,
    Anand

    Hi Samuli,
    The above mentioned problem is resolved by referring to the KBA. I have awarded points to you.
    But I am facing one more error in my log.
    Once the user clicks on the web dynpro iview the application on portal runs fine but in the log I am getting an error message for that user. It just shows the system.err and I dont get any details in the log.
    PFA the error log
    WD java application name is – dc-wd-stc-bi-disclaimer.
    This error we get only when user clicks on the web dynpro iview referring to this application in portal.

  • Robo v9 Show/Hide without Twisties - One button no longer working

    Hey there, as stated I am using Robo v9 with Show/Hide without Twisties (One button) with javascipts.  We have most of our images using DHTML drop-downs and when folks click on "Show All Images" on the page, the GIF changes to "Hide All Images" and all drop-downs (our images) and expanding text are diaplayed.
    It had been working all the time, but now it only works when I right click the topic in the TOC and choose "Edit Topic", then while in the Edit Window (Display view), when I do a View (Ctrl-W) and it displays the page within RoboHelp..I can click the "Show All Images" and it works like it always had.  BUT, if that page is not in the Edit Window, and I right click "Preview Topic", the click "Show All Images" (or on the DHTML dropdown itself) it will NOT show the images, *but the GIF image does properly toggle to "Hide All Images" (and if I do again, then it properly toggles to the "Show All Images" GIF, if I do it again), but now NO images are getting displayed for some reason.  It also NEVER works properly when I publish to our website (even when clicking the DHTML dropdown itself), but the GIF images toggle properly.
    If I right click and choose "Preview Topic" and click "View With" and use Internet Explorer 8 it still never works anymore, unless the topic is in the Edit Window (Display View), so I know the issue is not on the server.  It stops working after I do a generate and run on my pc.  Also when I view it IE8 within Robo (and Allow the Blocked Content to run the scripts), many instances of the same error is shown as:
    Message: Access is denied. 
    Line: 2646
    Char: 3
    Code: 0
    URI: file:///D:/Users/_RBH9_TPO-Generate/v9-testing/ehlpdhtm.js
    ...but I *do* have access to the folder system, but in checking the coding of the ehlpdhtm.js, that area show, where I believe line 2646, character 3 starts at the "values = getAttribute(element, prop );" line below...but maybe something does not exist:
    ==
      //End HTML code invoked function
    function InitEffect( element, prop )
    var values = null;
    if( getAttribute(element,prop)) 
      values = getAttribute(element, prop );
    else if( getAttribute( element, "currentStyle" )  && element.currentStyle.getAttribute)
      values = element.currentStyle.getAttribute( prop );
    else  if (element.style.getAttribute)
      values = element.style.getAttribute( prop );
    if( !values )
      return;
    var functions = new Array();
    ==
    I have a much older backup when restored, it all works properly again in all cases, but I have done so much work since then that I think would need to be manually redone.  I have played with keeping those some javascipts alone (in case I changed something) and updated the rest of the data files I had added, deleted the .CPD file, but it somehow stops working again, probably with some updated file.  I am not sure what specific files could be causing the negative impact that is preventing it from working.  Maybe if I knew what files could impact, I couldrestore those from my old backup.  The newer backups when restored do not work properly, so there was a point in time where something changed and is causing this.
    All prior versions of RoboHelp (v7 and v8) have always worked and still do.  I am using v9.0.1.262, as the latest version has not yet been allowed on our pcs (per security), but since my earlier backup works, I thought it may not be the issue, but wanted to tell you anyway.  ;->
    Any ideas on how I should proceed?  What files may have impact to cause it not to work anymore?  The showhide.js is the only .js to show up as a baggage file.  Also, the DHTML line does exits in each html page's code, as we are still using Robo v7 as the production software and the Show/Hide always works, and I copy them into the respective Robo v9 folders (and if new, then I copy them, then import them), otherwise the newer v7 updated pages are copied over the older v9 html files while RoboHelp is closed.
    Thanks in advance for any info you can provide!

    I may have figured out what to fix to get v9 back to working on the Show/Hide button, but not the "why?" .
    It looks to all be dealing with the Robo automatic html coding of where to locate the .js file(s)...here is a quick overview of this issue and what I did.  When I view the non-working pages within Internet Explorer 8 within Robo (and Allow the Blocked Content to run the scripts), I saw many instances of the same error is shown as this in the log, which implied since I *do* have access rights, maybe the file was just not being found.
    Message: Access is denied.
    Line: 2646
    Char: 3
    Code: 0
    URI: file:///D:/Users/_RBH9_TPO-Generate/v9-testing/ehlpdhtm.js
    OK, here are my findings.  EXAMPLE #1 and EXAMPLE #2 below are excerpts of the same file.  EXAMPLE #1 is from Robo v7 and is copied to the v9 folder after it was updated so our soon to be "production" webhelp will be from Robo v9 (instead of making the same manual updates in Robo v9 as in Robo v7, I copy the updated the .html file to the Robo v9 file system).  Note the direction of the directory slashes of the java scripts listed below, as they are all DOS type slashes (back slashes), EXCEPT for ehlpdhtm.js as it is the ONLY one using UNIX (forward) slashes.
    EXAMPLE #1 (from Robo v7)
    ==
    <link rel="StyleSheet" href="..\..\sty-std-topic.css">
    <script type="text/javascript" language=JavaScript x-save-method=compute-relative
    src="..\..\showhide.js"></script>
    </head>
    <body>
    <robohelp><script type="text/javascript" language=JavaScript1.2 src="../../ehlpdhtm.js"
    x-save-method=compute-relative></script>
    <script type="text/javascript" language=JavaScript1.2>
    <!--
    if( typeof( InitEffects ) != 'function' ) InitEffects = new Function();if( typeof( InitTrigger ) != 'function' ) InitTrigger = new Function();if( typeof( FilePopupInit ) != 'function' ) FilePopupInit = new Function();if( typeof( TextPopupInit ) != 'function' ) TextPopupInit = new Function();
    //-->
    </script>
    ==
    EXAMPLE #2(from Robo v9)
    This is from the restored backup of the Robo v9 files that always work when I restore them, and note they are ALL UNIX (forward) slashes.  These backup files were generated from Importing/Upgrading a copy of the Robo v7 files into Robo v9.
    ++
    <title>[Endpoint Protection] Symantec Overview</title>
    <link rel="StyleSheet" href="../../sty-std-topic.css" type="text/css" />
    <script type="text/javascript" language="JavaScript" src="../../showhide.js">
    </script>
    </head>
    <body>
    <?rh-script_start ?><script src="../../ehlpdhtm.js" type="text/javascript" language="JavaScript1.2">
    </script><?rh-script_end ?>
    ++
    Additional info: The following is from another file from the Robo v9 backup files that always WORK and once again they are ALL UNIX (forward) slashes. 
    ~~
    <link rel="StyleSheet" href="../../sty-std-topic.css" type="text/css" />
    <script type="text/javascript" language="JavaScript" src="../../showhide.js">
    </script>
    </head>
    <body>
    <?rh-script_start ?><script src="../../ehlpdhtm.js" type="text/javascript" language="JavaScript1.2">
    </script><?rh-script_end ?>
    ~~
    BUT since all .js files are referenced in EXAMPLE #1 have DOS slashes (back slashes), EXCEPT for the ehlpdhtm.js, I decided to change the line in ehlpdhtm.js FROM src="../../ehlpdhtm.js" TO src="..\..\ehlpdhtm.js" and IT (this one page) BEGAN WORKING AGAIN after I published.  So having all DOS back slashes DOES work in Robo v9!!!!  BUT it appears that Robo v9 only generates new pages using UNIX (forward) slashes in ALL coding.  I've read about issues like this occurring with the FireFox browser, but we only use IE8, and have not read anything like this related to IE8 issues. 
    So if all UNIX forward slashes and all DOS back slashes can work in Robo v9 in finding and using ehlpdhtm.js, (the Show/Hide buttons function properly) why is this problem existing in Robo v9 when there are mixed "slashes" (using forward and backward)?  ...and the mixed slashes ALWAYS works in Robo v7!  They do not have to all be in the same direction in Robo v7 as it appears to have to be in the newer/more advanced Robo v9.  Why does it matter that all slashes need to be all the same direction, if Robo v9 CAN actually read and figure out the DOS back slashes (formatted by Robo v7 creation) and actually generates UNIX forward slashes for the .js files in new Robo v9 output within the .html?
    More importantly will I have to always do a Global search and replace in Robo v9 to change the direction of the "back slashes" when I copy updated Robo v7 .html files into the Robo v9 folders (instead of manually reworking each change), while in transition from v7 to v9?
    Thanks in advance any information, recommendations, and feedback as your time is greatly appreciated!

  • I have an iPad 1.  I filled out a PDF questionaire in adobe reader. When I send it to Dropbox, iBooks,mercury browser the form shows up without the answers .  My objective is to email the completed form. Please advise as to how to do thisThanks. Big Jake

    I have an iPad 1.  I filled out a PDF questionaire in adobe reader. When I send it to Dropbox, iBooks,mercury browser the form shows up without the answers .  My objective is to email the completed form. Please advise as to how to do thisThanks.
    Big Jake

    If the PDF is a form fillable PDF, which I assume that it is, email it to yourself or send it to DropBox and open it on your computer. You should see the fields filled in there. It works for me if I do it that way.
    Adobe Reader supports it, but the other apps don't. I assume that if you email the PDF to a computer user it would be readable in Adode Reader.

  • Calling Webdynpro Application using WDPortalNavigation.navigateAbsolute

    Hi All
    I have created a custom application for address in Personal Information. The application contains Overview, Edit, Review and Save , Completed view (Same as in standard ESS components)
    There is a link <b>Back to Overview</b>. On click of the link, i need to go back to <b>Overview</b> view.
    How can i perform this ?
    I am using
                   WDPortalNavigation.navigateAbsolute(
                        urlToTargetApp,
                        WDPortalNavigationMode.SHOW_INPLACE,
                        WDPortalNavigationHistoryMode.NO_HISTORY,
                        null
    What should be the value of  urlToTargetApp ?
    Pls help.
    Regards
    Sonal Mangla

    Hi Satyajit.
    Thanks for the inputs
    Actually i need to refresh the application so that it takes me to the first view.
    Previously i was using Exit plug to URL to go back to first view.
    But after upgrade from EP6 to EP7 and ESS 100 to ESS600, i am getting
    <b>com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Exit-Plug must no be triggered with an URL when running in portal. Use portal navigation instead to navigate to another application</b>.
    Can u tell me what is the replacement of exit to URL plug ?
    Please guide me further.
    Message was edited by:
            Sonal Mangla

  • WDPortalNavigation.navigateAbsolute not working in nws04s sp14

    HI ALL,
    I am trying to navigate to a page which has webdynpro iview form a webdynpro application, on clicking a button it has to navigate to hat page in portal ,but nothing is happening onclicking the button, below is the code.
    public void onActionGo2(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionGo2(ServerEvent)
         WDPortalNavigation.navigateAbsolute(
              "ROLES://portal_content/org.test.dev.folder.test_development/Kumar/Roles/TestManagerRole/Overview/MXssMenuPg",
              WDPortalNavigationMode.SHOW_INPLACE,
              (String) null,
              (String) null,
              WDPortalNavigationHistoryMode.NO_DUPLICATIONS,
              (String) null,
              (String) null,
              "Name=" );                              
        //@@end
    In the API its given as "The assumption is that this navigation target uses the SAP application launcher" what does this mean. please provide your valuable answers.
    Thanks,
    pkv.

    Hi pkv,
      For launching a new external window use the following API
    WDPortalNavigation.
    navigateAbsolute("ROLES://portal_content/org.test.dev.folder.test_development/Kumar/Roles/TestManagerRole/Overview/MXssMenuPg",
                     WDPortalNavigationMode.SHOW_EXTERNAL,
                     WDPortalNavigationHistoryMode.NO_HISTORY,
                     null);
    Open the required ivew and double check if the path is portal_content/org.test.dev.folder.test_development/Kumar/Roles/TestManagerRole/Overview/MXssMenuPg
    If the path is correct then the action will launch the iview.
    Regards,
    Sanyev

  • WDPortalNavigation.navigateAbsolute() does not work in QA environment

    I have used WDPortalNavigation.navigateAbsolute()  to navigate to a different iview in the portal.  It works fine in Dev, but the same code is not displaying the iview in QA environment.  I confirmed that I views exists in QA and it executes from the navigation path.  The PCD Path matches as imported in QA.  It is erroring out only when executed through a button click in Web Dynpro using WDPortalNavigation.navigateAbsolute().
    I dont know if there are any settings that I need to change.  Any help is greatly appreciated.
    Here is the code I have that works perfectly in Dev.
    WDPortalNavigation.navigateAbsolute("ROLES://pcd:portal_content/com.abc.portal/com.abc.iviews/com.abc.iviews.folders.planning_queries/com.abc.iviews.planning.init_pln_na",WDPortalNavigationMode.SHOW_EXTERNAL_PORTAL,"","","");
    Thanks

    Hi,
    Have you got solution to your problem. If yes, then please share with me.
    Regards,
    Anubha

  • Pass parameters via POST in WDPortalNavigation.navigateAbsolute method

    Hi,
    how can i pass parameters via POST method from WD Application using WDPortalNavigation.navigateAbsolute method
    Should i pass the parameters as part of the NavigationTarget URL or they should be passed via different parameter?
    Thanks,
    Yuly Roberman

    What is the procedure to pass parameters via POST using WebDynpro ?
    I am required to pass XML Data via POST.
    I have gone through the following :
    a) http://help.sap.com/saphelp_nw04/helpdata/en/9e/a073001903c9419592b14c2aa63669/content.htm
    b) Inter Navigation Application in Web Dynpro
    However, I could not find any reference to do the same via POST.
    Can anyone throw light on the same ?
    Best Regards,
    Subramanian V.

  • Is there a way I can watch videos/tv shows continuously without it stopping after each episode?

    Is there a way I can watch videos/tv shows continuously without it stopping after each episode?

    Hulu: https://itunes.apple.com/us/app/hulu-plus/id376510438?mt=8
    There are probably others.

  • Problems with WDPortalNavigation.navigateAbsolute

    I have a problem with the instruction WDPortalNavigation.navigateAbsolute
    My projjects are follow:
    I have a component A and a component B in a component Master 1, and the same component A and a component C in another component Master 2.
    In the component  Master 1 I have a context that is  binding by component A.  In the component Master 2 i have te component A too, The componente A  binding the contex  tooo. the problem is that i want to navigate from Component B that is in the Component Master 1 to Component C that is in the Component master 2.
    I am trying navigate with WDPortalNavigation.navigateAbsolute  sentence, it is works, because i can see the component C's iview but when i want to use data of  component's context, i can't  because i get an error that says, the context doesn't initialize.
    i am use componentization concept in the master 1 andy master 2.
    in the master 1 i have as "used web dynpro components" the component A and component B
    in the master 2 i have as "used web dynpro components" the component A and component C
    in a few works a want to navigate from component B to component C using WDPortalNavigation.navigateAbsolute sentence
    Anybody can help me please.

    HI arhei Pisarenka.
    I 'am doing the copy of a project and i found this navigation in the code with the WDPortalNavigation.navigateAbsolute sentence, then i did the copy to anothers project and it no function, in the original project it works but in my project didn't.
    What i can do?
    thanks

  • SHOW commands without ENABLE...?

    I have a user who has been given read-only, privilege level 1, access and wants the ability to use the various SHOW commands.  We have ACS running in this environment.  Is there a way, through ACS, to give him these commands?  
    Policy Elements/Authorization and Permissions/Device Administration/Shell Profiles has ReadOnly with all shell attributes set to not in use, default/max privilege set to 1, nothing extra in custom attributes.  Same set of submenus, Command Sets, Limited has "Permit" "SHOW" with no arguments listed.  Under Access Policies, Standard Device Admin, Authorization, I have a rule for the identity group assigned to the user in all locations and all device types that assigns the shell profile of ReadOnly and the command set of Limited.  However, the user cannot perform any such commands
    What am I missing?  Is there another way to do this?  As I said, the key is to provide the show commands without the ability to make changes to the devices.

    Yes this can be done and it sounds like you have ACS configured correctly.  However, I am not sure if all show commands will be available without entering enable mode.  For example, show interfaces is not available until after you enter enable mode.
    What AAA commands do you have running on the devices?
    I am doing pretty much what you're doing but I allow the user to enter enable mode and then restrict them to a hand full of commands.  Also, I have ACS controlling the enable password on a per user basis.

  • WDPortalNavigation.navigateAbsolute error

    Hi All,
    I have created an application which I have integrated with portal. When I click a link on the first page, it should navigate to a page in the next workset.
    I am using the following code to achieve this:
    WDPortalNavigation.navigateAbsolute("ROLES://portal_content/other_vendors/.....FinanceManagement", WDPortalNavigationMode.SHOW_INPLACE, null, null, WDPortalNavigationHistoryMode.NO_DUPLICATIONS, null, null, null, null, true, true);
    where the first parameter is my iview pcd location.
    But when I click it gives me an error that Page cannot be found.
    Can anyone help?
    Regards,
    Malita

    Hi,
    I understood like same page is assigned to two roles and you want to the complete path for both the roles. Correct me if i am wrong. In this case do the samething you did for the page.
    Go to the roles in Portal Content: open the object. Expand the role>Workset>Page. Select the page here. Now click on preview.  There in the right hand side corner click on the button and select details. Here you will get the full path of that page in that role.
    Regards,
    Charan

  • How does an app show up without typing in a password for iTunes?

    Is there a way that an an app can install or be downloaded without knowledge or approval?  Wifi? Bump? Accidental from Facebook? 
    The particular app in question provides quotes, photos, and cartoons that can be used on Facebook, backgrounds, etc. It also has a statement that the user must be 17 or older  to download, due to content. 
    App does not show up in purchase history. Why not? How can this be?
    How does an app install without signing in with a password or tapping the install button?  Possible or not? Need legitimate and plausible response please.

    Found a photo offered by the same app on a "friends"  Facebook site. By clicking that photo that had been uploaded by way of their mobile app to their facebook you are sent to a Facebook style slide show  that you scroll through additional photos/quotes from the site.  Is this considered a web app?  It views like any photo slide show on Facebook. 
    However it seems that at some point this app actually installed itself on the iPad.  How to prevent in future???

  • Show FORM without wwv_flow.accept error

    Hello,
    My problem is running when i display my page.
    Actually, i create a component Region, and i add a Display only on it(don't save). On his source we have a HTML FORM.
    My objective is to show a FORM HTML without raise exception.
    <FORM id="test">
    <INPUT TYPE="text" id="t01" size="10" onclick="javascript:function()">
    </FORM>
    They are two cases:
    1st: i put "static affectation" for "source type" of my Display Only. When i start the application, i see my form but when i try to "submit" the page i get the wwv_flow.accept error.
    2nd: in this case i put "Always Null" for "source type", i have no error when i submit but my FORM isn't displayed.
    I don't understand. If somebody can help me.
    Thanks in advance.
    LAFOND Romain

    LAFOND Romain - HTML DB pages are not intended for putting your own forms on. See Re: Reusing existing htp pages and search this forum for #FORM_OPEN# for different ideas.
    Case 2 is expected behavior: if you set an item to always null, it will be rendered as null.
    Scott

  • ITunes match wont show artwork, without downloading a song?

    I did upload/match my music collection to itunes match on one PC and all worked fine and it shows the embedded artworks of the local files. The problem is that if i turn on itunes match on a remote machine, the songs play fine from the cloud, BUT all of the artwork/covers are missing? I tried the "automatically download artwork option" but nothing changes. I also tried "updating itunes match" and again no artwork.
    The only way i cold fix this is to manually download a single track of a each album? Is this the expected behaviour?
    Does this mean apply's iCloud/match service is not able to automatically pull the embedded album artwork from icloud files, without having a local physical copy once? I used googles music service before and there cloud player never had this problem at all.
    So whats going on, why is artwork handling in itunes match so finicky and broken?
    thx
    Andy

    It gets even more stupid.
    After downloading the first track of each album, the album artwork in iTunes shows up, but only for files that where originally "uploaded" and not "matched". The matched files do not have any artwork, since itunes recognizes them not by album. if i now try to "download artwork" it uses the album to whatever it was matched. So if the same song is only matched to s single in the iTunes store it will use this artwork, regardless of the org. files having correct embedded artwork for the album.
    So what you have to-do is to either micro manage your missing artworks on a device basis or have a single track not "matched" to itunes than can be used as cover resource on all devices.
    This system is so buggy and flawed that its beyond believe. All iTunes would have to actually do is to get the embedded "correct" artwork of a album from a track, than upload and store this information in iClound and sync this artwork database across all devices.
    What a waste of time so far using iCloud and simply trying to get working artworks for perfectly tagged mp3 files.

Maybe you are looking for

  • Hyperlinks limitations in iPad Adobe Reader

    We have made an interactive PDF in InDesign CC with 89 slides, some forms, 5 hyperlinks to web and 147 hyperlinks to jump to other slides. Generated PDF in Adobe Reader on PC works OK. On iPad looks like iPad Adobe Reader 11.2.4 accepts only round 10

  • Redaction error Acrobat XI Pro Windows

    When I mark for redaction on a page and apply the redaction, it is adding the same black marks on every second page from that original redaction, on the same spot on the page, in the rest of the document. However it doesn't actually redact the area i

  • Mp3 cutter for Nokia C6-00

    please send me the links for downloading mp3 cutter for Nokia C6-00

  • What does the color represent on these folders?

    RoboHelp 9.0.0.228/Server 9 WebHelp Pro Single Project (upgraded from RH x5 to RH9) What does the color represent on these folders?  Today is the first day the folders have appeared this way (previously, they were solid yellow). Eva

  • System slow after yosemite installation

    I have a mid 2013 MacBook AIr.  recently 'upgraded' to Yosemite and since the installation I have noticed a significant slow down of my OS.  it's like there is something running in the background eating up all my memory.  Is there something I can do