Webcenter page refresh extra on accessing Navigation Model resource

we have webcenter latest 11g version. we have implemented navigation modelo.
we have this oracle.webcenter.navigationframework.REDIRECT_OPTIONS specified in web.xml.
problemo : since we have above defined in web.xml our pageo refresh on any submit or access of any other resource in navigation modelo, Meaning it adds extra request - response on any navigation. this is huge performance impacto. we do not like that extra trip.
we click sumbit on page 1, it shd take us directly to page 2. No extra refresh ---------------- This is good.
How can we achieve good ? adn get rid of extra request reaponse (refresh) ?

we know extra Request / Response is to guarantee new pages url to show in browser.
we still want new page URL to show in browser and still not expense that extra reqest / response / refresh (want Good of both worlds............). How can we ?

Similar Messages

  • Use navigation model and runtime created pages

    Hi,
    I have my Portal Application created in JDeveloper, with set of base pages. Pages are stored in default-navigation-model, so I could use i18n in navigation rendering. I'd also like to use runtime pages management. When I enter admin panel, I can add new pages, change order of pages created in jdeveloper, or show/hide them. However those changes are not reflected in the portal, navigation always looks the same, still displays pages I've marked as hidden - is navigation cached somewhere?
    If I create new page in admin panel, it isn't displayed in navigation too. However I could click on this page title in admin panel, go to this page and edit its content - of course even then page is not displayed in the meny, none of menu items is marked a highlited.
    What am I doing wrong? I followed Yannick's tutorial http://www.yonaweb.be/webcenter_tutorial/closer_look_at_navigation_model and switched from page hierarchy to navigation model. Maybe this is the reason?

    I got back to your tutorial and haven't found a place where it'd be explained directly. Maybe "between the lines", but as for Webcenter newbie I haven't notice it.
    I switched back to pages hierarchy. I was using navigation model to achieve i18n in navigation, however I also had problems about that, and as you suggested me once in another thread I changed page titles to PortalBundle keys and rendered values from bundles manually.
    Therefore now comes the second question in this area - is it possible to use page hierarchy, runtime crated pages and still localize page titles?
    P.S. As an experienced Liferay Portal developer, I really try to see any benefits of Webcenter in building custom portals area and still I can hardly find any... ;)

  • EL for a specific page in a Navigation Model with a Pages Query

    In WebCenter Portal: Spaces we are using the Default Navigation Model, which includes a Pages Query which shows all the accessible pages for the current space.
    How do I create an EL Expresion that allows me to perform navigation from within a page?
    <af:commandLink text="Link"
    id="cl1"
    actionListener="#{navigationContext.processAction}"
    action="pprnav" >
    <f:attribute name="node"
    value="#{navigationContext.defaultNavigationModel.rootNode.childByIndex[1]}"/>
    </af:commandLink>
    this gets me a reference to the desired page, but only as long as the Pages Query is the first item in the model and my page is at index 1 in the Pages Query. Not very robust.
    Is there any way to refer to a page by its title or something like that?
    I know Business Role Pages in Spaces have a direct URL I could use, but I want to use partial page navigation wherever possible.

    Jaap,
    Can you describe your exact use case in a bit more detail?
    Do you wish to link to a specific page or generate links to all pages (iterating through the pages) in the space? If it is the former, how do you identify the specific page? If it is the latter, consider creating a custom navigation model that contains only a pages query and iterate over this.

  • How to navigate to a specific part of a page using Navigation Model

    Hi....
    I need to navigate to a specific part of the page using navigation models.
    When I click on a link it should navigate to a div in the middle of the page instead of showing page from starting.
    How to achieve this using webcenter navigation models?
    Thanks.

    Hi All,
    Even I have the same requirement in my project.
    I need to navigate to a specific part of a page instead to the top of page using navigation models.
    I have a navigation model with name aboutUsNavigation.xml which have 5 links(About Us, Contact Us, Carrers, ...).
    I have used the adf tree Component to show the links.
    <af:tree id="about" var="node" initiallyExpanded="false" summary="AboutUs" value="#navigationContext.navigationMode
    l['modelPath=/oracle/webcenter/portalapp/navigations/aboutUsNavigation'].treeModel['includeStartNode=false']}" >
    <f:facet name="nodeStamp">
    <af:commandImageLink id="cil2" text="#{node.title}"
    actionListener="#{navigationContext.processAction}"
    action="pprnav"
    icon="#{node.attributes[pageFlowScope.tnBean.iconKey]}"
    disabled="#{not node.navigable}"
    inlineStyle="#{node.onSelectedPath ? 'font-weight:bold;' : ''}">
    <f:attribute name="node" value="#{node}"/>
    </af:commandImageLink>
    </f:facet>
    </af:tree>
    All the 5 links should navigate to the about.jspx. but each to a part of the page. how to achieve this?_
    Thanks..

  • Forward to JSP page without using Navigation Model

    How can I forward to a JSP page without using the Navigation Model?

    It's done in the cardemo example in
    ImageMapEventHandler.processAction() Is there a reason
    for it there?Ah ... that makes sense.
    That code in CarDemo was written before there was such a thing as a NavigationHandler, and we didn't have time to update it to the new approach before the EA4 release. That'll be changed before the next one. In the mean time, I'd recommend that you use the navigation rules mechanism where it works for you, because it encourages good separation of business logic and presentation logic that will lead to more maintainable applications.
    Craig

  • TS3899 I am unable to access my mail account. I press the mail icon, the page refreshes to the mail format page - blue bar top and bottom, white text space in the middle.... and that is as far as it goes. It does not list my email accounts or offer any.

    I am unable to access my mail account on my iphone, which I have been able to do previously. I press the mail icon, the page refreshes to the mail format page - blue bar top and bottom, white text space in the middle.... and that is as far as it goes. It does not list my email accounts or offer any.

    Close the mail app, double tap the home button and completely close out of the app.
    then do a reset, no data loss.  Hold down the home/sleep button together until you see the apple logo and then release, then wait for the phone to boot back up.

  • Multiple navigation models and security

    Hi,
    I want to have 3 navigation models (default, A, B) but I want the "role" AA to have access to the default navigation model + A model (when connected on the portal) and the "role" BB to have the default and B one. I want to have my security here. It could be easy to make it with the page hierarchy, but I want to try it with the 3 different navigations and I'm a bit lost.
    I think the answer may be in the visible attribute, but I have tried this and it didn't worked:
    For A model inside default navigation:
    visible: ${securityContext.userInRole == AA}
    Thanks!

    That's rather easy to do.
    The trick is that you create a reference to an existing nav model from A so it will include the default one.
    When you go the administration console and open the configuration tab you can define the default navigation model. For this you can use expression language so you just have to write a managed bean that returns the path to the navigation model.
    Something like this:
    public String getNavMode(){
      if(userInARole)
         return "oracle/webcenter/portalapp/navigations/modelA.xml";
      if(userInBRole)
        return "oracle/webcenter/portalapp/navigations/modelB.xml";
      return "oracle/webcenter/portalapp/navigations/default.xml";
    }I haven't tested it but it should work. It's also possible that you can ommit the .xml in the filename.

  • Use managed beans in navigation model

    Hello
    I have a bean called UserInfoBean.
    UserInfoBean is managed in faces-config.xml and uses a Java API to determine if a user has access to a page within my WebCenter Portal. The method is called isUserAuthorized.
    In default-navigation-model.xml I try to set the visible field to #{userInfoBean.isUserAuthorized} but it says that 'userInfoBean is an unknown variable'.
    Do I need to manage UserInfoBean in adfc-config.xml??
    Thanks!
    Mitch

    What's the scope of the bean?
    Any specific reason why you are not using the built-in declarative security that ADF/WebCenter gives you. You can assign page/taskflow privileges without having to write any code.

  • How to get  a Current Navigation model  Current Selection (node) ID

    Hi,
    we are using default navigation model for page navigation in our application.
    I am trying to get Id of Default Navigation model node, I am able to get the Title using following code which available in globe template.
    Code – pageTemaplate_globe.jspx :
    <af:forEach var="node" varStatus="vs"
    items="#{navigationContext.defaultNavigationModel.listModel['startNode=/, includeStartNode=false']}">
    <af:subform id="pt_sfm1">
    <div class="bea-portal-book-primary-menu-single-item">
    <af:switcher id="pt_sw1"
    facetName="#{(empty node.attributes['Target']) || (node.attributes['Target'] == '_popup') ? 'command' : 'golink'}">
    <f:facet name="command">
    <af:commandLink id="pt_cl1" text="#{node.title}"
    action="#{MyAccBean.menuItemListAction}"
    disabled="#{not node.navigable}"
    actionListener="#{navigationContext.processAction}"
    clientComponent="#{node.attributes['Target'] == '_popup' ? true : false}">
    <!-- pass node to processAction for setting current selection and navigation -->
    <f:attribute name="node" value="#{node}"/>
    <af:setActionListener from="#{node.title}"
    to="#{pageFlowScope.menunodetitle}"/>
    I am using +<af:setActionListener/>+ to set Title to variable and using in that in code.
    Is there a way that i can get ID in the same way as title?
    I see following EL from documentation but there is no ID attributes available.
    EL: #{navigationContext.defaultNavigationModel.currentSelection.attributes['Description']}
    EL: #{navigationContext.defaultNavigationModel.currentSelection.title}
    Please help me…
    Thank you,
    SP

    Hi.
    Doesn't exist direct access to node Id but you can use this EL Expression to get it:
    #{node.prettyUrlPath[node.depth]}Regards.

  • Using EL in navigation model

    Hi All,
    I am using webcenter portal application. I want to check a condition and based on that condition i want to navigate to the specific page, which i think can be done with a bean call from a commandlink on action attribute.
    May i know how to implement this on Navigation model as i dont know how to call a bean on url field of navigation model. Or possibly is it possible to overide the url field on navigation model with a bean method call in action attribute of command link and navigate to the specific page based on the return attribute.
    We are unable to implement the navigation model in our portal, as we dont know how to overcome this.
    Kindly help us
    Thanks
    S. Muthukumaran

    Hi.
    Bijesh is referring to visible attribute of each item of your navigation model:
    <url visible="#{Your EL EXPRESSION}" id="Home"
             factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory"
             url="page://oracle/webcenter/portalapp/pages/home.jspx">
          <attributes>
            <attribute attributeId="Title" value="HOME" isKey="true"
                       resourceBundle="com.merchan.portal.PortalBundle"/>
            <attribute attributeId="ExternalId" value="defaultMenu" isKey="false"/>
            <attribute attributeId="Redirect" value="false" isKey="false"/>
          </attributes>
          <contents/>
        </url>In visible attribute you can invoke a EL Expression (Manage Bean) to determinate if this item is going to be showed in your navigation.
    If it isn't valid for your requeriment please share more details about it.
    Regards.
    Edited by: Daniel Merchán on 08-nov-2012 11:02

  • Expression Language to get the navigation model of the parent space

    Hello,
    I am hoping someone can help me with this.
    Scenario: I need my sub-space to use the same navigation model as the parent.
    Reason: Take a space(P) has a navigation model that queries the pages and sub_spaces(S1,S2...) in a space. Using this navigation, if we navigate to a page of a sub_space(S1) of the space, the navigation model for that sub_space(S1) will now query its pages and its sub_spaces. Instead, I want the navigation to still query the pages of the parent space(P) and the sub_spaces(S1,S2) of the parent. Effectively, the navigation contents should not change.
    So, I am thinking of using an EL expression that queries the navigation model of a parent(P) to set the navigation model of the sub_space(S1).
    Appreciate your help.
    Thanks,
    Pradyumna Nandavanam

    Hi.
    You can define customAttributes for your group spaces like: parentModelPath
    Access it with EL Expression: #{spaceContext.currentSpace.metadata.customAttributes[attributeName]} where attribute name is +'parentModelPath'+
    And with next EL Expression: #{navigationContext.navigationModel['model_path']} you can replace 'model_path' with your customAttribute value.
    Kind Regards.
    Edited by: Daniel Merchán on 14-feb-2012 15:50

  • ExternalID of navigation model

    Hi,
    I have default navigation model with various nodes. I am able to navigate to a specific node i.e. node with externalId 'test' by using $wcUrl('test') in a html page using content presenter.
    I want to access the same node with externalId 'test' in a jspx page, but $wcUrl('test') is not working by using directly in the jspx page without content presenter. Is there any alternate way to access the node in a jspx page without content presenter?
    Please let me know how to access node from a jspx page.
    Thanks

    The $wcUrl('test') syntax is a piece of IDOC script. This will only work within a document in a Content Presenter.
    If you want to create a link within a page, you can reference the externalId through the navigation model, by pointing the link to /faces/wcnav_externalId/test

  • Pages not showing up in navigation

    Hello,
    I am having a problem where some of my pages that I add to the navigation model are not displaying in my application at run-time.
    See below for source code. The allresources.jspx page is not displaying at run time and I don't know why.
    My default-navigation-model.xml:
    <?xml version="1.0" encoding="US-ASCII" ?>
    <navigationDefinition description="Default Navigation"
    id="default-navigation-model"
    name="Default Navigation"
    xmlns="http://xmlns.oracle.com/adf/rcs/catalog" visible="#{true}"
    definitionFilter="">
    <contents>
    <customFolder id="pages"
    factoryClass="oracle.webcenter.page.view.rc.PageServiceContextFactory"
    visible="#{true}" insertFolderContents="true">
    <attributes>
    <attribute value="Page Hierarchy" attributeId="Title" isKey="false"/>
    <attribute value="/adf/webcenter/pagegroup_qualifier.png"
    attributeId="IconURI"/>
    </attributes>
    <parameters>
    <parameter id="path">/oracle/webcenter/portalapp/pagehierarchy/pages.xml</parameter>
    <parameter id="pageTemplate">/oracle/webcenter/portalapp/pagetemplates/pageTemplate_globe.jspx</parameter>
    </parameters>
    </customFolder>
    <url visible="#{true}"
    url="page://oracle/webcenter/portalapp/pages/allapplications.jspx"
    factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory"
    id="allapplications">
    <attributes>
    <attribute isKey="false" value="Applications" attributeId="Title"/>
    </attributes>
    <contents>
    <url visible="#{true}"
    url="page://oracle/webcenter/portalapp/pages/IOLapp.jspx"
    factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory"
    id="IOLapp">
    <attributes>
    <attribute isKey="false" value="International Online" attributeId="Title"/>
    </attributes>
    <parameters>
    <parameter id="pageTemplate">/oracle/webcenter/portalapp/pagetemplates/applicationTemplate.jspx</parameter>
    </parameters>
    </url>
    </contents>
    </url>
    <url visible="#{true}"
    url="page://oracle/webcenter/portalapp/pages/allresources.jspx"
    factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory"
    id="allresources">
    <attributes>
    <attribute isKey="false" value="Resources" attributeId="Title"/>
    </attributes>
    </url>
    <url id="allcommunities"
    url="page://oracle/webcenter/portalapp/pages/allcommunities.jspx"
    visible="#{true}"
    factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory">
    <attributes>
    <attribute value="Communities" attributeId="Title" isKey="false"/>
    </attributes>
    <parameters>
    <parameter id="pageTemplate">/oracle/webcenter/portalapp/pagetemplates/generalPageTemplate.jspx</parameter>
    </parameters>
    </url>
    </contents>
    <schema resourceBundle="oracle.adf.rc.attribute.nls.AttributeBundle">
    <descriptor multivalue="false" shortLabelKey="TITLE.SHORT_PROMPT_KEY"
    labelKey="TITLE.PROMPT_KEY" attributeId="Title"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="ACCESS_KEY.SHORT_PROMPT_KEY"
    labelKey="ACCESS_KEY.PROMPT_KEY" attributeId="AccessKey"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="DESCRIPTION.SHORT_PROMPT_KEY"
    labelKey="DESCRIPTION.PROMPT_KEY" attributeId="Description"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="ICON_URI.SHORT_PROMPT_KEY"
    labelKey="ICON_URI.PROMPT_KEY" attributeId="IconURI"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="true" shortLabelKey="SUBJECT.SHORT_PROMPT_KEY"
    labelKey="SUBJECT.PROMPT_KEY" attributeId="Subject"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false"
    shortLabelKey="REDIRECT_FLAG.SHORT_PROMPT_KEY"
    labelKey="REDIRECT_FLAG.PROMPT_KEY" attributeId="Redirect"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="TARGET_FRAME.SHORT_PROMPT_KEY"
    labelKey="TARGET_FRAME.PROMPT_KEY" attributeId="Target"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="TOOL_TIP.SHORT_PROMPT_KEY"
    labelKey="TOOL_TIP.PROMPT_KEY" attributeId="ToolTip"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="MODIFIED.SHORT_PROMPT_KEY"
    labelKey="MODIFIED.PROMPT_KEY" attributeId="Modified"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false"
    shortLabelKey="CHANGE_FREQUENCY.SHORT_PROMPT_KEY"
    labelKey="CHANGE_FREQUENCY.PROMPT_KEY"
    attributeId="ChangeFrequency" searchable="true"
    endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="SIGNIFICANCE.SHORT_PROMPT_KEY"
    labelKey="SIGNIFICANCE.PROMPT_KEY" attributeId="Significance"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="EXTERNAL_ID"
    labelKey="EXTERNAL_ID" attributeId="ExternalId"
    searchable="true" endUserVisible="true"
    resourceBundle="oracle.webcenter.navigationeditor.view.resource.NavigationEditorBundle"/>
    </schema>
    </navigationDefinition>

    I am in JDeveloper 11.1.1.5
    Here is my re-formatted code
    <?xml version="1.0" encoding="US-ASCII" ?>
    <navigationDefinition description="Default Navigation"
    id="default-navigation-model"
    name="Default Navigation"
    xmlns="http://xmlns.oracle.com/adf/rcs/catalog" visible="#{true}"
    definitionFilter="">
    <contents>
    <customFolder id="pages"
    factoryClass="oracle.webcenter.page.view.rc.PageServiceContextFactory"
    visible="#{true}" insertFolderContents="true">
    <attributes>
    <attribute value="Page Hierarchy" attributeId="Title" isKey="false"/>
    <attribute value="/adf/webcenter/pagegroup_qualifier.png"
    attributeId="IconURI"/>
    </attributes>
    <parameters>
    <parameter id="path">/oracle/webcenter/portalapp/pagehierarchy/pages.xml</parameter>
    <parameter id="pageTemplate">/oracle/webcenter/portalapp/pagetemplates/pageTemplate_globe.jspx</parameter>
    </parameters>
    </customFolder>
    <url visible="#{true}"
    url="page://oracle/webcenter/portalapp/pages/allapplications.jspx"
    factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory"
    id="allapplications">
    <attributes>
    <attribute isKey="false" value="Applications" attributeId="Title"/>
    </attributes>
    <contents>
    <url visible="#{true}"
    url="page://oracle/webcenter/portalapp/pages/IOLapp.jspx"
    factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory"
    id="IOLapp">
    <attributes>
    <attribute isKey="false" value="International Online" attributeId="Title"/>
    </attributes>
    <parameters>
    <parameter id="pageTemplate">/oracle/webcenter/portalapp/pagetemplates/applicationTemplate.jspx</parameter>
    </parameters>
    </url>
    </contents>
    </url>
    <url visible="#{true}"
    url="page://oracle/webcenter/portalapp/pages/allresources.jspx"
    factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory"
    id="allresources">
    <attributes>
    <attribute isKey="false" value="Resources" attributeId="Title"/>
    </attributes>
    </url>
    <url id="allcommunities"
    url="page://oracle/webcenter/portalapp/pages/allcommunities.jspx"
    visible="#{true}"
    factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory">
    <attributes>
    <attribute value="Communities" attributeId="Title" isKey="false"/>
    </attributes>
    <parameters>
    <parameter id="pageTemplate">/oracle/webcenter/portalapp/pagetemplates/generalPageTemplate.jspx</parameter>
    </parameters>
    </url>
    </contents>
    <schema resourceBundle="oracle.adf.rc.attribute.nls.AttributeBundle">
    <descriptor multivalue="false" shortLabelKey="TITLE.SHORT_PROMPT_KEY"
    labelKey="TITLE.PROMPT_KEY" attributeId="Title"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="ACCESS_KEY.SHORT_PROMPT_KEY"
    labelKey="ACCESS_KEY.PROMPT_KEY" attributeId="AccessKey"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="DESCRIPTION.SHORT_PROMPT_KEY"
    labelKey="DESCRIPTION.PROMPT_KEY" attributeId="Description"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="ICON_URI.SHORT_PROMPT_KEY"
    labelKey="ICON_URI.PROMPT_KEY" attributeId="IconURI"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="true" shortLabelKey="SUBJECT.SHORT_PROMPT_KEY"
    labelKey="SUBJECT.PROMPT_KEY" attributeId="Subject"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false"
    shortLabelKey="REDIRECT_FLAG.SHORT_PROMPT_KEY"
    labelKey="REDIRECT_FLAG.PROMPT_KEY" attributeId="Redirect"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="TARGET_FRAME.SHORT_PROMPT_KEY"
    labelKey="TARGET_FRAME.PROMPT_KEY" attributeId="Target"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="TOOL_TIP.SHORT_PROMPT_KEY"
    labelKey="TOOL_TIP.PROMPT_KEY" attributeId="ToolTip"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="MODIFIED.SHORT_PROMPT_KEY"
    labelKey="MODIFIED.PROMPT_KEY" attributeId="Modified"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false"
    shortLabelKey="CHANGE_FREQUENCY.SHORT_PROMPT_KEY"
    labelKey="CHANGE_FREQUENCY.PROMPT_KEY"
    attributeId="ChangeFrequency" searchable="true"
    endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="SIGNIFICANCE.SHORT_PROMPT_KEY"
    labelKey="SIGNIFICANCE.PROMPT_KEY" attributeId="Significance"
    searchable="true" endUserVisible="true"/>
    <descriptor multivalue="false" shortLabelKey="EXTERNAL_ID"
    labelKey="EXTERNAL_ID" attributeId="ExternalId"
    searchable="true" endUserVisible="true"
    resourceBundle="oracle.webcenter.navigationeditor.view.resource.NavigationEditorBundle"/>
    </schema>
    </navigationDefinition>

  • Accessing Navigation target through anonymous content.

    Hello,
    1. I created sitemap. From code I am accessing
    /irj/portal?navigationTarget=ROLES://portal_content//AboutUS/Welcome
    I am trying to access navigation target as anonymous user. For any type of iView  portal presenting me Logon screen.
    2. I already set up above mentioned iView as anonymous. I given permissions on Portal Content , Role, Workset and iView for anonymous user/guest user
    3. Can I access navigationTarget=Roles://   as anonymous/guest  user  OR  I must be   log in to access
    navigationTarget=Roles://
    I will appreciate any help in this issue.
    Thanks
    Mark

    Hi Mark!
    First of all, there is no real anonymous access to portal. If you call up a portal page with no authorization required, you are logged in as the default anonymous user automaticly.
    To access your pages via NavigationTarget and "anonymous" user the call is
    /irj/portal/anonymous?navigationTarget=ROLES://portal_content//AboutUS/Welcome
    You may also use hashed URLs or Quicklinks.
    It is even possible to use different anonymous users on the same portal by giving the URL parameter "guest_user" like this example:
    http://myserver.mycompany.com/irj/portal/anonymous/home?guest_user=anonymous_de. All guest users have to be configured in the J2EE engine too (via Visual admin). See SAP HELP for more on this topic.
    "home" is the quicklink to the start page in our case.
    Regards,
      Jürgen

  • Std Page refresh issue

    Hi,
    On a standard page, I have added a column of itemtype link to a table through personalization, which shows status.
    On click of link, I'm calling a custom read only page (has its own custom AM and VO) in a new window. Its a simple readonly table with data from custom VO.
    Problem is after clicking on the link and new window opens, if i do any action on standard page, control goes to standard process request and std page gets refreshed.
    How can i avoid this, i dont want std page to be refreshed.
    In personalization, i have given link item's destination uri as
    OA.jsp?page=/xxx/oracle/apps/ar/irec/accountDetails/webui/xxstatusHistPG&invNum={@TrxNumber}&retainAM=Y
    I tried retainAM=N as well as removing that parameter but still same issue.
    Any help is greatly appreciated, Thanks!

    Hi Gustavo,
    There is partial page refresh on std page, in extended CO PR, I have added event on column amount (to do validation on tab out)
    as well as on select check box (it defaults rem amount into pay amount). For link, I'm opening new page by setting destination URL property in link item properties.
    I cannot code for parameter based pop-up as Im in 11.5.10 and using JDeveloper 9.0.3 (added screen behaviour below)
    Hi Shobhit,
    I tried the approach you suggested. Based on session parameter, Im controlling the code in std extended CO PR.
    It worked, I mean at least it doesn't error out now like before with navigation error. However it refreshes the page as control went to PR.
    I entered some amount in amount text field, and then clicked on "partially paid' link. it opens a custom page in new window.
    after that if i select any other record using check box, it goes to PR and refreshes the page. Is it possible to avoid this.
    Thanks
    Prabhu
    Its a payment screen, where i can pay multiple invoices. added select check box for the same. added below code on check box to capture event in PFR and default remaining amt to pay amount text field. i also have payment status link as column in the same table. on click of it i open a new custom window to show transaction details.
    if i select some invoices and modify amounts, and then if i click on status link just to see the status before clicking on pay button, this issue happens. as page refreshes on any action, all my modifications are gone.
    Select checkbox has been added using personlization and hence has to set set fire action in PR.
    Code in PR:
    Hashtable paramsWithBinds = new Hashtable(1);
    paramsWithBinds.put ("param", new OADataBoundValueFireActionURL(chkbox, "{$TrxNumber}"));
    chkbox.setFireActionForSubmit("selectPPR", null, paramsWithBinds,false, false);

Maybe you are looking for

  • Need to open word document from flash projector on Windows and Mac

    Hello, I'm creating a flash program that will be put on a dvd. And the dvd should function well on both windows and mac. I'm trying to open a word document on click of a button. I used geturl but it works only on windows but on mac it only opens a bl

  • Buying an external monitor...

    I'm shopping for an HDTV to hookup to my macbook. One of my friends said to use the miniDVI-DVI adapter and connect the DVI to an HDTV with a DVI input. Is this sufficient to use the HDTV as a monitor-aka- am i going to be able to read type? I know w

  • Issue in Check Function Module

    Hi All, Am doing a custom Workflow for Goods Movement. In my Workflow am using the Triggering event "created" of Business Object "/SAPCEM/02". I need to trigger my Workflow only for specific "Movement Type" (Eg. 551). The Event Container is having on

  • Email Filter Question

    Hi All, I have seen this topic a lot, so apologies for posting again, however I can't seem to get the solution here.  I want to set up an e-mail filter, and my Curve 8520 doesn't have the filter option on it.  I gather that I have to do it online wit

  • Printing only 2 decimal places

    Hi people, thank again in advance for your help. if i have a number with tons of decimal places behind it...and only wantto print on screen 2 (for instance when I am want $10.00 instead of $10.000000001) or somethign like that, what can i do? With Ma