To insert logo in pe51

Hi Friends,
i would like to insert logo on the hr form created using PE51 . can any one give me guidance to develop it.
thanks and regards,
kani,.

Hi,
go Tcode PE51 you will get the below options
Attributes: If you select this you can change the attribues you ever your specific once
Backgroud:If you select this option, pay slip backgorud you can change though this
Single field: If you slect this option, Here you can change the fileds. For example name, empployee id ext.
window: If you select this option, Here you can edit and add the wage types for earning and deductions
Line layout: Here you can change the line lay out.
Cumulation IDS: Here you can give ur payslip wage types in the RT table for earning and deductions
Text modules: Here display texts in the payslip
Rules: If you want to write any rules you can select this one.
Regards,
Rajesh S

Similar Messages

  • How to insert logo in smart forms

    how to insert logo in smart forms

    Hi Ram,
    Go through this hope u can understand.
    How to Upload graphics (IMAGE) to your Sapscript?
    Command in your Sapscript
    /: INCLUDE Z_YOUR_LOGO OBJECT TEXT ID ST LANGUAGE E
    These are the steps to be followed for uploading graphics in R/3 system 
    1.   First save the file as BMP 
    2.   Open the BMP file in IMaging (Goto -> Programs -> Accessories -> Imaging) and 
          make it Zoom as 100% and save as *.TIFF 
    3.   Open SE38 and execute program RSTXLDMC
    4.   Give your TIFF file path name 
    5.   Select Bcol (for Color) 
    6.   TEXT ID will be ZHEX-MACRO-*. 
    7.   Inplace of * write your own logo name (ZCOMPANYLOGO) 
    8.   Execute the program 
    9.   Now Goto SE71 create your ZFORM 
    10. Create logo window 
    11. Goto text element of logo window 
    or
    In 4.6x :-
    1.  Goto SE71 Change the mode to GRAPHICAL 
    2.  Choose the Graph Tabstrips
    3.  Now type in some name for the LOGO WINDOW 
    4.  Press the IMPORT BUTTON (third button from left) and then IMPORT the BMP file from your DESKTOP 
    5.  The code will be written automatically. You just need to drag and drop wherever you want
         the graphics to be. 
    /:   INCLUDE Z_COMPANY_LOGO OBJECT GRAPHICS ID BMON LANGUAGE EN
    Reward points if help ful.
    http://www.sap-img.com/ts001.htm
    Sorry i think for Scripts ..
    better to go for above post . it definetly works
    Thanks
    Naveen khan
    Message was edited by:
            Pattan Naveen

  • Insert logo in alv

    hello experts....
    In alv reports how i insert logo into alv grid ?tell me procedure, in the same report how insert background logo?

    Hi,
    At first you have to upload the logo in the application server using transaction 'OAER'.
       1. Go to Transaction OAER,
       2. Give Class Name as PICTURES
       3. Class type as OT
       4. Object Key as the name of the Object u want to specify
       5. Upon execution you would be prompted to give the file path details. Just upload which ever logo u want to display
       6. Now you can use the same name in your ALV FM
    In your ALV program, you need to have event for TOP_OF_PAGE, and also this works only in case of Grid not in ALV LIST.
    Look at the sample code to display LOGO.
    call function 'REUSE_ALV_GRID_DISPLAY'
    exporting
      i_callback_program = i_repid
      it_fieldcat = header
      is_layout = gt_layout
      i_callback_top_of_page = 'TOP-OF-PAGE1'
      i_grid_title = xyz
      it_sort = gt_sort[]
      i_default = 'X'
      i_save = 'U'
      is_variant = gt_variant
      it_events = gt_events
    tables
      t_outtab = t_output.
    Form TOP-OF-PAGE1
    form top-of-page1.
    data: header type slis_t_listheader,
          wa     type slis_listheader.
    TITLE AREA
    wa-typ = 'S'.
    wa-info = text-h04.
    append wa to header.
    wa-typ = 'S'.
    write sy-datum to wa-info mm/dd/yyyy.
    concatenate text-h03 wa-info into wa-info separated by space.
    append wa to header.
    wa-typ = 'S'.
    concatenate text-h02 sy-uname into wa-info separated by space.
    append wa to header.
    wa-typ = 'S'.
    concatenate text-h01 sy-repid into wa-info separated by space.
    append wa to header.
    ********" LOGO
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
    it_list_commentary = header
    i_logo = 'ENJOYSAP_LOGO'.
    *********" LOGO
    endform.
    Here in TOP-OF-PAGE form it will show you the Prog name,Date, User Name.

  • Insert LOGO in ALV Table Cell

    Hi Gurus,
    How to insert logo in ALV Cell Level.
    thanks in advance.
    regards,
    kiran.ch

    Hi,
    I saw a sample code in Wiki:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/inserting%2520a%2520logo%2520in%2520alv%2520program
    Edited by: Renjith Michael on Jun 26, 2009 1:12 PM
    Edited by: Renjith Michael on Jun 26, 2009 1:12 PM

  • Insert Logo into Query

    Hi All,
    I have searched the SDN forum and seen only a few posts for inserting a logo into a query, but still not 100% sure.
    Basically, how to insert a logo into a query that will be there everytime the query is ran?  Not a workbook, but a query.  Also, how to get it into a specific cell?
    Cheers,  Mike

    Yes, everyone runs queries.
    I put the select from list option and I can see the "workbook" that has formatting.  Meaning...
    1. I ran a query and inserted logo, formatted font
    2. Saved as a workbook
    3. In Analyzer I selected Settings -> New Workbook on Embed
    4. Now open query
    5. I get the popup to select my query...I select it
    6. I now get an option to select the workbook to embed my query in...I select it and all the formatting and logo is there.
    So...
    Is this how it works?  If so, When selecting the workbook to embed my query in it still has all the data/result from last query run.  Is there anyway not to have this "old" data show up?  In other words, is there a way to create several default workbooks (to embed different queries in from different divisions), so when different divisions run different queries, they can select their "formatting workbook".
    Example:
    Shoes would have their "Shoe Workbook"
    Pants would have their "Pant Workbook"
    Thanks,
    Mike

  • INSERTING LOGO IN ALV GRID

    hi experts,
    how can i insert logo in alv grid..can u send me some examples of alv that includes all the functionalities like user-command,commentary write n also logo insertion etc..
    regards,
    raman

    hi ,
        chk out this .....and  try this ..
    for getting the events ....
    FORM ZVRPSALV_EVENT_CAT  CHANGING RT_EVENT TYPE slis_t_event .
        DATA : s_event TYPE slis_alv_event.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 0
        IMPORTING
          et_events       = RT_EVENT
       EXCEPTIONS
         list_type_wrong = 1
         OTHERS          = 2.
    CASE sy-subrc.
       WHEN 1.
         MESSAGE s000 WITH 'List type does not exist'(058).
         LEAVE LIST-PROCESSING.
       WHEN 2.
         MESSAGE s000 WITH 'Error with List Type'(059).
         LEAVE LIST-PROCESSING.
    ENDCASE.
      READ TABLE RT_EVENT WITH KEY NAME = slis_ev_top_of_page INTO s_event .
      IF sy-subrc = 0.
        MOVE 'TOP_OF_PAGE'(056) TO s_event-form.
        APPEND s_event TO rt_event.
        CLEAR s_event.
      ENDIF.
    ENDFORM.                    " EVENT_CAT
    *&      Form  ZVRPSALV_GRIDDISPLAY1
          text
    -->  p1        text
    <--  p2        text
    FORM ZVRPSALV_GRIDDISPLAY1 .
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
       I_CALLBACK_PROGRAM                = REPID
      I_CALLBACK_PF_STATUS_SET          = ' '
       I_CALLBACK_USER_COMMAND           = 'DISPLAY_DOCUMENT '
       I_CALLBACK_TOP_OF_PAGE            = ' TOP-OF-PAGE '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
       I_GRID_TITLE                      = 'BASIC LIST'
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
       IT_FIELDCAT                       = T_FCAT
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
      IT_EVENTS                         = RT_EVENT
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      I_HTML_HEIGHT_TOP                 = 0
      I_HTML_HEIGHT_END                 = 0
      IT_ALV_GRAPHICS                   =
      IT_HYPERLINK                      =
      IT_ADD_FIELDCAT                   =
      IT_EXCEPT_QINFO                   =
      IR_SALV_FULLSCREEN_ADAPTER        =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
      TABLES
        T_OUTTAB                          = T_ITAB
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM.                    " ZVRPSALV_GRIDDISPLAY1
    SUBROTINE FOR DISPLAYING THE SECONDRY ALV GRID.
    FORM DISPLAY_DOCUMENT USING R_UCOMM  LIKE SY-UCOMM
                                RS_SELFIELD TYPE SLIS_SELFIELD.
    IF RS_SELFIELD-FIELDNAME = 'VBELN'.
      READ TABLE T_ITAB INDEX  RS_SELFIELD-TABINDEX .
    V_VBELN = T_ITAB-VBELN.
    LOOP AT T_ITAB WHERE VBELN = V_VBELN.
       Move: T_ITAB-POSNR to T_ITAB1-POSNR  ,
             T_ITAB-MATNR to T_ITAB1-MATNR ,
             T_ITAB-MATKL to T_ITAB1-MATKL,
             T_ITAB-ARKTX to T_ITAB1-ARKTX  ,
             T_ITAB-PSTYV to T_ITAB1-PSTYV  ,
             T_ITAB-SPART to T_ITAB1-SPART ,
             T_ITAB-GSBER to T_ITAB1-GSBER ,
             T_ITAB-KWMENG to T_ITAB1-KWMENG .
       Append T_ITAB1.
    ENDLOOP.
       ENDIF.
    *&      Form  ZVRPSALV_COMMENT
          text
         -->P_T_HEADER  text
    FORM ZVRPSALV_COMMENT  USING  P_T_HEADER type slis_t_listheader .
    DATA : LS_LINE TYPE SLIS_LISTHEADER.
    CLEAR LS_LINE .
    LS_LINE-TYP = 'H'.
    LS_LINE-INFO =  'HEADING LIST'.
    APPEND LS_LINE TO P_T_HEADER.
      CLEAR LS_LINE.
      LS_LINE-typ = 'S'.
      write sy-datum to LS_LINE-info MM/DD/YYYY.
      CONCATENATE text-041 LS_LINE-info INTO LS_LINE-info separated by space .
      APPEND LS_LINE TO P_T_HEADER.
    ENDFORM.                    " ZVRPSALV_COMMENT
    SUBROUINE FOR TOP OF PAGE.
    FORM TOP_OF_PAGE.
    clear t_header.
    DATA: LV_HEADER TYPE SLIS_LISTHEADER.
      LV_HEADER-TYP = 'S'.
      WRITE SY-DATUM TO LV_HEADER-INFO MM/DD/YYYY.
      CONCATENATE TEXT-041 LV_HEADER-INFO INTO LV_HEADER-INFO SEPARATED BY SPACE.
      APPEND LV_HEADER TO T_HEADER.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
       EXPORTING
         IT_LIST_COMMENTARY       = T_HEADER
        I_LOGO                   = ' ENJOYSAP_LOGO '
       I_END_OF_LIST_GRID       =
       I_ALV_FORM               =
    ENDFORM.
    *&      Form  ZVRPSALV_EVENTTAB
          text
         <--P_T_EVENT  text
    FORM ZVRPSALV_EVENTTAB  CHANGING P_T_EVENT TYPE SLIS_T_EVENT.
      DATA : LS_EVENT TYPE SLIS_ALV_EVENT.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       EXPORTING
         I_LIST_TYPE           = 0
       IMPORTING
         ET_EVENTS             = P_T_EVENT.
    SEARCH THE TOP OF PAGE EVENT.
      READ TABLE P_T_EVENT WITH KEY NAME = SLIS_EV_TOP_OF_PAGE INTO LS_EVENT .
      IF SY-SUBRC = 0 .
      MOVE 'TOP_OF_PAGE' TO LS_EVENT-FORM.
      APPEND LS_EVENT TO P_T_EVENT.
      ENDIF.
    ENDFORM.                    " ZVRPSALV_EVENTTAB
    thanks and regards
    Priyank Dixit

  • HOW TO INSERT LOGO??

    MAY I KNOW HOW TO INSERT LOGO TO THE APPLET?

    I saw your question and I could not help telling you how incomplete and meaningless it was to read. Please when next you ask a question in a forum like this, always make sure that your questions are very complete and easy to understand. I guess that is why no one bothered to respond to you.
    Ask again mate...

  • Insert logo has border

    When we are creating a letterhead template, our inserted Logo (.jpeg) has a thin line border around it and we can't get rid of it.  Suggestions?

    Select the image, tap the paintbrush and select Style. Make sure you select the top left style which has no style. If there is definitely no style attached to the image box, open the jpeg and make sure the image itself doesn't have a thin border around it. If it doesn't it could be just a preview issue – do a print out and see if the border actually prints out.
    There is also the option of masking the border: Paintbrush > Edit Mask.

  • FM for inserting LOGO

    Hi,
    What is the function module used to insert LOGO to our Normal Report.
    Not to the ALV Report. It's Normal REPORT.
    Else How we can insert LOGO to our Normal REPORT.

    Hi,
    i thinks it's not possible only via se71, se78, oaer.
    look also here: Inserting a LOGO
    Regards, Dieter

  • OOALV how to insert LOGO ??

    Hi ALL
    How to insert logo in OOALV ??
    thanks
    rambabu

    Hi Babu,
    Check this program "SAP_PICTURE_DEMO"
    If the hint is useful… Say thanks by reward….
    Regards,
    Prabhu Rajesh

  • Inserting Logo in mail forms

    Hi Gurus,
    I am trying to insert picture in one of the mail form, after inserting and when i click on SAVE, I get a display " Your session has timed out! Click here to restart. ".
    I have added the picture ( .BMP) file in the SE78 transaction.
    Please help me to proceed further.
    Thanks
    Rakesh
    Edited by: Rakesh.Teki on Oct 30, 2009 1:25 PM

    Hi,
    Yeah sure.
    Once you open a mail form, on the left side , third row from the TEXT ELEMENT, there is an icon for HTML editor (toggle button)
    When you click it, the html coding is displayed.
    The image can be loaded directly from the internet or from SAP server.
    1. Through Internet.
    <IMG src="https://<url path>/logo.bmp"
    2. From SAP
    In order to upload the logo to SAP Server, logon to SE78 , and upload the logo from ur PC to BDS. Then execute the program RSXFT_MIGRATE_BDS_GRAPHICS.
    Now your logo must be available in the MIME repository.
    Now attach
    <IMG src="https://<sapserveraddress>/sap/BC/fp/graphics/PUBLIC/GRAPHICS/BMAP/BCOL/logo.bmp"
    Now you must be able to see ur logo.
    Please let me know if this helps.
    Thanks
    Rakesh

  • How to insert Logo in module pool programming

    Plz any one can explain me that  how we will inseart Logo on screens by using module pool programming (in GUI programming) .

    Hello.
    I'll give you an example of inserting a personal photo in UI programming. Hope it helps you.
    First of all, in your screen (painter), insert a custom control and give it a name (PHOTO in my example).
    Then, in your screen PBO, insert a coding like this:
    CLEAR handle.
    CALL FUNCTION 'HR_IMAGE_INIT'
        EXPORTING
          p_pernr        = pernr
          p_tclas        = 'A'
          container      = 'PHOTO'
        IMPORTING
          handle         = handle
        EXCEPTIONS
          no_document    = 1
          internal_error = 2
          OTHERS         = 3.
      CALL FUNCTION 'HR_IMAGE_SHOW'
        EXPORTING
          p_pernr        = pernr
          p_tclas        = 'A'
          handle         = handle
        EXCEPTIONS
          invalid_handle = 1
          no_document    = 2
          internal_error = 3
          OTHERS         = 4.
    Regards.
    Valter Oliveira.

  • How to insert LOGO in a simple report output

    Hi all,
    I need to insert a logo in a simple report output. can anybody help me

    Hi Anil,
    First upload logo to SAP by T-Code -SE78 or check the name of the logo that you want in your programm..
    then
    FORM TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
                IT_LIST_COMMENTARY = G_HEADER.
       I_LOGO                   =                                                "Logo name
       I_END_OF_LIST_GRID       =
    ENDFORM.
    Thanks.

  • Inserting  logo based on Company Code in Adobe Forms

    Hi All,
    I need to insert three different logos in adobe foms based on company code.
    Please help.
    Regards,
    Sreelakshmi

    Hi,
      Thank you very much for your reply. I need to pass logo from interface. Can you please tell me how to include logo field in the form interface.
    regards,
    sreelakshmi.

  • Insert Logo in bex analyzer 7.0

    Hi,
    Can any one tell me how to insert a logo in bex analyzer 7.0
    Generally we  follow these steps in 3.X analyzer
    1) Open ur Bex Analyser & create a new workbook by using the option new (You can find this icon in the tool bar of excel).
    2)Copy & paste the logo in this file & save it as a new workbook using the save option in the Bex tool bar.
    3)Click on the settings icon in the Bex tool bar & choose permanent workbook template & choose the file which u ve saved in step 2 & select ok.
    4)Click on the settings icon in the Bex tool bar & choose new workbook on embed -> based on permanent template. Now save & execute.
    Now in 7.0 also I have followed the steps
    1) Open ur Bex Analyser & create a new workbook by using the option new (You can find this icon in the tool bar of excel).
    2)Copy & paste the logo in this file & save it as a new workbook using the save option in the Bex tool bar.
    But I dont find any option to set this as permanent work book template in 7.0
    Kindly suggest me
    Thanks

    Hi Deepu,
    I have done the settings which are there in help but when I open my query then defaluty my query is not displaying any o/p but my company Logowhich i have saved it as workbook gets dispalyed but not my data in the report
    when I remove this workbook defaluty then when I open my query my data gets displayed
    Kindly suggest me

Maybe you are looking for

  • User Prompt for Date Range in Bex Query Analyzer

    I have a workbook that has two queries. The queries both require the user to enter a date range upon refresh. I want the user to be able to hit refresh, enter the date input into the dialog box and then both queries to use this date range for their i

  • Tomcat 4.1.18 Installation Problem

    Hi, New to java and im trying to set up a tomcat servlet server to host an app. Running Tomcat 4.1.18 and j2sdkee1.3.1. on a windows 2k server. When I process any of the .jsp examples including http://localhost:8080/index.jsp i get the following erro

  • Transferring App purchases to a different iTunes account

    Hi Everyone I've got a bit of a complex problem I'm hoping you can help me with. I will try to keep it simple and to the point. A friend of mine bought his son an iPod Touch for Christmas. The son then used my friend's (his Dad's) iTunes account to p

  • Initial values in query using multidimensional authorizations

    Hi, so far reading here through the topics helped solving my issues, but know I have a problem with displaying the initial values in a query using multidimensional authorizations. We use BI 7 and have to user the authorization check from BW 3.5 (rsr)

  • No network, yellow light blinking

    Just got the extreme n airport. I plugged it to the modem and all I got was a blinking yellow light. I run two airport expresses and they work fine. Done most of the stuff apple recommends, restart etc etc. I read something about security enable, doe