Add logo to Payslip - IN01 HRFORM

Hi
   I have a requirement to add logo to payslip (HRForm -IN01 - Tcode PE51).  Could you please let me know is it possible to add logos into HRForms or not? I know that we can add logo by developing a SMART Form for payslip. but my client doesnt want smart form..... Could you please suggest me
Thanks,
V.Nagaraju

Hi Nagaraju,
As said logo cannot be added through form editior.You need to work on Smart forms for this.Take help from your ABAP'R
Thanks
-Swati

Similar Messages

  • Add Logo in HR Forms for payslip

    Hi Experts,
    I need to inculde logo in HR froms, my consultant suggested that copy the satandart HR form and create a Z-form.
    i dont have that much idea on HR Forms, is it possible to include the logo in HR Forms?
    Based upon the input given by the user the logo should change dynamically.
    Client has many companies, but they are having common payroll so when they are running the payslip based upon the company the logo should print.
    could any one please suggest  how to so this?
    With Regards,
    Thanesh

    Hi Thanesh,
    There are two possibilities either create a 'Z' one or go through standard one. I prefer you to try the standard one.
    Have a look on this link.
    [Add logo in PE51;
    Hope this will solve your problem.
    Regards,
    Gaurav

  • HR form: Add functionality to add comments to payslip via IT0128

    Hi,
    I am very new to the HR forms. Not having any experience of any transaction or table etc.
    My requirement is: I need to add functionality to add messages to payslip via IT0128 to a HR form having specific group.(Add comment to payslip)
    Can you please give me the steps to be followed to fulfill this requirement?

    Hi Ankit,
    You have so many threads on same question.before you raise a forum question do enough R & D
    some threads for you.......
    https://forums.sdn.sap.com/click.jspa?searchID=21696631&messageID=6879933
    https://forums.sdn.sap.com/click.jspa?searchID=21696631&messageID=6627148
    https://forums.sdn.sap.com/click.jspa?searchID=21696631&messageID=6546304
    Kindly go through the below steps for Inserting Logo in SmartForm :
    1) In Smart Forms Editor, In left pane, right Click any Page (say Page1) and select Create -> Window, Give it a name and Description (Say Window1)
    2) Right Click on Window (Window 1) and select Create -> Graphics, Give it a name and description
    3) In general Attributes, Select Name, get search help (F4) , you will find a list of pictures
    4) Select any picture and set its Resolution in DPI
    5) Press F9 to open Smart Forms Builder, Select window (Window1) and In Output options window set, size and position of the Logo
    6) Set any other parameters if required, save and activate.
    7) If there is only 1 Window in the forms, set it as Main Window in general attributes.
    8) User TCode SE78 to upload new pictures and logos.
    I hope it helps you!!!
    Thanks
    Cheera

  • Can we add logo to sapscript Form Result while coverting to PDF?

    Hi Expert,
                    My requirement is, I have to covert Form Result to PDF.but while converting  Form result to OTF , Can we Add logo to the OTF data? Can logo be saved in text format? only then we can add logo to OTF data probably.
    Please Help.
      Thanks in Advance

    As you have probably searched the forum, you saw that you can get the sapscript result as OTF.
    Graphics are automatically handled by SAP which stores them in the OTF (RD and BM lines).
    And then you convert OTF to PDF as usually.
    So, where is the question?

  • How to add Logo in SAPSCRIPT

    Hi frnds,
    How I will upload Logo in SAPSCRIPT?
    I have created Header window, Now I want to add Logo in Header Window.
    Regards.

    Hi,
    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 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.
    regards,
    Munibabu.K

  • How to add Logo in Bex report

    Hi Guys,
                 How to add logo in a Bex report.

    Hi ABDUL KHADAR
    We can only add the logo at Work book level but not the query level @the query
    level it wont allow us to add.
    Jus open an ordinary excel sheet format it as you wish  Ctrl+A and fill with white
    color .Then jus save u r logo which u wont to upload in the desktop.
    Then go to file insert picture or file  and place it wher ever u wont in the work sheet
    and save it as a templete and then insert the query in this templete and format it
    as per your standarads.
    If any struck up feel free to let me know. We explain you clearly...
    hope its helpful..
    Cheers
    R M K
    **Assigning poitz ez da only way of saying thankz in SDN**

  • How To add Logo in ALV Report

    Hi,
    How To add Logo in ALV Report?
        I need step by step explanation.

    Hi uday,
    go through this hope u can understand.
    *& Report Z_OOALV_LOGO
    *&--Sample Program using ooalv-> by SrikanthV--
    REPORT z_ooalv_logo.
    ****DECLARATION FOR LOGO INSERT
    CONSTANTS: cntl_true TYPE i VALUE 1,
    cntl_false TYPE i VALUE 0.
    DATA:h_picture TYPE REF TO cl_gui_picture,
    h_pic_container TYPE REF TO cl_gui_custom_container.
    DATA: graphic_url(255),
    graphic_refresh(1),
    g_result LIKE cntl_true.
    DATA: BEGIN OF graphic_table OCCURS 0,
    line(255) TYPE x,
    END OF graphic_table.
    DATA: graphic_size TYPE i.
    CALL SCREEN 100.
    *&----
    *& Module PICTURE OUTPUT
    text
    MODULE picture OUTPUT.
    DATA: l_graphic_xstr TYPE xstring,
    l_graphic_conv TYPE i,
    l_graphic_offs TYPE i.
    CALL METHOD cl_ssf_xsf_utilities=>get_bds_graphic_as_bmp
    EXPORTING
    p_object = 'GRAPHICS'
    p_name = 'EDS'"IMAGE NAME - Image name from SE78
    p_id = 'BMAP'
    p_btype = 'BCOL'
    RECEIVING
    p_bmp = l_graphic_xstr
    EXCEPTIONS
    not_found = 1
    OTHERS = 2.
    graphic_size = XSTRLEN( l_graphic_xstr ).
    CHECK graphic_size > 0.
    l_graphic_conv = graphic_size.
    l_graphic_offs = 0.
    WHILE l_graphic_conv > 255.
    graphic_table-line = l_graphic_xstr+l_graphic_offs(255).
    APPEND graphic_table.
    l_graphic_offs = l_graphic_offs + 255.
    l_graphic_conv = l_graphic_conv - 255.
    ENDWHILE.
    graphic_table-line = l_graphic_xstr+l_graphic_offs(l_graphic_conv).
    APPEND graphic_table.
    CALL FUNCTION 'DP_CREATE_URL'
    EXPORTING
    type = 'image'
    subtype = cndp_sap_tab_unknown " 'X-UNKNOWN'
    size = graphic_size
    lifetime = cndp_lifetime_transaction "'T'
    TABLES
    data = graphic_table
    CHANGING
    url = graphic_url
    EXCEPTIONS
    dp_invalid_parameter = 1
    dp_error_put_table = 2
    dp_error_general = 3
    OTHERS = 4 .
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    EXIT.
    ENDIF.
    CREATE OBJECT h_pic_container
    EXPORTING container_name = 'LOGO'.
    CREATE OBJECT h_picture EXPORTING parent = h_pic_container.
    CALL METHOD h_picture->load_picture_from_url
    EXPORTING
    url = graphic_url
    IMPORTING
    RESULT = g_result.
    ENDMODULE. " PICTURE OUTPUT
    Reward points if helpful.
    Thanks

  • Print /add logo in reports 10g which is running in linux

    hi
    i want to print /add logo in reports 10g which is running in linux environment and want to change logo programmatically.
    how can i achieve this
    reports version is Report Builder 10.1.2.0.2

    Hi Thanesh,
    There are two possibilities either create a 'Z' one or go through standard one. I prefer you to try the standard one.
    Have a look on this link.
    [Add logo in PE51;
    Hope this will solve your problem.
    Regards,
    Gaurav

  • Customise Sap Report -- Add logo and change report layout

    Hi All,
    I have a requirement to amend sap standard report to add logo and change layout, could some one pls point me to teh right direction. Should we .1 Create a new smartfrom if yes -- how to to create smartfroms
    2. Should we create new Zreport...3. Is Adobe Interactive forms any good---- cld you please share the steps to create Adobe Ine Form 4. is sap script any good way in my situation
    Thanks
    Smith

    Changes to SAP Standard are always a bit tricky, specially if we are talking about legal reports. If the standard report uses smartform, you can change the standard form without needing a SSCR key, so no need to create a Z report or smartform even, but like every change on SAP Standard, if further changes are made by SAP through Support packages you will always have to replicate them yourself everytime this happens. I would suggest creating a new Z report by copy of standard and new Z smartform, that way you can always recurr to the standard and see what was changed and then replicate them in you Z reports.
    To create smartform, go to TCode smarforms and you can create one by copy of an existing smartform.
    Adobe Interactive forms is more complex then smartforms and unless the standard uses a print form, i would not suggest you creating one as it will envolve a bit more knowledge.

  • Add logo in business object

    Dear All,
    Does anyone knows how to add logo in Business Objects?
    Thanks in ton for advance help.
    Best Regards,
    Tarun

    HI <b>TARUN</b>
    <b> How to Upload graphics (IMAGE) to your Sapscript?
    Command in your Sapscript</b>
    /: INCLUDE Z_YOUR_LOGO OBJECT TEXT ID ST LANGUAGE E
    <b>These are the steps to be followed for uploading graphics in R/3 system </b>
    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
    <b>In 4.6x :-</b>
    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
    Please note that in 4.6c onwards, you can also used Windows Bitmap file ( .BMP).

  • Add logo in PE51

    Hi Guyz,
    How can I add a LOGO in HR forms under tcode PE51 ?Please give a step-by-step procedure.
    I tried to add logo by right click on the form but no create logo choices...
    Will reward points to helpful answers.
    Thanks in advance :-).
    aVaDuDz

    Hi,
    Normally when we add a logo in forms first we create a logo and stored in ur local driver. and Using the tcode SE78 import the logo.
    FOR this process.
    goto se78.
    click on form graphics
                                  stored on document server
                                           Graphics general settings
                                                      BMP Bitmap images( if u create a bitmap)
    click on Import button ( First button)
    Here u browse to select ur path where u stored ur logo and give the name of logo,
    Try this u will see ur logos.
    Regards ,
    sksk

  • I created a script to add logos to photos at a club and now when I run the script, the script runs but does not actually place anything on the photo itself.  What's going on?

    I created a script to add logos to photos at a club and now when I run the script, the script runs but does not actually place anything on the photo itself.  What's going on?

    He meant post it here, of course, Louie!  How on Earth would you post it "on Photoshop" ? 
    Thank you for the belly laugh. 

  • Add logo in SAP

    Dear Team,
    I want to Add my Company Logo in my GUI . Please eexpalin.
    How i can install Logo in  SAP.
    Thansk & regards
    jagdish

    Dear Kumar,
    If you want to change/add logo, folow below steps
    1. Transaction SMW0
    2. Select radio button Binary data for WebRFC applications.
    3. Press F8
    4. Press Execute(F8) button.
    5. Settings--Maintain MMIE types--select LOGO type--
         Ex: JPG/BMP/JPGE/GIF.
    6. Hit create button.
    7.Enter your logo Name/Type. Ex: zcomapneylogo.jpg
    8. Save. go back to SAP Web repository screen.
    9. Create object----
    Ex: Object name:zcomapneylogo.jpg
    10. Press Import button and select your logo/image.
    11.Select package or local object.
    12. Goto Transaction SM30
    13. Enter SSM_CUST in Table/view box then click maintain.
    14. Enter your Logo name into START_IMAGE box.
          Ex: zcomapneylogo.jpg----
    15. Press Save button.
    16. Then create Request/Own request
    17. Save data
    Regards
    Sushma

  • Can we add logo to BEx query ???

    Hi All,
    I would like to know can we add logo to Bex query. I know that we can add to Bex workbook.
    Thanks

    Is this for BEx Analyzer or BEx Web Analyzer?
    For BEx Web Analyzer, you can take the standard template 0ANALYSIS_PATTERN, save it as a custom template and customize it to include a corporate logo. See the following for a How To... on this:
    [How to Enhance SAP BEx Web Analyzer (0ANALYSIS_PATTERN)|http://www.sdn.sap.com/irj/scn/index;jsessionid=(J2EE3414900)ID0574286750DB11281326545475972586End?rid=/library/uuid/200d6cb6-080e-2b10-84a5-b96723ad8f18&overridelayout=true]

  • How to add logos/picture in Login screen.

    Hi,
    I wanted to add logos/picture in Obiee login screen.How to achive this.Please let me now the solution.

    Oracle logo to Company Logo_
    Drive:\Oracle\Middleware\Oracle_BI1\bifoundation\web\app\res\sk_blafp\login
    Drive:\Oracle\Middleware\Oracle_BI1\bifoundation\web\app\res\sk_blafp\b_mozilla_4
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\AdminServer\tmp\.appmergegen_1291264099332\analytics.ear\ukjjdc\res\sk_blafp\b_mozilla_4
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\AdminServer\tmp\.appmergegen_1291264099332\analytics.ear\ukjjdc\res\sk_blafp\login
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\analytics_11.1.1\7dezjl\war\res\sk_blafp\b_mozilla_4
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\analytics_11.1.1\7dezjl\war\res\sk_blafp\login
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\AdminServer\tmp\_WL_user\FMW Welcome Page Application_11.1.0.0.0\upd42q\war\images
    Powered By_
    Drive:\Oracle\Middleware\Oracle_BI1\bifoundation\web\app\res\s_blafp\images
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\AdminServer\tmp\.appmergegen_1291264099332\analytics.ear\ukjjdc\res\s_blafp\images
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\analytics_11.1.1\7dezjl\war\res\s_blafp\images
    Catolog to Workbench_
    Drive:\Oracle\Middleware\Oracle_BI1\bifoundation\web\msgdb\l_en\messages\uicmsgs
    saw.availabledata
    <WebMessage name="kmsgCatalogCaption"><TEXT>Catalog</TEXT></WebMessage>
    saw.catalog
    <WebMessage name="kmsgCatalogStartingWindowTitle"><TEXT>Oracle BI Catalog</TEXT></WebMessage>
    <WebMessage name="kmsgCatalogWindowTitle"><TEXT>%0% - Oracle BI Catalog</TEXT></WebMessage>
    saw.header
    <WebMessage name="kmsgHeaderCatalogPage"><TEXT>Browse Catalog Folders...</TEXT></WebMessage>
    Reference_
    http://prasadmadhasi.com/2011/10/04/images-and-logos-path/
    Customizing Oracle Business Intelligence Enterprise Edition 11g An Oracle White Paper
    http://www.oracle.com/technetwork/middleware/bi/customizing-oracle-biee-11g-176387.pdf
    also
    Oracle BI EE 11g – Styles, Skins & Custom XML Messages
    http://www.rittmanmead.com/2010/12/oracle-bi-ee-11g-styles-skins-custom-xml-messages/
    ttp://bintelligencegroup.wordpress.com/2010/09/02/customize-user-interface-in-obieeskin-and-style-files/
    Thanks,
    Balaa...

Maybe you are looking for

  • Please help:  iChat is crashing since upgrading to leopard

    Since installing leopard, I have been unable to use iChat. I can boot up the application, and see my buddy list as normal. But when I double click on a buddy's icon to start a text chat, I get a completely blank chat box. (i.e. I don't see the buddy'

  • My iPod Touch 4G connects to access point, but not the internet.

    I'm stuck for ideas, so any help is appreciated! I've gone through the troubleshooting guide, and none of that helped. I've reset my network settings, forgetting the specific network, resetting the router, resetting the iPod, restoring it to factory

  • Internet very slow in MacBook Pro - 2010 Model

    I am facing lot of issue while browsing any site .i have tried using all the browers but still internet is dam slow i am Unifi 5mbps.when i perfome the speed test the result is dam good its about 4.89 mbps . But if i browser any thing or stream any v

  • Custom view in onet.xml?

    I'd like to create a custom view in my custom site definition, but I'd like to avoid unnecessary complexity. An extra feature that completely redefines an oob list in order to change a single default value to be used only once strikes me as, to not u

  • Duplicate the details section when I retrieve data from Delivery notes

    Hey all. I built a query that retrieve data from ODLN and it works fine. But, when I have a Delivery Notes Document that has items from some different orders (that I copy them to Delivery notes of course) it duplicate my rows in the report I run the