Inserting logo into smartform

Hi,
How to insert a logo into smart form
Thanks,
Malini.

SE78 Upload Logo
Printing Graphics
Use
You use the graphic node to display graphics, such as a company logo, on the form. For performance reasons, make sure that the graphics are held in the printer memory. SAP Smart Forms support this method, provided that:
•     The printer can be controlled accordingly.
•     There is enough memory space on the printer.
•     You activated this property in transaction SE78 (see below).
In this case, the system sends the graphics to the printer only once during one print job.
To include background graphics, use the Background graphic tab of a page node.
Prerequisites
You use the SAPscript Graphic Administration (transaction SE78) to import graphics into the SAP-System:
1.     Double-click on a graphic format in the tree structure in the forder Document server  GRAPHICS General graphics.
2.     Choose Graphic  import.
The transaction imports the graphic and stores it on the Business Document Server (BDS). Now you can display it on a form.
See also: Graphic Administration [Page 56]
Procedure
1.     To create a graphic node, call the context menu for that node in the tree structure that you want to contain the graphic and choose Create  Graphic.
Create the graphic node as direct successor of the page node or use the context menu in the layout of the Form Painter. You can then position the graphic anywhere on the page.
In the Form Painter the system displays a small box for the newly created node.
2.     Enter a unique name for the node and a description (for example, company logo).
3.     On the General Attributes tab determine whether you want to include a colored graphic or a graphic in black and white.
4.     Use the fields Object, ID, and Name to identify the graphic. Use F4 help of the Name field to copy the values of these fields. If you copy them with ENTER, the system displays the graphic in the Form Painter.
The box for the graphic in the Form Painter also contains the name of the graphic node, which in part overlays the graphic.
5.     In the Technical Attributes box determine the graphic resolution according to what the printer supprts. Small resolutions increase the size of the graphic on the form, higher resolutions reduce the size.
6.     For graphic nodes that are displayed in a window, there is a box Horizontal position in addition to the general output options [Page 21]. The parameters Reference point and Alignment determine the horizontal position in the window, while the vertical position is determined by the previous output in the window.
At present, you cannot overlay graphics with text. However, if you use a template node [Page 29], you can display graphics and text side by side.
Result
The system displays the node with name and description in the tree structure. If you insert a graphic as direct successor of a page or if you used the Form Painter, the system displays the graphic. Graphics in windows are inserted only when the form is processed. You can therefore not see them in the Form Builder. In addition, the system automatically dispalys the graphic on the next page if there is not enough space left on the current page.

Similar Messages

  • 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 into ALV TOP-OF-PAGE

    Hello friends,
                         I would like to insert a self made logo into top-of-page of ALV reports.I know the function module that is REUSE_ALV_COMMENTARY_WRITE but how to specify the link used where the image has been stored.
      Regards
      Ashish.

    Hi,
    goto se78 tcode.
    GRAPHICS->BMAP double click on bmap.
    press import button in application tool bar.
    one window will come. give the image path,some name(say ABC),description of the logo and press enter
    <b>in program</b>
    REPORT ZBHALV_LIST1.
    TABLES:MARA.
    SELECT-OPTIONS: MATNR FOR MARA-MATNR.
    DATA:BEGIN OF ITAB OCCURS 0,
         MATNR LIKE MARA-MATNR,
         ERSDA LIKE MARA-ERSDA,
         MTART LIKE MARA-MTART,
         MBRSH LIKE MARA-MBRSH,
    END OF ITAB.
    SELECT * FROM MARA INTO CORRESPONDING FIELDS OF TABLE ITAB WHERE MATNR
    IN MATNR.
    TYPE-POOLS SLIS.
    DATA:FCAT TYPE slis_t_fieldcat_alv.
    DATA:LAYOUT TYPE slis_layout_alv.
    <b>DATA:EVE TYPE slis_t_event WITH HEADER LINE.</b>
    DATA:HEAD TYPE slis_t_listheader WITH HEADER LINE.
    DATA:SORT TYPE slis_t_sortinfo_alv WITH HEADER LINE.
    SORT-UP = 'X'.
    SORT-SPOS = 1.
    SORT-FIELDNAME = 'ERSDA'.
    SORT-tabname = 'MARA'.
    APPEND SORT.
    SORT-SPOS = 2.
    SORT-FIELDNAME = 'MTART'.
    SORT-tabname = 'MARA'.
    APPEND SORT.
    <b>EVE-NAME = 'TOP_OF_PAGE'.
    EVE-FORM = 'TOPOFPAGE'.
    APPEND EVE.</b>
    EVE-NAME = 'TOP_OF_LIST'.
    EVE-FORM = 'TOPOFLIST'.
    APPEND EVE.
    EVE-NAME = 'END_OF_LIST'.
    EVE-FORM = 'ENDOFLIST'.
    APPEND EVE.
    LAYOUT-ZEBRA = 'X'.
    LAYOUT-no_hline = 'X'.
    LAYOUT-NO_VLINE = 'X'.
    LAYOUT-window_titlebar = 'MATERIAL DETAILS'.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
       I_PROGRAM_NAME               = SY-REPID
       I_INTERNAL_TABNAME           = 'ITAB'
       I_INCLNAME                   = SY-REPID
      CHANGING
        CT_FIELDCAT                  = FCAT.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
       I_CALLBACK_PROGRAM             = SY-REPID
       IS_LAYOUT                      = LAYOUT
       IT_FIELDCAT                    = FCAT
       IT_SORT                        = SORT[]
       IT_EVENTS                      = <b>EVE[]</b>
      TABLES
        T_OUTTAB                       = ITAB.
    <b>FORM TOPOFPAGE.
    REFRESH HEAD.
        HEAD-TYP = 'H'.
        HEAD-INFO = 'MATERIALS'.
        APPEND HEAD.
        CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
          EXPORTING
            IT_LIST_COMMENTARY       = HEAD[]
            I_LOGO                   = 'ABCD'
          I_END_OF_LIST_GRID       =
    ENDFORM.</b>
    FORM TOPOFLIST.
    REFRESH HEAD.
        HEAD-TYP = 'H'.
        HEAD-INFO = 'MATERIALS-LISTTOP'.
        APPEND HEAD.
        CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
          EXPORTING
            IT_LIST_COMMENTARY       = HEAD[]
          I_LOGO                   =
          I_END_OF_LIST_GRID       =
    ENDFORM.
    FORM ENDOFLIST.
    REFRESH HEAD.
        HEAD-TYP = 'H'.
        HEAD-INFO = 'MATERIALS-LISTEND'.
        APPEND HEAD.
        CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
          EXPORTING
            IT_LIST_COMMENTARY       = HEAD[]
          I_LOGO                   =
          I_END_OF_LIST_GRID       =
    ENDFORM.
    rgds,
    bharat.

  • How can we upload userdefined logos into smartforms.

    we can import userdefined logos using rstxldmc in scripts as a stanadrd text and we can insert those thru graphics... wat is the procedure in smartforms.

    Hi,
    here also we have a graphics button is there we can assign here.
    Right click on left side logo window. in that we have a graphic option is there. in that we give the file name what ever the logo has assigned in the system. we upload that one. by giving all inputs to that one like resolution and all.
    please reward points, if it is useful,
    regards,
    satish.

  • Inserting Logos into Signatures

    Hi, I'm a newbie to Mac (less than 5 days old) .... looking for a little help.
    I've managed to create an email signature and dragged my company logo from my stick into the window but I can't resize it.
    Is there someway I can do this easily???

    I am in the same boat as you more or less. With windows I had the whole address and Jpeg which I could use at the end of a letter. I can import the old text from windows OK., but, as you have found, the image is well overdimensioned & needs resizing.
    If you get a sensible reply to your question kindly forward it.
    My new Mac is super for photos, but otherwise can be well exasperating!
    I would recommend you buy 'Switching to the Mac' & also 'i-photo 09' by David Pogue. These helped me, but I couldn't hack it all.
    Let me know how you get on.
    Regds., John Clifford in Switzerland, but a Londoner!

  • How to upload a  logo in smartforms

    can anybody tell me how to upload logo in Smartorms

    Hi,
    Inserting Logo in SmartForm
    Follow the given steps in order to add a logo,
    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.
    or----
    u can
    Try executing program RSTXLDMC program. There also you can upload a graphic.
    Run RSTXLDMC
    Enter file name C:\MAIL\COMPLOGO.TIF
    Resolution for Tiff file
    Absolute X-position
    Absolute Y-position
    Absolute positioning
    Reserved height
    Shift to right
    UOM = CM
    Text title
    Line width for text = 132
    Text name ZHEX-MACRO-COMPLOGO
    Text ID ST
    Text language = E
    Postscript scaling
    Width & Height according to PS scaling
    Number of Tiff gray levels (2,4,9) 2
    Then Create a new window 'COMP' with attributes;
    Window COMP description Company Logo
    Window type CONST
    Left margin 7.00 CH window width 10.00 CH
    Upper margin LN window height 8.00 LN
    Finally u can make use of the text name and text id to print the logo.
    Please note that if object name is not indicated as 'ZHEX...', the logo may not be printed !
    Go thru this,
    http://www.zebra.com/id/zebra/na/en/documentlibrary/misc/sap_smartforms_technical.File.tmp/SAPSmartFormsVersion3.pdf
    Refer these threads,
    How to upload logo in Smartforms.
    logo insertion in smartform..
    Regards,
    Padmam.

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

  • Enter Logo in Smartform

    Hi All,
    Can anybody guide me to enter logo in Smartform.
    I want to print one logo on inspection setup print program.
    Please suggest me the steps to do the same.
    Regards,
    Deepak.

    Hi,
    Inserting Logo in SmartForm
    Follow the given steps in order to add a logo,
    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.
    or----
    u can
    Try executing program RSTXLDMC program. There also you can upload a graphic.
    Run RSTXLDMC
    Enter file name C:\MAIL\COMPLOGO.TIF
    Resolution for Tiff file
    Absolute X-position
    Absolute Y-position
    Absolute positioning
    Reserved height
    Shift to right
    UOM = CM
    Text title
    Line width for text = 132
    Text name ZHEX-MACRO-COMPLOGO
    Text ID ST
    Text language = E
    Postscript scaling
    Width & Height according to PS scaling
    Number of Tiff gray levels (2,4,9) 2
    Then Create a new window 'COMP' with attributes;
    Window COMP description Company Logo
    Window type CONST
    Left margin 7.00 CH window width 10.00 CH
    Upper margin LN window height 8.00 LN
    Finally u can make use of the text name and text id to print the logo.
    Please note that if object name is not indicated as 'ZHEX...', the logo may not be printed !
    Please reward points if useful.
    Regards
    rose

  • How to insert the image or logo into the table as a field in webdynpro abap

    Hi Friends,
    Please tell me how to insert the image or logo into the table as a field in webdynpro abap.........

    Hi Alagappan ,
          In your view layout you take table UI element and then you bind it with some context nodes.
    The attributes of your nodes comes as a field.
    Now in these fields you can set various properties and image is one of them.
    Go to ->
    1. View Layout -> Right Click on ROOTUIELEMENTCONTAINER -> INSERT ELEMENT -> TABLE
    2. Right click on table -> Create Binding.
       Here you have to bind it with the appropriate context node.
    You will get two properties here
    a- Standard Cell Editor :- ( make it image )
    b- Standard properties :- ( If required set image properties ).
    3. If you want put image from out side then import it as a mime object and set the source of your table field ( used as a image )
    also have a look :-
    [Image Properties|http://help.sap.com/saphelp_nw04/helpdata/en/f3/1a61a9dc7f2e4199458e964e76b4ba/content.htm]
    Hope this will solve your problem.
    Reply if any case of any issue.
    Thanks & Regards,
    Monishankar C

  • Having trouble inserting a logo into my video

    I am having difficulty inserting a logo into my video. Whenever, I am successful, and I go to play the video, the logo moves out of place. I deleted all of the effects but am still having trouble with it.

    We have no idea what the problem is or how you applied the logo from that brief description!

  • Insert cc license logo into metadata in Aperture 3.2.4

    Hi,
    I'm trying to find out if I can insert a creative commons license like this: into the usage terms part of the IPTC metadata into selected photos AFTER import. I am working on a huge batch of photos by different photographers (many photos found on flickr), to be used on a website. The cc logos are available in svg, eps, png or giff.
    file:///Users/worldreligions/Dropbox/panorama%202013/Downloads%20-%20Creative%20 Commons.html
    We are aiming for the metadata to be viewable alongside the photo or when people click onto details. I cannot see how to insert this into the 'Usage', where I think it should go.
    Thank you for your ideas.
    Helen

    There is no provision as far as I  am aware to put an image into any of the IPTC fields, they are text only. (I'm pretty sure this is not an Aperture limitation but applies to IPTC fields in general)

  • How can I insert a logo into my signature but keep the typed signature?

    I want to type info & also insert my logo
    Example:
    Carl Clouser
    Director of Sales
    TRYST Electronic Smoking Products
    [email protected]
    724-679-4212
    www.enjoytryst.com
    www.facebook.com/enjoytryst
    www.twitter.com/enjoytryst
    Insert logo here
    plus I want the links to be hyperlinks which can be clicked on

    Hello,
    See here information about signature:
    *[https://support.mozilla.org/en-US/kb/signatures Signatures]

  • Logo in Smartform.

    Hello Everybody,
    I am supposed to load the logo into the form based on the input given by the user.i,e. i should the take the name of the logo to be put in the SMARTFORM from the text box in the selection screeen.Could some one tell me as to how this is done????
    Thanking you in anticipation.
    Regards,
    Sirisha Matta.

    Hi Sirisha,
    you can create a GRAPHIC node where the name of the node is a variable:
    Name &V_LOGO&
    Object GRAPHICS
    ID BMAP
    So before of GRAPHIC node you have to insert an ABAP node where u insert the name of the LOGO,  let us take one case like --in according the company code
    CASE BUKRS = ....
    WHEN '....'. V_LOGO = .....
    WHEN '....'.
    ENDCASE.
    or..............
    Try executing program RSTXLDMC program. There also you can upload a graphic.
    Run RSTXLDMC
    Enter file name C:\MAIL\COMPLOGO.TIF
    Resolution for Tiff file
    Absolute X-position
    Absolute Y-position
    Absolute positioning
    Reserved height
    Shift to right
    UOM = CM
    Text title
    Line width for text = 132
    Text name ZHEX-MACRO-COMPLOGO
    Text ID ST
    Text language = E
    Postscript scaling
    Width & Height according to PS scaling
    Number of Tiff gray levels (2,4,9) 2
    Then Create a new window 'COMP' with attributes;
    Window COMP description Company Logo
    Window type CONST
    Left margin 7.00 CH window width 10.00 CH
    Upper margin LN window height 8.00 LN
    Finally u can make use of the text name and text id to print the logo.
    Please note that if object name is not indicated as 'ZHEX...', the logo may not be printed !
    Regards,
    SRI

  • Inserting Image into BLOB field from URL

    Is it possible to insert an image into a BLOB field from a URL? I don't have access to the filesystem on the server and I have a page that uses PL/PDF to generate dynamic PDF files from data I pull from the database. I would like to include my companies official header with logo on the top of the PDFs I generate and need to somehow get the image which I currently have uploaded to the images section in Application Express and can access from the "Shared Components => Images" section of the Application Builder. I just want to be able to either query whatever table holds those images or copy the image I need to a blob field in one of my tables so I can use it in my PDF document.
    The other alternative (which is what I first mentioned above) would be to try and perform an insert into the BLOB field in my table but the location of the image file would be like "http://www.myportal.com:7777/pls/htmldb/wwv_flow_file_mgr.get_file?p_security_group_id=1234567&p_flow_id=111&p_fname=myimage.jpg".
    Is this possible? If not, what can I do?
    Thanks in advance.

    The reason why I am asking this question in this forum is two-fold:
    1. I am using Application Express (AE).
    2. Since I am using AE all images that I upload to my workspace are stored in a table in a database and not as an actual file in a directory structure like in Windows etc. This being the case, I can't ever reference any of the files that I upload to my workspace in order to insert them into my BLOB field unless I know their physical location on disk (which of course does not exist b/c they are stored in the AE database somewhere). If I knew AE's database and table structure I could do a "select into ..." from whatever table stores my uploaded images and save those images to my own custom table in my BLOB field.

  • How to attach logos in smartforms using standard text??

    logos in smartforms using standard text

    Hi,
    After going into SO10>Menu Bar->Include->Graphics-->Select the logo you have to include that in the standard text. ->save->Activate.
    IN the smartform.
    Create a Logo Node and fill the information in the right side under general attributes.
    Name---Standard text name.
    Object
    Id.
    You can upload the logo using SE78.
    Thanks,
    Sree.

Maybe you are looking for

  • Iphone not showing on pc or i tunes

    I know this has been posted many times but i need help.It worked fine one day and then the next nothing shows up on my pc.I googled and tried everything there with no results,i went to the apple store and of course it shows on there pc but not mine.T

  • G5 iMac and HP Laptop web comms.

    I'm getting a G5 iMac this week and want to know how i can keep in touch with home over the net when i'm away with my HP Laptop. I need recommendations of Chat & webcam applications that i can use Windows XP at one end and OS X at the other. I've alr

  • I have Photoshop Elements 8.  I can open my organizer but NOT my editor

    I tried alt ctrl shift and deleted the settings and that didn't do anything.  I tried to restore my system to last week because I unsuccessfully installed a printer the other day.  My computer wouldn't let me restore my system (I've tried at least 8

  • My Laptop died and I have never pluged Itouch into my PC. How do I sync?

    My laptop died and I had all my apps there. How do I setup a sync on my PC without losing all my apps. ITouch 2nd Gen 3.0

  • Material Type Changes

    My client currently has all materials created as NLAGs but wants to start tracking inventory. They do not want to change the material number. There are sales orders active for materials. Can anyone give me some guidance on all the things we need to w