Portal left side navigation proble

Dear All,
I am facing one strange problem in portal left side navigation. I am having 18 pages in left side navigation panel those pages are appearing when i typed portal url with host name. If i typed portal url with IP address 18 pages are not visible but the first appliction which is default is loading loading.
I dont know why pages are not loading
Can any one help me out for this issue its URGENT.
Regards
Suresh

If your portal server IP Address is say 1.2.3.4 and the port no. is 50000
you are right now accessing portal through http://1.2.3.4:50000/irj
Now what you need to do is
go to run command type drivers. When it opens go to etc folder. then hosts file
there make an entry like
1.2.3.4 epdev
now you can access the portal through http://epdev:50000/irj
Hope this helps!
Regards
Atul Shrivastava

Similar Messages

  • Best way of having left-side navigation menu?

    Hello Folks,
    I'm interested in developing an application using JSP and the design requirement is that it should have a left-side navigation menu. Is there an Oracle recommended way of doing this or should I resort to using DHTML? In addition, please let me know if you have any suggestions.
    Thanks!

    You have two parts in your question: left side navigation menu;
    You can define and use templates (HTML Templates) for your Pages in the Portal to structure your pages, such that Navigation or navigational tools can be placed on the page wherever you like. That is for the positioning of the navigational tools.
    To define your navigational tools (menus, for eg), you may still use DHTML and/or a combination of other methods.
    hope that helps!
    AMN

  • Best approach -Tabs based ADF Tree left side navigation with Dynamic Regions with out UI Shell

    Hi,
    Somebody can help for the best approach to implement the following requirement.
    Req: When the user select the ADF Tree left side navigation menu, each menu will open as multiple tabs(Dynamic Tabs) in right side content area with out UI Shell Template.
    I completed the
    Step-1: From the Model project, I can able to render ADF Tree in the using view and view links. I can get the adf tree which is having 3 menu items. Each menu item having 2 sub menu's.
    I took each menu item as one(1) taskflow, each taskflow will have two(2) fragments.
    Total I have 3 task flows as Menu Items and 6 fragments for sub menu's.
    Step-2:  My question is How do I implement Tab based the ADF tree navigation (left side area to dynamic regions in content area) through dynamic regions? Please provide the steps in view layers.

    Than ks for your response.
    This is working fine for ADF Tree navigation with dynamic regions if the taskflow having only one fragment. if the taskflow having more than one fragments, this will not work. The following conditions are always satisfies one page fragment of either "employees" or "departments" task flow.  If the "employees" task flow have 2 page fragments, it's not work even you pass parameters through routers.
    public TaskFlowId getDynamicTaskFlowId() {
    if (currentTaskFlowID == null ||
    currentTaskFlowID.equalsIgnoreCase(“employees”)) {
    return TaskFlowId.parse(employeetaskFlowId);
    if (currentTaskFlowID != null &&
    currentTaskFlowID.equalsIgnoreCase(“departments”)) {
    return TaskFlowId.parse(departmetaskFlowId);
    return TaskFlowId.parse(employeetaskFlowId);
    My question is "Same use case with Dynamic Tabs" when the user click on any adf tree node.

  • How to remove Left side navigation on Portal screen

    Hi Friends,
    I want create Role, workstation and IView. Means I dont want left side links so, I created Role, Workstation and IView but on portal screen leftside navigation also coming, could you please help in this.
    Regards,
    Lakshmi Prasad.

    Lakshmi,
    You have do some modification on desktop framework page.
    Please follow these procedure :-
    Content admin -> portal content -> Navigate & Open  default Framework page ->
    select the check box "Desktop inner page" -> Press Open -> Select the check box in the Visibible column against "Content Area" (uncheck the remaining checkboxes for others in Desktop inner page) -> save -> logout and login to portal
    Ram

  • Turning the left side navigation on and off dynamically

    I need to have the navigation on the left side turn on and off pending what community the current user is it. I can do this (kind of) by creating a class implementing NavigationCommonVerticalView and IView. My over riding methods check the community ID and return null need be.
    The problem is that whatever class is calling this still creates a table cell with a width of 200 for the navigation bar wether it is there or not. I imagine I can fix this one of two ways.
    1 - Set the cell width to be 0 all the time. When there is content the browser should force this to be expanded. I however can not find this setting anywhere
    2 - Override the class that calls my NavigationCommonVerticalView class. Hopefully this will provide a mechanism to turn that cell of completely. However I have not determined what class this. I thought it might be "com.plumtree.portalpages.browsing.myportal.myPortal" by when I try to override this class, I can not get it to load at startup by adding it to the customActivitySpaces.xml file.
    Please help.

    Hi Jeff,
    Unfortunately, there is currently no setting to allow you to set the cell width.
    In our next release there is a setting available in NavigationSettings.xml. Also, the page checks to see if the value returned from the Display method of your View is null before inserting a cell for the View's content.
    The only thing that you could do before the next release would be to override com.plumtree.portalpages.common.uiparts.PlumtreeDP. I hesitate to suggest doing this because PlumtreeDP controls the display of almost all pages in the portal.

  • Left side custom navigation

    Hi,
    We would like to add left side custom navigation in Oracle Webcenter Interaction (ALUI 6.5 version) portal pages. We know the portal offers us to add navigation at the top of the page by adding header. Is there a way we can add left side navigation coverting some space on the left the whole page?
    Thanks.

    Yep, it is definitely possible.
    Through code you have access to communities, pages, sub-communities and related communities.
    You need to create a portlet either remotely (.net/java) or through Publisher, code the navigation within it, then set your experience definition "Navigation Options" to "Portlet Ready Navigation" - but only change that once you are content with your portlet navigation as this will wipe out the out of the box nav and you might not be able to access certain things. I don't recommend changing this setting on your admin accounts experience definition out of safety.
    Let us know if there is anything in particular you are trying to do.
    I recently made a blog post about a new navigation that we are using. We replaced our combo of header and left column navigation with just header navigation and so far folks seem to prefer it. Here is the post:
    http://xuexideshengsuo.blogspot.com/2010/12/oracle-webcenter-interaction-page.html
    Here is some starter code that might help.
    This gets all of the communities a person has added (or that are mandatory) and adds them to the commmenu array.
    Then it loops through that array and spits out a link for each one.
    <pt:ptdata.mycommunitiesdata pt:id="commmenu"/>
    <pt:logic.foreach pt:data="commmenu" pt:var="element">
    <pt:core.html pt:tag="a" href="$element.url"><pt:logic.value pt:value="$element.title" /></pt:core.html>
    </pt:logic.foreach>
    This gets all of the pages a person has access to for the community they are currently on and then displays them.
    <pt:ptdata.currcommunitypagesdata pt:id="commmenu"/>
    <pt:logic.foreach pt:data="commmenu" pt:var="commpg">
    <pt:core.html pt:tag="a" href="$commpg.url"><pt:logic.value pt:value="$commpg.title"/></pt:core.html>
    </pt:logic.foreach>
    user577794 wrote:
    Hi,
    We would like to add left side custom navigation in Oracle Webcenter Interaction (ALUI 6.5 version) portal pages. We know the portal offers us to add navigation at the top of the page by adding header. Is there a way we can add left side navigation coverting some space on the left the whole page?
    Thanks.

  • Portal problem in navigation after upgrade Service Pack 25 (SP25)

    Hi experts,
    We have upgraded our NetWeaver 2004 (6.40) environment with Portal 6.0 to the latest Service Pack 25 (SP25).
    After the whole upgrade a strange problem occurs in the Portal when using the portal navigation. After a few clicks in the navigation a JavaScript error in the browser occurs. We use Internet Explorer 7 and 8.
    When the error occurs, we have to refresh the browser to use the portal again. I have the idea that the problem is relating to the session management but i can't figure it out.
    Any ideas?
    JavaScript error details:
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
    Timestamp: Mon, 25 Jan 2010 11:29:53 UTC
    Message: Permission denied
    Line: 944
    Char: 39
    Code: 0
    URI: http://portal.url.com:50000/irj/portalapps/com.sap.portal.epcf.loader/script/standard/js13_epcf.js?6.0810
    Edited by: J. Weghorst on Jan 29, 2010 11:11 AM

    Dear Benjamin,
    Thank you for your answer. I think it helped us with the scope of the problem.
    We use a FQDN for the Portal and also a FQDN for the backend (R/3). There is nothing changed in those hostnames between the upgrade from SP19 to SP25. The browser problem occurs after a few clicks (10 - 30) in the left-side navigation and is not based on time or specific iView. So its difficult to find a routine structure in the presents of the error.
    I have also used the tool to analyse the JavaScript code. It gives a error on a not defined object value within the file js13_epcf.js?6.0810.
    It seems that the part of the code had to do something with the iFrame usage of the Portal. But it's to difficult to find the real cause of the issue.
    Any ideas? Thanks in advance.
    Edited by: J. Weghorst on Feb 1, 2010 4:51 PM

  • Navigation tabs top and left side

    Hi
    I've never built a site with tabs both across the top as well as the left side.
    across the top is supposed to be the categories and within each category, I want to have the related navigation down the left side.
    is each of the tabs going to end up being a page? if so, how do you make the pages cascade behind each other like file folder tabs?
    or are the tabs going to become links to the various pages?
    how would you set that structure up? I'm looking at the example of the Sushi Bar website in GoLive CS2 but thats not really what I want
    any direction would be great
    thanks
    best, M/

    >or are the tabs going to become links to the various pages?
    Yes, that's likely going to be the way to go if the tabs are the primary navigation. If they were the secondary navigation, might be worth looking into the Spry tabs, or a similar JavaScript option:
    http://labs.adobe.com/technologies/spry/samples/tabbedpanels/tabbed_panel_unobtrusive.htm
    http://labs.adobe.com/technologies/spry/home.html

  • After I loaded Iphoto 11 9.2.1 ,the icons left side of navigation (Mediathek, Albums, ..) have only grey colour. No longer colourfull. What´s to do?

    After I updated i_Photo 11 Version 9.2.1.  the icons, left side of the navigation (Mediathek, Albums, etc...) have grey colour. They are no longer colourfull.
    What to do?
    Any idea?

    iPhoto menu -> Provide iPhoto Feedback and let Apple know what you think.
    Regards
    TD

  • Hi from few days onwards i found one abnormality in my iphone4s .That is if i observe my phone settings screen from right side of the device top navigation appearing rightside height is more than the left side. In reverse manner from the left side.

    Hi from few days onwards i found one abnormality in my iphone4s .That is if i observe my phone settings screen from right side of the device top navigation bar appearing rightside height is more than the left side. In reverse manner from the left side. I dnt know whether it is default feature of iphone or not but i am really disappointed due to this. So please anyone help me in this issue and let me clear my doubt and make me happy. Thanks in advance.

    I believe what you are seeing is an optical illusion when viewing the screen from the side. Try to align one of the one of the options in Settings, like General, with the navigation bar you'll see it does the same thing.
    Hope that helps

  • Portal iviews as services in left hand navigation

    When I click on a iview - I am able to show iviews as "Relative Links" in the left hand navigation.
    But I am not able to show them as "Services" in left hand navigation below "Detailed Navigation".
    Suggest me to solve this.

    I have different kind of iviews  from URL iview to Transaction iVIews or Webdynpro iviews, I am showing them in lefthand side presently in Detailed Navigation box. but I want to show them as Services to a iview/page/workset is that possible?
    I have seen that in Buyer/Purchasing Business package. But I am not able to design in such way..

  • Hide Navigation Panel buttons in left side of live cycle form

    Hi, i need to "Hide Navigation Panel buttons" in the left side of the live cycle form when its open in the workspace using scripts, so the user no need to right click each time to Hide it,
    thank you

    Hi,
    Sweet, good to know
    Thanks
    Radzmar.
    Regards
    Malcolm

  • Unable to find Contract term in the navigation bar at the top left side of the souring page

    HI,erveryone:
    i can't find Contract term in the navigation bar at the top left side of the souring page.
    this is what i have tried:
    1,an approved contract module connected with RFI,RFQ
    2,set porfiles in system administrator->porfile->system  :PO: Contracts Enabled YES
    what else i shall set??
    THANKS

    In Firefox 3.6 on Windows you can hide the menu bar via "View > Toolbars" or via the right click context menu on a toolbar.
    Press and hold the Alt key down to bring up the menu bar.
    Go to "View > Toolbars" or right-click the menu bar or press Alt+V T to select which toolbars to show or hide.
    See also [[Menu bar is missing]]

  • Portal Theme - Detailed Navigation Changes

    Hi All,
    Can anyone please tell me if it is possible to take the detailed Navigation block as drop down from the 2nd level navigation?
    The detailed navigation block is always displayed on the left side of the portal page. The requirement is to display it as drop down from the second level navigation i.e. from the navigation panel as appears on SAP screens.
    Please tell me if it is possible and how.
    Thanks,
    Rahul.

    Hi Rahul,
    first, welcom in the SDN forum.
    About your question: No, this is not possible by standard means. The only thing you can change how the TLN works is setting a hover effect, see http://help.sap.com/saphelp_nw04/helpdata/en/53/a16a3e54a2e946e10000000a114084/frameset.htm but this is not what you want.
    To achieve this, you would have to implement it by your own.
    Hope it helps nevertheless
    Detlev
    PS: Please consider to reward points for helpful answers. Thanks in advance!

  • Portal Top Level Navigation

    Hi,
        How can i remove the display bar on Top Level Navigation(Left side).
        Thanks.

    Hi Shah,
    Please follow the procedure:
    <b>To Configure Top-Level Navigation</b>
    1. In the Portal Catalog choose <i>Portal Users</i> -> <i>Standard Portal Users</i>. This folder contains the <i>Default Framework Page</i>.
    2. Right-click <i>Default Framework Page</i> and choose Open -> <i>Object</i>.
    3. From the Page Content List select the <i>Top-Level Navigation</i> iView and click <i>Properties</i>.
    4. Scroll to the <i>Number of Display Levels</i> property and enter the <b>value 0, 1, or 2</b>, depending on how many navigation levels, if any, you want for top-level navigation.
    <b> Choosing 0 removes your top-level navigation and displays your navigation structure in the Detailed Navigation iView. </b>
    5.Click Save.
    For more information see SAP Note <b>687485</b>.
    I hope this solves your problem.
    Regards
    Pravesh
    PS: Always consider rewarding points for helpful answer on SDN.

Maybe you are looking for

  • Problem of orphan child records

    Hi I am working on Oracle 8i DB. The production database contians around 100 tables.About 60% tables are interrelated by referential integrity . However , there are some records found which are not such that child records are present without parent r

  • Why does the Video do this?  Why is iMovie doing this all of a sudden

    http://www.esnips.com/doc/407a5579-501f-44a4-ad41-789684ea36ca/GIf-Remastered-Co medy-2 WAtch it. near the beginning, the video just freezes and my vid has a lot more. Why is it doing this in imovie and how can I fix this? I used mov and mp4 and they

  • Movement type for reserve material

    Hi sap gurus, While doing quality inspection, I had kept some quantity in reserves. How can move it to unrestricted stock and scrap stock. Which is the T.Code for that Cheers, Krishna

  • 3 song were deleted while syncing and says it was already purchused

    When I was done syncing my ipod to update 3 new downloaded songs where deleted. When I looked at the purchuses it said they were purchused. I tried to download it of the last sync but it won't download. I don't know what to do.

  • Formalised user creations in Portal

    How do I create users (already existing database users) in Portal 3.0 based on existing users? For instance if we want 600 users to use a site (an Intranet) in personalised way (so we cant use a universal user everybody can use), but dont what do cre