To include a new link in the function area?

Hi all,
I need to include a new link in the function area of the masthead.  Could any of you please explain me how to do this?
Also after clicking on this new link on the fucntion area of the masthead, the iview needs to be displayed in the innerpage or the content area of the portal...
thank you
regards
Luke

Hi Luke
Hi
You can modify the par file <b>com.sap.portal.navigation.masthead</b> to achieve this.
Copy the
com.sap.portal.navigation.masthead.par.bak file from
<local_drive>usrsap<instance>JC00j2eecluster server0appssap.comirjservlet_jspirj
ootWEB-INF deploymentpcd to a temporary folder.
Rename the par file to some other namespace and import the new par file into your NWDS.
you have 3 main files in the masthead namely HeaderiView.jsp, LogInRedirect.jsp, LogOffConfirmMsg.jsp.
change the corresponding jsp file to make the changes as per your requirements.Upload and deploy the par file to the Enterprise Portal.
Also go through these links.
Customizing masthead in theme editor
Removing Masthead Function Area
Adding a background picture to masthead
hope this helps.
Regards
Yoga

Similar Messages

  • I have included an new infobject in the ods and then in the infoset?

    hi all,
    i have included a new infobject in the ods. And then included in the infoset. But i unchecked it and got it transport to quality and production.
    But my requirment now is i need to check the infobject in the infoset. But when i check the infoobject in the infoset i am getting an message stating:
    "YOU CAN INCLUDE OBJECTS OF THIS TYPE IN A TRANSPORTABLE WORKBENCH REQUEST WITH TARGET /SAP/ ONLY"
    thanks
    Pooja

    hi
    include the change in the same request and transport it again
    Remya

  • 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.

  • Change in the functional area impact

    The budget data was stored at a Cost Center level. The cost center was assigned to a Functional Area ahich was changed on a later date. The data for the cost centers that were migrated from the old to new functional area was locked. Any changes that i make to the cost centers impact the new Functional area.how do i proceed ? is it possible to erase the data stored in the previous functional area?

    Thank you for your reply.
    A bit more detailed explanation of the prob:
    The General Marketing Budget data was stored in ECC at Cost Center level, on the 17th of January (using SAP transaction: KP06) At that time, all the General marketing Cost Centers (Gen Mkt CCu2019s) were assigned to the Functional Area H240.
    By the 27th of Januaryu20192012, the functional area of some GenMkt CCu2019s was changed to the new GenMkt u2013 Product Manager functional area (Q240).
    This mean that for the CCu2019s that migrated from H240 to Q240, budget data is u201Clockedu201D in H240 functional area. Weu2019ve tried to delete Budget planning for these cost centers (using transaction KP06) but data remains in H240. Any changes that we make for these CCu2019s (delete/overwrite), impact the new functional area (Q240).
    How should we proceed? Is it possible to erase the General Marketing data stored in the 17th of January?

  • Update the functional area (AUFK-FUNC_AREA) directly in the table AUFK

    Hello,
    The OSS note 150959 gives a report, which directly updates the table field AUFK-PRCTR (profit center). Have you ever tried the same thing with the Functional Area (I am afraid to cause database incoherencies, if I do this) ?
    We have to do this both for production and maintenance orders.
    Thank's a lot for your answer.
    Best regards,
    Holger

    Hello Rajesha,
    We have to make a mass update of all  production and maintenance orders in our system.
    So we have to write a program, which is doing this.
    In order to avoid the direct update of the table AUFK, we will write a batch input.
    Best regards,
    Holger

  • HIding "Display message log" link in the message area

    Hi Gurus,
                  I've a requirement where i need to hide the default " Display Message Log" Link in the message area.
    Pls give me some idea on this.
    Regards,
    Shravan.

    Hi Shravan,
    You can delete message log using method RESET_MESSAGES
    Please check this..
    http://help.sap.com/saphelp_nw70/helpdata/en/45/5996d07d2b09cce10000000a114a6b/content.htm
    use reset mesages method in the example code.
    data: l_wd_view_controller         type ref to if_wd_view_controller,
            l_api_wdr_msg_area           type ref to if_wd_window_controller,
            l_wd_message_area            type ref to if_wd_message_area.
      l_wd_view_controller ?= wd_this->wd_get_api( ).
      l_api_wdr_msg_area ?= l_wd_view_controller->get_embedding_window_ctlr( ).
      l_wd_message_area = l_api_wdr_msg_area->get_message_area( ).
      l_wd_message_area->reset_messages( i_keep_current = 'X ' ).  // try with 'X'. and ' ' .
    Cheers,
    Kris.

  • HIding "Display mssage log" link in the message area

    Hi Gurus,
                  I've a requirement where i need to hide the default " Display Message Log" Link in the message area.
    Pls give me some idea on this.
    Regards,
    Shravan.

    Hi Shravan,
    You can delete message log using method RESET_MESSAGES
    Please check this..
    http://help.sap.com/saphelp_nw70/helpdata/en/45/5996d07d2b09cce10000000a114a6b/content.htm
    use reset mesages method in the example code.
    data: l_wd_view_controller         type ref to if_wd_view_controller,
            l_api_wdr_msg_area           type ref to if_wd_window_controller,
            l_wd_message_area            type ref to if_wd_message_area.
      l_wd_view_controller ?= wd_this->wd_get_api( ).
      l_api_wdr_msg_area ?= l_wd_view_controller->get_embedding_window_ctlr( ).
      l_wd_message_area = l_api_wdr_msg_area->get_message_area( ).
      l_wd_message_area->reset_messages( i_keep_current = 'X ' ).  // try with 'X'. and ' ' .
    Cheers,
    Kris.

  • Is it possible to add a clickable link to the presentation area of a category

    Is it possible to add a clickable link to the presentation area of a category
    Websphere 61
    Oracle 10g
    RequestCenter 2008.3 SP4
    Ie 6
    Hi:
    I am trying to add a clickable link to open a web page.  I would like it to be visible on the presentation area (top) of the "Consumer Service Catalog".   I can make the button, but when clicked nothing happens.  I have tried several of the button commands like onclick, but then I get a js error.
    Thank you
    Daniel
    Safeway Inc.

    Yes. You can use html tags in the presentation area ot the  <b>Consumer Services</b> display category

  • Field catalog does not agree with the fields of the functional area

    G'day everyone,
    I am using a generic extractor via infoset to extract data from R/3 source system.
    Using RSA3, I have obtained an error message and no further details.
    ****ERROR MESSAGE
    "Field catalog does not agree with the fields of the functional area
    Message no. RSUQ134
    ****ERROR MESSAGE
    I have checked and adjusted my infoset in SQ02 and they seems fine but still obtain the same error.
    In BW, replicated the datasource and activate the transfer rules but still obtain the same error.
    Anyone knows how to get more details for this type of error? Or how to fix this problem?
    Regards
    Wayne

    I think I have just solved it.
    Transaction RS02 delete and recreate after checking the structure in BW and Source system are the same.
    Cheers

  • When clicking links from Thunderbird, Firefox creates a new link with no data, I have to click again to create a new link with the correct url

    When I click a link in thunderbird and also on firefox it creates a new tab with nothing in it, a blank web page. If I click the link again it creates a new tab with the link. If i click it again, a blank tab, click it again,new tab with the correct info. It seems to work only on the even numbered clicks not the odd ones.

    If you delete all the Adobe Reader stuff it will probably fix this. For almost everything, the Apple pdf handling works better.

  • Table Link between the Functional Location and work order

    Hi Gurus,
    I am stuck in a big problem and have to find a way to list down the work order with a specific user status in the system. I am trying to link it based on the functional location as the inputs will have to be functional location and the date. Can any one guide me with the tables to link these two???
    Thanks in advance
    Anoop

    Hi,
    Depending on your exact requirement, you might be able to select from view VIAUFKST_IFLOS. This would allow selection based on order, functional location and various dates. The field IPHAS will give you some system status information - value will indicate which status the order has reached. Example value = 3 indicates order is technically completed.
    To get the exact system status (or user status) you need to read the JEST table. Read this table by OBJNR. The object number will have the format OR005000123456 (where 5000123456 is the order number). It will be available in the order tables.
    Status values in JEST are in the internal format - example I0002 = REL. Check transaction BS23 to see the link. User status values will have the format E0002. If INACT flag is set in a jest record then that status value is not active. If you want to check for a specific status value then call function STATUS_READ.
    -Paul

  • I've forgotten my Wi-Fi password for a network set-up years ago and am trying to include a new iMac on the same network. How can I do this?

    I've forgotten my wi-fi password for a home network set-up years ago on a Powerbook. I'm now trying to add a new iMac to the same network so I can have 2 hooked up. How can I retrieve my password for the network I created or can I set-up a new one? I did try the latter, but it didn't seem to work on the new iMac for some reason. Thanks in advance for any suggestions!

    HI, Welcome to the Forums...
    The password may be stored in your keychain on the system you set up the original PowerBook.
    Run KeyChain access in the utilities filder and see if you have a Airport base station password entry, from this you can reveal the password.
    Regards,
    Shawn

  • How to include Portal login link in the workflow notification

    hi All,
              Wih the program RSWUWFML2 i am able to get the options like 1) workflow entry 2)workitem Display 3) workitem execution .
    When i click the workitem execution , it is going to SAP inbox and able to execute the workitem.
    How to do the same thing with Protal Gui. In my case most of the users will not have sap logon access but they do have protal acess.
    Like Option 3, if i click how to connect the protal and process the work item.
    Regards
    Venakat

    Hi,
    you have to copy this Program [RSWUWFML2|https://wiki.sdn.sap.com/wiki/x/moH8B] and modify. In this program mail is sent via the FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' before this code you  have modify the content of the email, you have to pass the link of the Portal in the mail.
    So that from the link users can able to logon to portal,if it is [Single Sign On|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d0c78148-12de-2a10-27bf-960acc753aab], no password will ask otherwise the user have to enter the password.
    Regards,
    Surjith

  • Links in the content area

    Hi, we have a iview that have a list of links, the iview is diplayed in a page in the content are on the right.
    Some of the links are open in a new window but other we want to display it on the content area, we want that the navigation panel will be equal but the link will be in the content area.
    We want that the behaviour will be like when you push a option in the detailed menu navigation.
    We have updated com.sap.portal.navigation.contentarea.par component with
    EPCM.subscribeEvent('urn:myOwnNameSpace','searchResult', handle_searchResult_Event);
    function handle_searchResult_Event( evt ) {
    self.location.href = evt.dataObject;
    And from the iview:
    var searchURL= "http://"location.hostname":58700""<%=url%>" QueryString;
    EPCM.raiseEvent('urn:myOwnNameSpace','searchResult', searchURL );
    But the behaviour is wrong the url is show in all layout including navigation, the navigation panel (detailed navigation...) have lost.
    Any suggestions are welcomed.
    Thanks in advanced.
    Regards

    Hi Nash,
    It is NOT true that Related Links always open in a new window.
    It is very important to know where to change the Launch in New Window property.
    Let's say I have a role R1, with W1, with I1, and I1 has a related link to I2. You need to do the following:
    Open W1.
    Select I1 and open for editing.
    Set the Display to Related Links. This screen shows the iView that is the related link (I2).
    Select I2 and click Edit.
    Change Launch in New Window to Display in Content Area.
    For some reason, when you select an iView to be a related link, this property is changed in the related item delta link. This seems like a bug.
    You cannot change the property in the original iView.
    NOTE: The above is for SP13. There may be some differences between SPs, but my assumption is that they work the same.
    Hope this helps.
    Daniel

  • Add link in Masthead Function Area

    hello,
    how can i add new link/function in the Masthead Function Area near the "help" and "log off" buttons?
    pls help
    every usefull messages will be rewarded
    irina

    Hi Irina,
    I do not think that you could use some kind of standard functionality to add a custom link to your portal masthead. I guess you have to modify the com.sap.portal.navigation.masthead.par file in order to achieve your goal. Have a look into this <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=191891">thread</a>. It contains detailed instructions how to modify the file and might inspire you.
    Best regards,
    Martin

Maybe you are looking for

  • Table T880 - MCOMP field

    Hi, The MCOMP (Master data co.code) field in T880 table is blank for my company code. The company is created and assigned to company code. need some help on how to maintain this field. Thanks, SSingh

  • PickRotateBehavior only on z axis

    Hi! I created a PickRotateBehavior and added to my BranchGraph so all my geometries would have this behavior. But I needed them to rotate only around the z axis. Does anyone has an idea to share? Please... Thanx!

  • What's with the portrait format?

    Why are the themes all in a vertical format? Is there a way to make them fit to screen? Thanks

  • Trace file and control files !!

    hi, I have created trace file of the control files by using 'alter database backup controlfile to trace' command. i have two questions..where can i find this trace file and how can i use this trace file to generate the control files. Waiting for the

  • LR4 Tone curve reset

    Hi, Installed LR4 today and ran into a problem. I have been working with alot of negatives lately and therefore my photos have a reversed tone curve. When I converted my existing catalog all looked fine, using the old previews. But when I go into dev