Adding customer specific image on Masthead

Hi ,
Could someone explain me the way i can add image on masthead.
Thanks

hi ,
You can modify PAR file of masthead and you can change any image or delet image or replace image.
there is one JSP code for masthead in PAR file and we have to modify that code.
jayesh talreja

Similar Messages

  • Adding customer specific information on a BRI

    Hi,
    Any ideas how to add a customer specific field on a BRI? I need a extern referanse field on every BRI.
    Thanks and regards
    Kristel

    hi ,
    You can modify PAR file of masthead and you can change any image or delet image or replace image.
    there is one JSP code for masthead in PAR file and we have to modify that code.
    jayesh talreja

  • Adding customer specific footer  in B2B application

    All
    I wanted to add a customer specific footer in B2B application,which should be visible throughout the application
    I could not see any footer.jsp provided in default B2b application
    Need some input on how this can be achieved
    Thanks
    Murali.K.N

    Hi,
    you can do this through simple change in fs_start.jsp or fs_start_inner.jsp.
    Just add one more frame and call your custom footer.jsp in that frame. thats it your work is done.
    Regards,
    Sateesh Chandra

  • Adding a new image In Masthead

    HI all,
    i want to add a new image in the masthead par file. note its like logo in the right side of standard masthead i want to add another image in extreme left. i changed the par file and i am getting the image format but not image. i think the image path is wrong.
    how to call a image
    i placed the image in Dist\images folder and in code url="/dist/images/img.gif"  and tried for /images/img.gif and /img.gif but no use
    Need Your help regarding this 
    thanks & Regards
    Mahesh

    Hi,
    if you have the IPortalComponentRequest class object, get the image located in "Dist\images\" using:
    String imagePath = request().getWebResourcePath() + "/images/img.gif";
    Hope this helps,
    Romano

  • Lost + and - when adding custom book images

    How do I go about getting the + and - signs that are the
    default in the TOC to the left of the open and closed book images?
    They were there with the default skin book images, though when I
    changed to a custom open and closed book graphic (both same size as
    the original), the + and - signs that are usually there
    disappeared.

    Hi ClubHans
    You probably don't realize it, but you have answered your own
    question!
    The fact is, in a WebHelp system, the book and page icons are
    simple images. Either the image contains the + or - symbol or it
    doesn't. If you want the symbols, you will need to either edit your
    existing images to include them, or substitute images that contain
    the symbols as part of the image.
    Cheers... Rick

  • New G/L and adding customer specific fields

    Hi all,
    does anyone have any experience about adding additional fields in New G/L? I would like to add an additional field that would be filled every time a document is posted. It would be best if it could be in the document header but in line items is ok also.
    Thanks!
    Dusko

    Good morning. I have this same exact question. I have found 1000 documents telling me this is possible and that it is a new feature of the new G/L, but I haven't found any documentation explaining how to implement this feature.
    Does anyone have a link to implementation details, or a document that they could send to [email protected]
    Thank you in advance for your time,
    Andy

  • Adding Customer-specific Fields: Master Data Objects

    Hi,
    Somebody already obtain to include new fields in SAP MIC( Management Internal Controls) version 2.0?
    Att.
    Anderson Almeida

    You need to study the PCUI (People Centric User Interface).
    MIC software use this engine to control the web interface.
    Very complete guide:
    https://websmp209.sap-ag.de/~sapidb/011000358700001093962006E/PCUIBook50_06.pdf
    a quick intro by weblog:
    /people/vijaya.kumar/blog/2005/06/10/people-centric-user-interface-pcui--getting-started
    Regards,
    Sergio

  • Customer Specific Fields in Standard Report???????????????

    Hi Gurus,
                 I have added Customer Specific Fields in a Notification Type.
                 I need a Report with these Cutomer Specific Fields ( added by Screen  Exit) in the Standard Transaction like IW65,IW69.
                Please give me the solution, suggestions to Extarct these fields in Standard Reports.
    With best ragards,
    Narendra

    Narendra,
    I'm not sure IWOC0004 will help...
    If you are using ECC6, then investigate enhancement spots in the respective programs. Your ABAP team should be able to help.
    PeteA

  • Adding Custom Link in Masthead

    Hi,
       How can we add a custom link in the Masthead iview in CE7.1
    Thanks & Regards,
         Sudhir

    Hi Sudhir,
    Copy that file "com.sap.portal.navigation.masthead.par.bak" for you PC.
    You can find in
    \usr\sap\<SID>\JC<Intance Number>\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd
    Remove the .bak of that file
    Open the Developer Studio
    Open the Enterprise Portal Perspective
    File --> Import  --> PAR File --> Next
    In "Archive File Name" select the "com.sap.portal.navigation.masthead.par"
    Project name: set the project name (ex: com.your company.portal.navigation.masthead)
    Recommend not use the standard name.
    Copy the file "com.sap.portal.navigation.masthead_core.jar"
    you can find in
    usr\sap\<SID>\JC<Intance Number>\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\portal\portalapps\com.sap.portal.navigation.masthead\private\lib
    In Developer Studio
    Put this file in
    \dist\PORTAL-INFO\private\lib
    Good Luck
    Eduardo

  • Adding custom buttons to the Rich Text Editor in CQ

    Hi,
    I have added custom buttons to the rich text editor in order to allow our editors to add specific content, such as popovers, custom videos and other data necessary data.
    I have successfully modifed the Rich Text editor so, that it includes the custom buttons in the actions panel.
    I have also managed to make the buttons work and include the data where necessary, when user highlights the text and clicks on a certain button.
    The last bit I am struggling with, is the visual feedback we give to the users when this text has associated action with it.
    E.g. when we select this text and make it bold when we click on the word B the button B becomes highlighted in the actions panel, later when we continue typing our text and click again on "bold" the letter B becomes highlighted again.
    Is there any button related callback/method I could overwrite to add this functionality and make my button highlighted ?
    Thanks,
    Puzanovs

    After lot's of thinking found a solution....
    Essentially the first step is to extend the CQ.form.rte.plugins.Plugin in your custom button.
    Then during the UI initialisation we create our "custom"
    var pressButton = new ui.TbElement("press-button", this, true,this.getTooltip("press-button")); // Essential extend of the button
    setInterval(function() {
                     if(window.jQuery) {
                         window.jQuery(document).ready(function () {
                             window.jQuery(".x-edit-glossary-insert").css({width:45,"background-image":"none"}); // Ignore the background
                             window.jQuery(".x-edit-glossary-insert").text("Press Button"); // Set the name
                            $(document).on({
                                mouseenter: function(){
                                  window.jQuery(".x-edit-glossary-insert").html("<b>Press Button</b>"); // Set the name bold                        
                                mouseleave: function(){                       
                               window.jQuery(".x-edit-glossary-insert").html("Press Button"); // Set the name normal
                             }}, '.press-button');
                 }, 100);
    tbGenerator.addElement("press-button", plg.Plugin.SORT_LISTS, pressButton, 10); // element is inserted
    Every time the element is inserted I add the following html
    <span class="press-button">Test peter</span>
    Now, every time in the editor, the content editor mouse overs the custom button it is higlighted in the RTE))

  • Adding custom fields to Embedded Search

    Hi All,
    I have read the post [here|How to add custom fields to Embedded Search; about adding custom fields to Embedded Search. I am looking to add Employee Subgroup for use in Talent Management (specifically the STVN SuccessionPlanning component) and wanted to know if anyone can expand on the instructions in the link to add this field.
    It appears to be part of the HRTMC_PERSON search object connector already and while I've done some IMG configuration the field is showing in SuccessionPlanning, but not displaying any data.
    Additionally, I'd be interested in any tips to add information that is not from PA0002 should it be required in the future.
    Many thanks,
    Luke

    Hi Luke,
    I am assuming here that your search request fields are based on HRTCM_CENTRALPERSON search template. To enable your search to work on employee subgroup please do the following
    1) Check if the HRTMC_PERSON Template extracts the data from Infotype 0001 via SPRO node 'Define Search Models and Change Pointer' Extraction Class is 'CL_HRTMC_SEARCH_READ_PA_INFTY'.
    2) Via ESH_COCKPIT, goto Template Modeler and select your custom Software Component and press Edit. Goto roadmap step 5 - Define Requests - where all search request fields are defined. Its using these fields Talent search works.
    3) Select the search request e.g. 'SAP_TALENT_NAKISA', it would then show list searchable attributes in below table. Using 'Add' button select path for PERSK so that it can searched.
    It would look like this once selected
    OBJID(REL_CP_P)->HRTMC_REL_CP_P_209.REL_CP_P(REL_CP)->HRTMC_PERSON.OBJID->HRTMC_PERSON.ORG_ASSIGNMENT
    4) In step SPRO 'Define Search Requests and Search Field Names' , define Employee subgroup field with AliasSearchField = PERSK since thats what is defined in roadmap step 5.
    Hope it helps!
    Regards,
    Ricky Shah

  • Adding custom fields to the condition table in CRM

    Hi all,
    Our requirement is to download the sales conditions type from R3 to the CRM system. In one of the condition table we are trying to add shipping point( VSART ) and Special processing indicator (SDABW).
    For that we have added the fields in the structure CND_MAPT_ACS_REM_CUST (Comm. Structure Condition Exchange Customer Exit R/3 Fields) and we have added the fields in the field catelog in transaction ( /SAPCND/CTCT - Maintain Condition Tables). Then we have mapped these fields in the view V_CND_MAP_CNVFLD.
    Finally we run the adapter object of that particular table to download the details from R3, but the condition table in CRM is not getting activated, so the adapter object is giving the error.
    Please help in this.
    Thanks & Regards,
    Raghuram.

    Hello Raghuram,
    I feel that your issue is similar what i have faced, refer to my post:
    Link: [Issue in customer specific price;
    For solving this you can refer to detailed steps in,  Note 514952 - Download of customer-specific tables.
    Also additionaly you may need to run the report /sapcnd/rv12n001, as i also had to do so.
    If not solved then let me know the relevant message in SLG1
    Regards

  • How do I make a custom brush image in a gradient color scheme in Photoshop Elements 12?

    I want to make a custom brush image in a gradient color scheme.  I know how to change the hue jitter, but I want to "paint" the image with a gradient between two colors.  For example, I have an image of an octopus that I have used to create a custom brush.  I want the top of the octopus to be hot pink and gradually fade into a deep orange at the end of the tentacles.  Everything I've looked up just colors the background.  Thanks in advance!

    Try the following:
    Open the octopus image
    Open a Gradient Map Adjustment layer above this. There are several preset gradients, but in my version of the program I don't see one with pink to orange.
    When you double click on the gradient bar in the Adjustments palette, this will open up the Gradient Editor, where you can tailor the gradient to your specifications with color and opacity stops. (see below)
    This will apply the gradient to the entire picture. However, the adjustment layer has a built-in mask (the white rectangle).
    Left click on this and paint with a black brush to hide the gradient outside of the octopus. If you go too far, you can correct with a white brush.
    Now, as to the Gradient map adjustment layer, here is how to configure it:
    http://retouchpro.com/tutorials/?m=show&opt=printable&id=132

  • How to use customer-specific fields with FI-CA event 940?

    The following text can be found under FI-CA event 940:
    You can also set customer-specific fields if you have defined the predefined include for customer enhancements CI_FKK_ACCIT_CUS in the structure FKK_ACCIT_CUS. The fields included here must have the same field name as the fields included in the structure ACCIT. These can also originate from an enhancement of the coding block in General Ledger Accounting. The fields Reservation Class and Reservation Key of the reconciliation key and the totals record are available as import parameters.
    My requirement is to populate the field HZUON in this event, which will be called when running t-code FPG1 (Transfer of FI-CA total records to general ledger)
    The problem is the fact that the output of the event (i.e. output of function module FKK_SAMPLE_0940 at first) only have the following fields:
    E_ZUONR     LIKE     ACCIT-ZUONR     Zuordnung (BSEG-ZUONR)
    E_XREF2     LIKE     ACCIT-XREF2     Referenz  (BSEG-XREF2)
    E_SGTXT     LIKE     ACCIT-SGTXT     Positionstext
    E_BUPLA     LIKE     ACCIT-BUPLA     Businnes Place (Korea only)
    I tried adding a new field to structure CI_FKK_ACCIT_CUS and adding this field to the output of the event 940, but how do I ensure that the content of the field will be used to populate the HZUON field of the FI document during "transfer of FI-CA total records to general ledger"?
    Cheers,
    Teo

    Hi Teo,
    I happened to see this post from you when I searched for a similar scenario related to event 940. I also need to add two fields in CI_FKK_ACCIT_CUS and make these fields as outputof the event. Did you come across any solution for the same? If so, can you please share.
    Regards,
    Harikumar. S
    Edited by: Harikumar Sasidharan on Dec 30, 2009 12:14 PM

  • Using custom bullet images in paragraph styles

    R8 HTML.
    Hello all,
    Bit of an edit to this one.
    I've got several sections of text through my doc, Tips and Notes, currently this text is just highlighted and box bound. But I instead want it to have a custom bullet image, like a ! or something similar. I've found the images I want to use in the 'Bullet and Numbering..' menu of RH, but using these to create a style creates a new list style, I instead want to edit my existing Note and Tip styles so the image is used, otherwise I have to re-apply the list style all over the doc in place of the Tip and Note styles I have now. Would be very nice if I didnt have to do this.
    Hope someone can help.
    Cheers.

    Hi Nick
    Coming in a bit late on this.
    I just successfully changed to picture bullets by performing the following actions.
    Added the image I wanted to use for the bullet as a Baggage file.
    Edited the Lists item in the Style Sheet editor so that lists were presented in an unusual font. (did this so I could easily locate the appropriate CSS section when editing later)
    *NOTE: I'm unsure why Lists is listed as a separate entry of its own, but I used the Lists found within the Other category.
    Now hand edit the CSS using Windows Notepad. Certainly you may view the files in Windows Explorer and right-click to edit, but I much prefer to launch the CSS in Notepad right from RoboHelp HTML. To do that, you click Tools > Options > Associations tab. Then associate Notepad with CSS files. This allows you to right-click the CSS in the RoboHelp HTML Explorer and choose View. The CSS should then display in Notepad.
    Okay, once that was done I edited Notepad and saw that my lists item looked as below:
    I amended it to add the reference to the image as shown below:
    Seems a lot has been tried and nothing seems to work for you. I'm hopeful this will either help you solve it or spark a thought that will.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

Maybe you are looking for