Editing Masthead area in portal

Hi,
Can anyone tell me how to edit the data in Mast Head area. I want to remove help and personalize links.

Hi Anmol, what do you like to translate?
If you refer to "Welcome" message, enter to SAP and go to SPRO > Employee Self-Service > General Settings > Homepage for Self-Services > Headers and Area Group Pages > Define Headers, then copy the SAPDEFAULT entry from Define Headers (Add Entries) to Define Headers (Change Entries) activity. This is to make your custom entry.
Then, go to Define Headers (Change Entries) select the row of your new SAPDEFAULT and Goto menu > Translation, select your language and press continue, then change the welcome text.
Take in count you have to have installed this language in your ERP first.
If you refer to text links from Portal Header, you can go for Portal Translation.
Check the follow links to find out more information:
[Portal Content Translation (SAP Help)|http://help.sap.com/saphelp_nw70/helpdata/EN/74/641640b7b6dd5fe10000000a155106/content.htm]
[Portal Content Translation (Wiki)|http://wiki.sdn.sap.com/wiki/display/EP/PortalContentTranslation]
Best Regards

Similar Messages

  • Need to add a link to the masthead area of the Portal

    Hi
    I need to add a link to the masthead area of the portal. That link needs to be able to print the content of the current page.
    Ihave downloaded the com.sap.portal.navigation.masthead into the NWDS.
    Can anybody please let me know where exactly to modify the code.
    i am guessing i may need to use window.print() to print the page.
    Thanks
    Sharath
    Thanks
    Sharath

    Step 1: Adding new link in the masthead
    1. Rename the par file to your own namespace and import the PAR using eclipse
    2. To add your link - modify HeaderiView.jsp appropriately
    3. Build the PAR and export using Eclipse
    Step 2: Create an iView
    1. Content Administrator -> Portal Content -> Select the folder in which you need to create the masthead iView. Right click on the selected folder and "Select New From PAR" -> iView
    2. Select the PAR file name created by you in Step 1 a
    3. Choose "default" in Portal Component Selection
    4. Provide the properties for the iView and save
    Step 3: Modify Portal Masthead
    1. Add the iView created in Step 2 to the Framework Page of your application
    2. Remove the existing Masthead iView from the framework page and add iView created in Step 2 in the framework page.
    3. Note that the position should be the same where the previous masthead is removed.
    Logoff and logon with the user who is assigned the framework page - you should be able to see the new masthead with links
    Incase you are changing the default framework page and default masthead ensure that you have a backup so that you can revert.

  • Editing Masthead in Portal

    I have downloaded from the Portal the Par for the Masthead in the Portal, to try and edit the JSP.
    I need to place my own company banner and logo, but was unable to find where in the code I need to edit.
    Please advise

    Hi,
    Refer the link
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/ep/a-c/customizing the logon user interface of sap enterprise portal 6.0
    You can open par file using winzip. extract to local folder maintaining the par file folder structure. make changes to the JSP pages and then zip it.
    Custom Portal Logon Page
    Hope this helps.
    Thanks,
    Praveen
    PS. Dont forget to reward points if solved or useful

  • Com.sap.portal.navigation.masthead.par from Portal 7.0 to 7.30 deployment

    Hi all,
    I must to deploy the "com.sap.portal.navigation.masthead.par" from Portal 7.0 to Portal 7.30
    I'm doing the following steps:
    - Convert .par to .ear
    - Import .ear to NWDS 7.30
    - Deployment perspective > Import > File System > com.sap.portal.navigation.masthead.ear > Start
    Results log:
      S U M M A R Y
    ~~~~~~~~~~~~~~~~~~~
    Successfully deployed:           0
    Deployed with warnings:           0
    Failed deployments:           1
    ~~~~~~~~~~~~~~~~~~~
    [ERROR CODE DPL.DCAPI.1031] AllItemsAlreadyDeployedValidationException.
    Reason: ASJ.dpl_dc.003456 All batch items are marked as AlreadyDeployed because of Version check.
    1. File:D:\Documents and Settings\corellavpd\Escritorio\com.sap.portal.navigation.masthead.ear
    +     Name:com.sap.portal.navigation.masthead+
    +     Vendor:sap.com+
    +     Location:SAP AG+
    +     Version:1+
    +     Deploy status:AlreadyDeployed+
    +     Version:LOWER+
    +     Description:+
    +          1. Already deployed component has version:7.3005.20110929162215.0000+
    How can I deploy in Portal 7.30 an older version of "com.sap.portal.navigation.masthead.par" ?
    Thx!
    M.
    Edited by: ALL NEW Arinso on Nov 17, 2011 12:54 PM

    Hi Detlev,
    Thanks so much for your reply. Regarding "Create Portal Archive (EAR File)" everything is understood, thanks! In NWDS 7.3 everything must be deployed via .ear file
    Regarding the libs... yes, of course I know I compile the sources against some libs Then, I'm gonna type it an example:
    - NWDS 7.0 > import com.sap.portal.navigation.masthead.par
    Everything is ok and working. Now, the same in 7.3:
    - NWDS 7.30 > import com.sap.portal.navigation.masthead.par > LogInRedirect.jsp > exactly the same code as NWDS 7.0 (of course), but with errors in lines:
    <%@ page import = "com.sapportals.portal.navigation.*" %> >>> The import com.sapportals.portal.navigation cannot be resolved
    <%@ page import = "com.sapportals.portal.prt.runtime.PortalRuntime" %> >>> this is resolved correctly into SAP_EP\resources\prtapi.jar
    I understand I must to add the corresponding libs for "com.sapportals.portal.navigation.*" to be used... but how I could know which one and where is located? I hope I'm explaining myself clear...
    Thx!!
    M.
    Edited by: All NorthgateArinso on Nov 23, 2011 4:47 PM

  • How to display the Full Name in Masthead of the Portal

    Where exactly in the HeaderiView.jsp I need to edit to be able to display the full name in the Masthead of the portal.
    e.g.
    Welcome Paul Jones

    Hi Paul,
    Following customized code displays Full Names on my portal:
    private String GetWelcomeMsg(IPortalComponentRequest request, String welcomeClause)
        IUserContext userContext = request.getUser();
        if (userContext != null)
              String firstName = userContext.getFirstName();
              String lastName = userContext.getLastName();
              String displayName = userContext.getDisplayName();
              String salutation = userContext.getSalutation();
              if (displayName != null)
                   if(salutation != null)
                        return java.text.MessageFormat.format(welcomeClause, new Object[] {displayName, salutation, " "}).toString();
                   else
                        return java.text.MessageFormat.format(welcomeClause, new Object[] {displayName, " ", " "}).toString();
              else if ((firstName != null) && (lastName != null))
                   if(salutation != null)
                        return java.text.MessageFormat.format(welcomeClause, new Object[] {firstName, lastName, salutation}).toString();
                   else
                        return java.text.MessageFormat.format(welcomeClause, new Object[] {firstName, lastName, " "}).toString();
              else
                   return java.text.MessageFormat.format(welcomeClause, new Object[] {userContext.getUniqueName()," ", " "}).toString();          
        return "";
    Regards,
    Sergei

  • Saved Shopping Cart Display/Edit functions are not working

    Hello SRM experts,
    The problem that I have is that the buttons like Display, Edit, etc are not working on a saved Shopping Cart. What is the best way to debug this problem? How would I find out what methods are being called on the SRM system or if some entries are missing in some table for BUS2121?
    We are on SRM 7.0 PPS SPS 5, Portal 7.01 SPS 5.0.
    Thanks,
    Mani

    Hi Mani,
    We are also facing a similar issue. Our protocol is HTTP throughout but still the issue persists.
    Can you shed some light on any other config that you changed?
    Regards,
    Nikhil

  • Linking help from Masthead area par IView.

    Hi All,
    I hv to link the Help option provided in masteadhead area to a par IView which I created in JSPDynpages. This IView is stored in Portal_Content/MyFolder
    However, I am confused how to link this help option from masthead area. My requirement is, when we click on Help option it should open this par IView in a new window instead of pop-up window.
    Please, help me in this regards. Any other ideas also welcome. Appreciate your time and valuable inputs.
    Best Regards,
    Ravindra.

    Hi Ravindra,
    You can do that easily .
    Refer to this blog for masthead address.
    MastHead Change & Portal Desktop
    In the masthead iview open the property there you can define the link to the Help Content.(look for help link property)
    Change the value there.
    Sample:-
    http://portal.acme.com/irj/index.html?navigationtarget=roles://portal_content/acme/roles/com.acme.role.public/com.acme.workset.public/topics/politics/com.acme.page.health.
    Short(ening) Portal URLs
    Refer to this also
    http://help.sap.com/saphelp_nw70/helpdata/en/38/5dc53e5ae84d3be10000000a11405a/frameset.htm
    Thanx
    Pankaj

  • ESS Masthead Translation in Portal

    Hi,
    I have translation sheet where I want to translate my Technical ID com.abc.hrcore.masthead.par -   Masthead iView (text like - Change Language, Set Portal Language,Portal Language, Ok, canel....)  from English to Russian language in portal.
    How to do ESS Masthead translation in portal
    Thanks
    Edited by: Anmol Kumar on Jan 18, 2010 7:43 PM

    solved

  • Problem with desktop resolution in the masthead area

    Hi,
    One of my clients is having a big monitor and when he tries to access portal some of the screen elements in masthead are appearing twice but in smaller monitors it is coming correctly.
    So how do i rectify this problem
    Thanks
    Bala Duvvuri

    Hi Bala,
    Make sure all attributes concerning your images in the masterheader, starting with "Repitition..." in the theme editor under System Administration -> Portal Display, are set to no-repeat.
    This will solve your problem.
    Hope this helps.
    Regards,
    Alain

  • Lightroom 5.4. Edit options are greyed out. I tried reset warnings already.

    Hi,
    I just added a bigger harddrive and reinstalled Lightroom 5.4.
    Now,  2 of 3 edit options are greyed out.
    No access to plug-ins or external editors for original files.(NEF's)
    I tried reset warnings already.

    Yes, Nikon transfer was used. From a D800, But that was a year ago.
    It has been working fine.
    Before I upgraded to 5.4 I had this problem.
    When I upgraded to a larger harddrive and re-installed 5.4 the access was limited to only "Copy with Lightroom adjustments."
    Last night it started working, I had full access!
    But, today it won't work on the same image/plug-ins.
    the NIK Collection for example.
    This effecting ALL RAW files! D100, D90, D3100, D7000, D800.
    My Laptop is doing it now, too!!!
    I installed DNG Converter 8.4 with No Difference. NO RAW EDITS.
    I can't send a NEF to DXO Optics Pro 9, or anything else!

  • I have just transferred my iTunes library from a hard drive previously connected to a windows laptop to a MacBook Pro and now all my options for editing info are greyed out. I have seen the answers if still using windows but could find a similar situation

    I have just transferred my iTunes library from a hard drive previously connected to a windows laptop to a MacBook Pro and now all my options for editing info are greyed out. I have seen the answers if still using windows but could find a similar situation to this one.

    Eels290776 wrote:
    if my external hard drive is not connected to either of my machines, and I download something onto my iMac and then something different onto my Macbook, where are my machines going to be storing the new downloaded media
    when the drive is not connected, +iTunes media folder location+ will default back to <MacintoshHD>/users/<yourname>/music/iTunes/iTunes music (or media)
    and when I next connect the external hard drive how will I easily get the newly downloaded media onto the external HD
    you'd have to point +iTunes media folder location+ back to the external via preferences > advanced > iTunes media folder location, then file > library, organize library > consolidate files
    and essentially, to have it easily readable on both machines?
    in that case it might be best to copy the entire iTunes folder to the external. then, on each machine, launch iTunes while pressing option on your keyboard. when prompted, click on +choose library+ and navigate to the iTunes folder on the external.
    note only one iTunes can access the iTunes library @ a time !
    also, make sure the external is mounted on either machine before launching iTunes.
    JGG

  • HT3149 iPhoto 09 When I click on the preview pane to move a photo into edit, it shows up black and the edit buttons are not active.  How do I fix that?

    When I click on the preview pane to move a photo into the edit pane, there is no image just a black square and the edit buttons are not active. A few images in an event will move to the edit pane but most will not.  I cannot work with those images that do not enter the edit pane..no attaching to email, make a card, slideshow, etc.

    There are several possible causes for the Black Screen issue
    1. Permissions in the Library: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Include the option to check and repair permissions.
    2. Minor Database corruption: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild.
    3. A Damaged Photo: Select one of the affected photos in the iPhoto Window and right click on it. From the resulting menu select 'Show File (or 'Show Original File' if that's available). (On iPhoto 11 this option is under the File -> Reveal in Finder.) Will the file open in Preview? If not then the file is damaged. Time to restore from your back up.
    4. A corrupted iPhoto Cache: Trash the com.apple.iPhoto folder from HD/Users/Your Name/Library/ Caches...
    5. A corrupted preference file: Trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder. (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    If none of these help:
    As a Test:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • How do i add a an editable text area along with a basic shape?

    hiee
    Thank u guys for replying to my previous query.I got the solution.
    Now ,my problem is, whenever i am drawing a new shape on the panel i want to add an editable text area along with the shape so that the shape can be given a userdefined name(something like Rational Ross).
    I am using g.drawString() but with that i can only add a static string.
    How can i add a JTextField or JTextArea along with the shape??
    Thanking u guys in advance.
    anvesha.

    It is considered standard procedure to acknowledge people's replies in the corresponding thread.
    As for your current problem, you'll have to make sure that the component you're subclassing is at least a Container. A JPanel could be a good pick. Set the layoutManager to null. Add your JTextField to your JPanel and use myTextField.setBounds(x, y, width, height) to place it whereever you want.

  • Edited images are not being saved in LR5

    When I edit images in PSE11 from LR5 and then hit SAVE...my edited images are not showing up in LR5:(

    Dipti,
    Hope below urls will help you,
    https://littletalk.wordpress.com/2010/12/10/people-search-result-doesnt-have-images-in-sharepoint-2010/
    https://social.technet.microsoft.com/Forums/office/en-US/eea8aa10-4565-41bf-98ec-dc93fb600021/some-users-pictures-are-not-showing-in-people-and-groups-but-are-viewable-in-the-thumbnail-and-my?forum=sharepointgeneralprevious
    http://westerdale.biz/sharepoint-2010/display-active-directory-profile-thumbnail-photo-and-other-attributes-in-sharepoint-2010?doing_wp_cron=1421939809.4895009994506835937500
    Sudip
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • In FF (30.0) Password Manager, when you open Edit, what are all the fields and how do you fill them in?

    When you open Edit, there are two choices: Web form and annotated.
    What is the difference?
    Then, there are fields for Host, Submit Prefix, Username, Password, etc.
    How do you fill in these fields?
    When you click to have the manager "Guess from Current Page," all fields don't necessarily get filled in, so is it just for username and password?
    I use the edit feature constantly, so it's a little odd not to see more detailed instructions here.
    When I click on Tools, the Saved Password Dialog is on the list, so it's on my toolbar all the time.
    I use it constantly.
    What is the latest in password security? I know there are competing ideas. What does Mozilla think?
    Thank you.

    Hmm, could this be a feature of your extension, "Saved Password Editor"? The support article ([[Password manager - Remember, delete and change saved passwords in Firefox]]) doesn't show those changes when I switch the version from 29 to 30 in the left column.

Maybe you are looking for