Remove Roadmap from Portal page

hi All,
i want to remove Roadmap from our portal page which carrying hirarchy in ess-benifits & payments-open enrollement-shows roadmap and other. i want this page is without roadmap.Can anybody have any idea about this?
or can you suggest me how code flows for this in webdynpro? i am trying on this but still without any clue.please help me out.
thanks.
Nutan

Sai,
For the page in question, ensure that you select the "fixed", check box to resolve the issue.
Good Luck!
Sandeep Tudumu

Similar Messages

  • Unable to remove sub-tab from portal page

    Hi,
    Get the following error when trying to remove a sub-tab from one of our portal pages;
    An unexpected error occurred: User-Defined Exception (WWC-44082)
    An unexpected error occurred: User-Defined Exception (WWC-44082)
    Error while deleting page. (WWC-44130)
    An unexpected error occurred: ORA-20100:
    ORA-06512: at "PORTAL.WWSBR_STDERR", line 437
    ORA-06512: at "PORTAL.WWV_THINGDB", line 4021
    ORA-01403: no data found
    ORA-01403: no data found (WWC-44082)
    An unexpected error has occurred (WWS-32100)
    ORA-1403: ORA-01403: no data found
    ORA-01403: no data found (WWC-36000)
    Unexpected error encountered in wwsec_api.remove_group_acl (ORA-01403: no data found
    ORA-01403: no data found) (WWC-41417)
    In advanced options for the tab, 'Inherit Access Settings From The Page' is selected.
    Under page access settings, the 'From page template' option is selected.
    Any ideas?
    Cheers,
    Chris

    Please report this problem to Oracle Support. This is not normal behaviour.

  • How to remove 'Back to form' from portal page.

    How can I remove the 'Back to form' and tick from a portal page?

    I'm assuming you are creating a form from a procedure. Edit the form. The first page you see, scroll to the bottom. You'll see a text area where you can use the go('') statement. You'll redirect the submitted portlet to the page that displays your portlet. This skips the link.

  • Search syntax for Safari history? how to remove items from specific pages?

    I'm using Safari 5.0.3 and I prefer keeping the browsing history quite long for accessing contents I had been searching in the net some weeks ago.
    However, that way I'm collecting lots of clutter and therefore I'd like to remove selected entries from the history, e. g. from the page where I'm reading daily news etc.
    I tried to use the search field (accessible with Cmd-F in the history view) to search for parts of the corresponding web address, e. g. "http://www.heute.de", but I do not only get the history items from that site but many others from google and other pages.
    So I'd like to know: is there a search syntax to use the search field, like address=www.heute.de* which enables wild cards, operators like OR/AND etc.?
    If not, is there a 3rd party tool which can help or can I use spotlight/the finder to find and remove the unwanted items from the browser history?

    Hi beckmart
    there might be ready-made apps or add-ons to do that - but this may help...
    quit safari, open Home/Library/Safari/History.plist using PrefSetter
    enter the url you want removed in the search box, no need for quotes - say www.google.com
    expand the 'web history dates' section at left to see individual results, then select the first one & shift-click the last (don't use select all) to highlight/select all the results - then press the delete key to remove them. Then save the file.
    Naturally, a backup copy of history.plist would be wise - but the above seems to work very well.

  • R/3 Spool printing  from portal, page breakup is not proper

    Hai All,
    We use Enterprise portal to access SAP R/3 4.6C server. From portal when a program is submitted in background by giving a receipent name. The spool content are sent to the person SAP inbox.
    In portal we have created SAP inbox as a iview and using that i can view the spool content. The problem is when i try to print the spool from portal the page breaks are not properly coming. Whereas when i print the same spool from  SAP gui the page breaks are properly coming.
    Please let me know how to resolve this problem and let me know why this problem is occuring only in portal.
    Thank & Regards,
    Basha.

    What exact EP version are you using?
    In addtion, please have a look at transaction SM04 in the R/3 system where you can monitor all connection to the system. verify that connection are closed\re-used as required.
    Regards,
    Aviad

  • Removing ADFBindingFilter from jsp page

    I have showReport()method in showReport bean (it is not registered in faces-config.xml as managed-bean) that I am calling from jsp page with JSP call showReport.showReport(). My showReport() method looks like this:
    FacesContext fc = FacesContext.getCurrentInstance();
    ValueBinding vb = fc.getApplication().createValueBinding("#{data.documentReportsPageDef}");
    DCBindingContainer dc = (DCBindingContainer) vb.getValue(fc);
    OperationBinding execute =
    dc.getOperationBinding("ExecuteWithParams");
    execute.execute();
    Headless_ documentReportsPageDef code:
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
    version="10.1.3.36.73" id="documentReportsPageDef"
    Package="...view.pageDefs">
    <executables>
    <iterator id="DocumentReportsIterator" Binds="DocumentReports"
    RangeSize="-1" DataControl="AppModuleDataControl"/>
    </executables>
    <bindings>
    <action id="ExecuteWithParams" IterBinding="DocumentReportsIterator"
    InstanceName="AppModuleDataControl.DocumentReports"
    DataControl="AppModuleDataControl" RequiresUpdateModel="true"
    Action="95">
    <NamedData NDName="DocumentType" NDValue="@CDBR"
    NDType="java.lang.String"/>
    <NamedData NDName="RefNo" NDValue="12635"
    NDType="java.lang.String"/>
    <NamedData NDName="IsInstant"
    NDValue="1"
    NDType="java.lang.String"/>
    </action>
    <table IterBinding="DocumentReportsIterator" id="DocumentReports" >
    <AttrNames>
    <Item Value="Id"/>
    <Item Value=".."/>
    </AttrNames>
    </table>
    </bindings>
    </pageDefinition>
    It is registered in DataBindings.cpx
    Everything works fine until I remove:
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    from web.xml so ADFBindingBindingFilter would not be invoked for my jsp page. I have reason for this
    On execute.execute()line I get:
    Resolving collection source:DocumentReports for iterator binding:DocumentReportsIterator
    DCUtil, returning:oracle.adfinternal.view.faces.model.binding.FacesCtrlRangeBinding, for DocumentReports
    Looking for RSI with name :DocumentReports for iterator binding:DocumentReportsIterator
    DCBindingContainer.reportException :oracle.jbo.JboException
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.NullPointerException, msg=null
    If I restore filter-mapping so adfBindings are used for *.jsp page I get:
    Resolving VO:DocumentReports for iterator binding:DocumentReportsIterator
    DCUtil, returning:oracle.adfinternal.view.faces.model.binding.FacesCtrlRangeBinding, for DocumentReports
    Column count: 13
    So everything works fine again.
    Question: Can I make this work without ADFBindingsFilter on jsp page? I am invoking everything programmatically and I don’t understand why I need to set this filter on jsp?
    With this strange implementation, I am trying to solve problem discussed in article:
    oracle.jbo.common.Lock locks the application
    If my idea is hopeless, please clarify me this :)

    Ok, this is quite clear answer. Thank You.
    One more thing:
    In oracle.jbo.common.Lock locks the application Steve M, has left the the question open by "I'll ask one of our developers to comment in this thread on ideas for implementing this long-running report.". Maybe You could close this one too?

  • Iweb question. How can you remove music from a page?

    How can you remove music from a your welcome page on iweb? Dumb but I can'f figure it out.

    Hi ...
    Try posting in the iWeb forum here.

  • Email a file from portal page

    Hi,
    Can anyone advise how I could email a document (pdf) from the application server to a portal user. This would ideally be a link on a portal page that would email the docuement.
    Thanks in Advance,
    Brandon

    hi brandon,
    this functionality is not there out of the box. one idea i have is to attach a procedure to your item type that passes the item ID to the procedure. you can then look up the item in the content management views wwsbr_all_items. then look it up in the documents table and use a database function (i think there is one to mail) to mail the item.
    i am not aware of any easy way.
    hope this helps.
    regards,
    christian

  • Removing breadcrumbs from home page

    RH11 | WebHelp
    I apply breadcrumbs through the WebHelp Settings screen when I compile. This method applies them to every topic. However, it don't want to display them on my home page. Does anyone know if it's possible to remove breadcrumbs from an individual page after compilation?
    Thanks
    Jonathan

    Sure there is! But it may not be the most user friendly of solutions ;-)
    It may be a better idea to use master pages with a breadcrumb placeholder. Then simply assign another master page (without bread crumb placeholder) to the start page.
    If you want to remove the auto inserted breadcrumbs, open the file and look for the 3 lines starting with:
    document.write("<p style
    AddMasterBreadCrumbs("
    document.write("
    Simply remove these 3 lines or comment them out. (By placing // in front of them.)
    The exact content on these lines depend on the page you're on and the styling you've provided.
    Kind regards,
    Willam

  • Remove queries from Portal Roles

    Hi,
    We have a requirement in the portal and BW queries.
    We want to remove queries from the portal roles. That is the queries must not be physically deleted, but they should not appear in the portal when viewed through Business Explorer.
    Is this possible with in the portal. How can this be done?
    Regards,
    Sujana

    Hi
    Go to TCode
    PFCG.
    Enter the role in which the query is assigned.
    Then go to the Tab menu,
    Select the name of the report or Query.
    Remove the entry from the role.
    This will do what you need.
    Its in BW side not in R/3.
    Regards
    M.A

  • How do I remove AOL from opening page?

    How do I remove AOl from the startup page on Firefox?

    See [http://support.mozilla.com/en-US/kb/How+to+set+the+home+page How to set the homepage]

  • Lotus Notes Error while Accessing from portal page

    Hi,
    I ahve suceesfully installed Lotus Notes Application , i am also
    getting message from when accessing from External Administration
    Link.i have added the Lotus Notes Inbox Portlet to my portal
    page , But here it is showing Authentication Failed (Update
    login information). I again provided all the informtion again ,
    But still it is showing the same error . Can anybody help me
    what to do ?

    Dear
    You will have to create one System for R/3 Server Access, Once you have created that you will have to maintain User mapping for System Access for each individual users, who want to access the DMS Documents from Portal.
    Regards,
    Tushar Dave

  • Iweb 08 removing photos from photo page upon save

    I am running into a peculiar bug in iweb. I have a working iweb site with mostly photo or movie pages. Was in updating the iweb site on my new MBP late 2008 adding in a new photo page.
    1) added new photo page and renamed
    2) dragged ~8 photos from iphoto to populate the page
    3) dragged additional groups of photos (~10 at a time)
    4) edited some text at the top of the page
    5) clicked save
    All but the first set of photos dragged onto the page from iphoto were deleted from the page.
    Thought this to be very strange as something like this happened two weeks ago and I thought it was an errant mouse click or something I did.
    But again - why? I went back and added more photos to the page to fix. Moved over 3 groups and then clicked save. Again the photos disappeared. Getting frustrated at this time.
    Again added photos to the page in groups and saved the file after each addition. Page eventually was created with all photos saving after each group was added.
    Has anyone else had this issue?
    Thank you,
    Keith

    After you ran the updates to iWeb on your new Mac, did you do a restart? Although you are not instructed to do this, do it anyway!
    Most problems in iWeb can be fixed by deleting the preferences file - Home Folder/Library/Preferences/com.apple.iWeb.plist, restarting your Mac and running Disk Utility to repair permissions.
    Don't forget to reset your preferences after deleting the .plist.

  • Remove "Edit" from contacts page

    Hi All,
    I have attached "Contacts" Page to my room template , created lay out set for user not to add contacts and folder ie removed new contact and new folder.
    but on right corner of the page , edit button still there for user contacts page  - where can i set to remove it.
    even news page too having the same problem.
    Regards,
    Sai Battula.

    Sai,
    For the page in question, ensure that you select the "fixed", check box to resolve the issue.
    Good Luck!
    Sandeep Tudumu

  • Remove Options from iView, Page - Tray

    How do I remove the Options from an iView, Page Tray in ESS & MSS:
    'Add to Favorites' Option
    'Details' Option
    'Expand'/'Collapse' Icon in Tray
    'Help' Option
    'Open in New Window' Option
    'Personalize' Option
    'Refresh' Option
    'Remove' Option
    I wish do this global for my ESS and MSS user when they view any Pages and iViews
    Thanks
    WB

    Hi there,
    Make the necessary settings here:
    SPRO -> Personnel Management -> Employee Self-Service -> General Settings -> Homepage for Self-Services -> Resources-> Define Resources -> Define Resources (Add Entries)
    Changes made to this service will appear in ESS/MSS and will affect the Icons the manager or an employee will be able to see on the portal.
    Goto the below link too:
    http://help.sap.com/saphelp_erp2004/helpdata/en/f6/263359f8c14ef98384ae7a2becd156/frameset.htm
    Regards,
    Ponneswari.

Maybe you are looking for

  • Recover the reverse payment

    The payroll has been run up to July 2010. I press the wrong button of the reverse payment function to reverse May 2010 payroll, which I just want to reverse July 2010 payroll. How can I run May 2010 payroll in order to recover the missed out May 2010

  • Purchase of appliances on backorder

    On August 26, I purchased a washer and dryer in store and was told that both items were currently on backorder and would not be available for delivery until after September 21. Since it was an in-store purchase, I was not sure if there was a way I co

  • Check rule in invoice plan

    Hi,     please revert back , how i should create the "Check rules" for invoice plan. and cutomizing "Terms of Payment key" (tcodes). Thanks&Regards, Benge

  • Can any of you readers direct me to a logical HP customer support area?

    Short version: I bought an ink cartridge listed as "compatible" in my instruction manual (Deskjet 4160, cartridge is a 95 Tri-Color).  Installed it.  Got "incompatible" message from HP utility. After many inquiries, tonight I got an email from HP tel

  • Alarm Clock Error in Notification Center

    In iOS7 on my iPhone5 I receive a weird notification centre screen. In the overview for 'Tommorow' it shows 4 alarm clocks. I checked on my phone and only one is accurate. The other 3 alerts are just not in my alarmlist. I doublechecked my olds 4s an