Inserting images dynamically in smartform....

Hello,
I have couple of image files (pdf and jpeg) on application server. I have a scenario where I have to insert these images to smartform dynamically based on some pre-determined logic. Is it possible to insert iamge in smartform without uploading it using se78.
Please help.
Regards,
Rajesh.

You need to upload it using SE78 for the display.
P.S. - You have 248 opened threads. If you can close them accordingly it will be helpful for community people to maintain.

Similar Messages

  • Inserting Image Into XML Publisher Report

    I have a problem to insert an JPG Image(Dynamique Logo depending on setid ) into My XMLPublisher report.
    My Image is stored in database. My query return the field image
    I Use this syntaxe:
    <fo:instream-foreign-object content-type="image/jpg">
    <xsl:value-of select=".//IMAGE"/>
    </fo:instream-foreign-object>
    where IMAGE is the image field name of my query.
    But this does'nt work ; any Help please ?

    Make sure this parameter is set false:
    http://blogs.oracle.com/xmlpublisher/2008/03/secure_your_io.html
    Also follow along this guideline:
    http://blogs.oracle.com/xmlpublisher/2006/05/inserting_blobs_into_your_repo.html
    There you can even find an example
    Cheers
    Jorge
    ps. If this answers your question then please grant the points and close the thread

  • Inserting images in reports

    Hi,
    I am trying to dynamically insert icons in my template. The icon paths are provided by the XML data definition via the <?Item_icon> field.
    It doesn’t work if I write a syntax like:
    <fo:external-graphic src="url(Item_icon)" />
    However, the syntax works if I do not use fields:
    <fo:external-graphic src="url('D:\icon1.gif')" />
    Is there a way to dynamically insert images in my report?
    Thank you
    Magda

    The image works if I use $OA_MEDIA or a public URL. I cannot have signature files sitting in a public directory or a public URL.
    How do you secure your signatures? The images have to sit on the server in a non-public directory but be accessible to the XML publisher process. What can I do to enable this access?

  • How to display image in the smartforms

    Hi All,
    I have image conent in the Binary formate.I want to dispaly that image in the smartforms.
    Please tell me how to display that image in the smartforms dynamically.
    Normally wa uploaded in SE78.And that is used in smartforms.But this is static way.
    I want to display tha images dynamically.
    Please Please
    Thanks,
    Saritha

    Hi,
          The image is in the DB ,right..Its in Binary format..
    See first we want the picture to be get uploaded inside the SAP.It is done by se78..
    If possible we can retrieve the picture outside in a place means we can get tht into sap by using
    Call Transaction 'SE78'.
    Reward if useful ...........

  • Dynamic URL Smartforms

    Hi all,
    I've to insert a DYNAMIC url in a Smartform behind a label.
    Some topics to consider:
    - The Url is created in running time.
    - The Smartform is called by a Standard Program, so, I can not change the Impressor Program.
    - I want the url behind the word "LINK"
    For example:
    CONCATENATE: 'www.' sy-mandt 'sap' sy-datum '.com' into lv_url.
    so I want insert it behind a text "LINK"
    When SAP sends the form by email the user could click on "LINK" and go to the url before created.
    Thanks a lot
    Regards
    Rodrigo
    ABAP HCM

    I've used this Solution for E-Rec Forms too. Its a little old, you've to adapt it for the new SAP version. I mean, using a Enh Spot for the corresponding Enh.
    Example:
    In the SmartForm, this link:
    We are currently processing your application. We appreciate
        your patience and will contact you again as soon as possible.
        HTTP://[CLIENT URL]:8000/sap/bc/bsp/sap/hrrcf_start_ext/application.do?sap-client=300&BspClient=300&sap-language=E&BspLanguage=E&rcfSpId=0002&rcfContext=ATT&sap-themeRoot=/sap/public/bc/ur/Design2002/themes/att_theme
    Becomes this:
    We are currently processing your application. We appreciate
        your patience and will contact you again as soon as possible.
    Click here to continue to E-Recruiting.
    Step 1:
    Copy the function group HRRCF00_CALLBACK, renaming it ZHRRCF00_CALLBACK.  Also, rename the functions within this group as well.( ZHR_RCF_SF_URL_CALLBACK, ZHR_RCF_SF_URL_PREPARE_CALLBAC, and ZHR_RCF_SF_URL_REFRESH_GT)
    Step2:
    In the function ZHR_RCF_SF_URL_CALLBACK, change this code accordingly:
      READ TABLE data WITH KEY code = 'ST' INTO ls_name.                  
      CHECK sy-subrc = 0.                                                                               
    lv_name = ls_name-string.                                                                          INSERT                                                                               
    READ TABLE gt_url INTO ls_urlkey WITH KEY name = lv_name.       INSERT    
      CHECK sy-subrc = 0.                                                                               INSERT    
      DELETE gt_url INDEX sy-tabix.                                                               INSERT                                                                               
    READ TABLE data WITH KEY code = 'LK' INTO ls_url.                  
      CHECK sy-subrc = 0.                                                
      DELETE data WHERE code = 'LK'.                                                                               
    lv_name = ls_name-string.                                                 COMMENT    
    READ TABLE gt_url INTO ls_urlkey WITH KEY name = lv_name.  COMMENT    
    CHECK sy-subrc = 0.                                                      COMMENT    
    DELETE gt_url INDEX sy-tabix.                                            COMMENT                                                                               
    l_str = ls_urlkey-url.
    Where INSERT is inserting the code in blue, and COMMENT is commenting out the code in blue, respectively.   This change makes sure that an alias has a URL associated with it.
    Step 3:
    Two standard classes must be modified in order to produce the alias.  These classes are: CL_HRRCF_CS_DOC_CAT_APPL as well as CL_HRRCF_CS_DOC_CAT_INVITATION.  Code must be added to the method GENERATE_DOCUMENT in both classes:
    u2026u2026.
    CONCATENATE l_prot '://' l_host ':' l_port '/' INTO l_base_url.                                                                               
    ls_xsf_param-name = 'BASE-URL'.                                           
    ls_xsf_param-value = l_base_url.                                          
    APPEND ls_xsf_param TO me->sf_output_options-xsfpars.                                                                               
    me->sf_output_options-urlcall = 'ZHR_RCF_SF_URL_CALLBACK'.         INSERT
                                                                                    CALL FUNCTION me->sf_properties-function_module                           
       EXPORTING                                                               
         control_parameters = me->sf_control_pars                
    Step 4:
    In the SmartForms, code must be added to the u2018Initializationu2019 portion in the u2018Global Definitionsu2019 section.  Also, data types must be defined in BOTH the u2018Global Datau2019, and the u2018TYPESu2019 section as well.
    In the TYPES section, define these variables:
    TYPES ls_recruiting_team_member type rcf_s_cs_di_recruiting_team.
    TYPES: BEGIN OF ty_url,
                    name(80) TYPE c ,
                    url  TYPE string,
                  END OF ty_url.
    TYPES: ty_urltab TYPE TABLE OF ty_url.
    TYPES: GD_URL TYPE string.
    TYPES: DISPLAY_URL TYPE string.
    In the u2018Global Definitionsu2019 section, define these variables:
    GS_URL     TYPE          TY_URL
    GT_URL     TYPE          TY_URLTAB
    GD_URL     TYPE          STRING
    DISPLAY_URL     TYPE          STRING
    Also, here you can define any other constant aliasu2019 you would like to use (e.g. G_ALIAS_TEST type STRING with Constant value 'Test Link').
    In the u2018Initializationu2019 of the SmartForm, the correlation between the link and the alias is defined:
    gs_url-url  = CANDIDATE-PERS_PAGE_URL.
    gs_url-name = 'Persönliche Seite'.
    APPEND gs_url TO gt_url.
    or
    gs_url-url  =u2019http://whatever.comu2019.
    gs_url-name = 'Testlink'.
    APPEND gs_url TO gt_url.
    In our case, we generated the URL in a string, then assigned the dynamic string to the URL:
       concatenate
          ls_protocol '://'
          ls_host ':'
          ls_port
          '/sap/bc/bsp/sap/'
          'hrrcf_start_ext/application.do'
          '?sap-client=' sy-mandt
          '&BspClient=' sy-mandt
          '&sap-language=' sy-langu
          '&BspLanguage=' sy-langu
          '&rcfSpId=0002'
          '&rcfContext=ATT'
          '&sap-themeRoot=/sap/public/bc/ur/Design2002/themes/att_theme'
          into GD_URL.
    gs_url-url  = GD_URL.
    gs_url-name = 'Testlink'.
    APPEND gs_url TO gt_url.
    The link MUST be defined within the SmartForm.
    Next, make the call to the custom function:
    CALL FUNCTION 'ZHR_RCF_SF_URL_PREPARE_CALLBAC
                  TABLES
                         pt_url = gt_url.
    Now we link the DISPLAY_URL to the name that we defined in gs_url-name.
    display_url   = gs_url-name.
    This will make the text whatever you define it in the code above, and also makes the actual URL whatever you defined it as.
    Step 5:
    In the Main Window of the SmartForm (under Pages and Windows), you must define the DISPLAY_URL as a variable to be displayed.  Using the INSERT FIELD button on the page, type in:
    &DISPLAY_URL&
    Then, highlight the variable, and then click the HYPERLINK button to make it a hyperlink.  The variable should now become highlighted in blue.
    Let me know if you need some help
    Regards
    Rodrigo

  • HOW DO I MAKE IMAGES DYNAMIC USING DREAMWEAVER & MySql

    Hi there,
       I wanted to make images dynamic in that the images would be stored in my database and then use dreamweaver to pull the images from the database using a recordset. But how do I get to store the images in MySql now that dreamweaver doesn't support BLOB and also how do I make dreamweaver pull the images from that database? PLZ somebody help

    To pull the image from Database on to your page
    1. Open your php page
    2. put your cursor where you want the image to show on the page
    3. insert>image>Select File Name From: Data Sources>select record from recordset> click ok
    4. View in browser
    In Mysyl the image was stored as a "longblob" type with "binary" attributes
    but my system is Dreamweaver CS3.
    Hope this helps. Let me know.

  • Using local/testing server with cs5 inserting images look fine in the split screen but do not show

    Hi
    If I open example: header.php and insert any photo jpeg/.html ecs i can see the images in the split screen but not in the browser if i save then refresh. I am able to make any change to the code ecs. and they are reflected just fine. I have tried this with my fireworks images .html and when that did not work i tried a strait jpeg off the desktop. This all did not work. I have deleted the local server then step by step created a new one via devnet instruction. This did not work! everything looks fine i even tried in 3 sep browsers with 0 luck....There is no remote server connected at this time because i am making a child theme for my current site. After all changes are done we will the ftp the word press files to site and change.
    Ps i even started over from scratch with 0 positive affects....

    After a lot of pain!!!!!!! the issue is fixed lol After 3 weeks I have overlooked the obvious !!! so the simple fix was the path of the image. Yes i feel stupid 10 years in lol....
    Apparently dreamweaver cs 5 will not use the full path when inserting images into the page example: If you drag the image out of your assets folder or however you do it, DW will give you a path like this <img src="images/glass.jpg" width="800" height="729"> This is not the full path and when your pist!!! you cant see things like that ;( so the image path should look like this:
    <img src="wp-content/themes/adszoom/images/glass.jpg" width="800" height="729">
    also in the html files example of bad then good!
    <!--======================== BEGIN COPYING THE HTML HERE ==========================-->
    <img name="navigation" src="navigation.gif" width="1000" height="50" border="0" usemap="#m_navigation" alt="">
    <map name="m_navigation">
      <area shape="poly" coords="804,7,994,7,994,47,804,47,804,7" href="http://adszoom.com/699-2/" title="SEARCH BY CATEGORIES FOR CLASSIFIED ADS" alt="SEARCH BY CATEGORIES FOR CLASSIFIED ADS" >
      <area shape="poly" coords="602,8,792,8,792,48,602,48,602,8" href="http://adszoom.com/wp-admin/edit.php/" title="VIEW OR EDIT YOUR CLASSIFIED ADS" alt="VIEW OR EDIT YOUR CLASSIFIED ADS" >
      <area shape="poly" coords="405,8,595,8,595,48,405,48,405,8" href="http://adszoom.com/post-an-ad/" title="NEW CLASSIFIED AD POST" alt="NEW CLASSIFIED AD POST" >
      <area shape="poly" coords="206,8,396,8,396,48,206,48,206,8" href="http://adszoom.com/help/" title="HELP WITH YOUR CLASSIFIED ADS" alt="HELP WITH YOUR CLASSIFIED ADS" >
      <area shape="poly" coords="3,9,193,9,193,49,3,49,3,9" href="http://adszoom.com/" title="HOME VIEW CLASSIFIED ADS" alt="HOME VIEW CLASSIFIED ADS" >
    </map>
    <!--========================= STOP COPYING THE HTML HERE =========================-->
    </body>
    NOW THE GOOD!
    <!--======================== BEGIN COPYING THE HTML HERE ==========================-->
    <img name="navigation" src="wp-content/themes/adszoom/images/navigation.gif" width="1000" height="50" border="0" usemap="#m_navigation" alt="">
    <map name="m_navigation">
      <area shape="poly" coords="804,7,994,7,994,47,804,47,804,7" href="http://adszoom.com/699-2/" title="SEARCH BY CATEGORIES FOR CLASSIFIED ADS" alt="SEARCH BY CATEGORIES FOR CLASSIFIED ADS" >
      <area shape="poly" coords="602,8,792,8,792,48,602,48,602,8" href="http://adszoom.com/wp-admin/edit.php/" title="VIEW OR EDIT YOUR CLASSIFIED ADS" alt="VIEW OR EDIT YOUR CLASSIFIED ADS" >
      <area shape="poly" coords="405,8,595,8,595,48,405,48,405,8" href="http://adszoom.com/post-an-ad/" title="NEW CLASSIFIED AD POST" alt="NEW CLASSIFIED AD POST" >
      <area shape="poly" coords="206,8,396,8,396,48,206,48,206,8" href="http://adszoom.com/help/" title="HELP WITH YOUR CLASSIFIED ADS" alt="HELP WITH YOUR CLASSIFIED ADS" >
      <area shape="poly" coords="3,9,193,9,193,49,3,49,3,9" href="http://adszoom.com/" title="HOME VIEW CLASSIFIED ADS" alt="HOME VIEW CLASSIFIED ADS" >
    </map>
    <!--========================= STOP COPYING THE HTML HERE =========================-->
    </body>
    THIS LINE IS YOUR ISSUE
    <img name="navigation" src="wp-content/themes/adszoom/images/navigation.gif" width="1000" height="50" border="0" usemap="#m_navigation" alt="">
    Ok thanks and if there are any issues with dw please ask: [email protected]

  • When inserting image how do I force inline CSS not image tags?

    When I insert an image to my page layout it always uses html width= and height= tags
    e.g. <img src="images/wordpress.jpg" width="125" height="112">
    This is driving me nuts
    (I thought these tags were pretty old fashioned for current doctypes. Why does dreamweaver continue to use them?)
    I want inserted images to be shown with inline CSS
    e.g.  <img src="images/wordpress.jpg" style="width:125px; height:112px;">
    I can then more easily add more CSS like padding, floats etc as needed.
    Any ideas how I set this up as a default or quickly convert?
    (I dont really want to add lots of unique image classes to a style sheet)
    many thanks!
    Dreamweaver CS6

    Image height & width values are not deprecated.  Unless you're building a responsive web site, it is usually better to have these attributes stated in the HTML.
    But when I don't want them, I do the following:
    Insert > Image > browse to file...
    On the properties panel, I delete the width and height values, hit Enter.
    Nancy O.

  • Adobe premiere elements 12 - how to create menu bar action for my inserted image button

    adobe premiere elements 12 - how to create menu bar action for my inserted image button without using their movie menu theme

    forbemag
    I do not think that I am completely focused into this completely, so let us see if the following is going to help.
    You are going to need a base for your button. When you mention "image" button, I am assuming that you are using that term to differentiate between a text button and a thumbnail type button.
    The menus (main and scene) take their origin in .psd files on the hard drive and strict nomenclature and structure for Layers Palatte. And, the buttons on the menus trace back to the menu markers on the Timeline, main menu marker and order of placement of scene markers. The scene thumbnail will only appear when there is a scene marker on the Timeline to which it.
    In view of all that
    Where have you already inserted this "image (button)"...into the Layers Palette of a Photoshop document or other? Is this "image (button)" in a structured Layer Group in the Layers Palette with sublayer groups, text layers, graphic/background layer"?
    Let me give you an example
    If you have a button (with thumbnail) on the main menu and you want that to open to a specific scene in your movie, then you use a main menu marker on the Timeline at the spot that you want that button to target.
    If I am getting closer to what you seek, then please further clarify the DVD navigational envisioned scheme.
    Thanks.
    ATR
    Add On...I did not see the exchanges between us and SG until after I had posted mine. I thought that your discussions were concluded. Please excuse the interruption.

  • Insert Link and Insert Image broken in Chrome

    The Insert Link and Insert Image buttons have been broken in my Chrome for at least the last couple of days (latest version, 32.0.1700.72 m, Windows 7 64).  
    When you click one of the buttons, the overlay window appears with a title, but it is otherwise black with no contents.  (See screenshot below.)
    The buttons work fine in Firefox.  What hasn't helped: deleting cookies, clearing the browser cache, waiting for several minutes for their content to appear.

    Whtat are we supposed to Claudio? All descend on Adobe with  clubs and try to beat some sense into someone!
    The fact is the customer is no longer the prime concern. Most companies don't give a Rats behind (toned down to prevent censors action) about the customers. It's the almighty dollar. Screw as many customers as they can while they can and line their pockets with all the green backs  as they can while they can. Then if the cusomers leave so be they take their money and run.
    Customer use to have power, they would speak loud and frequently and get things  fixed. And what with people from other countries now owning US companies, That were brought up with different moral compasses. They have no concept of this thing of loyalty to customers. The customer can jump off a cliff and they will simply cheer them on while the do so.
    We have lost, the fight can't be won. It no use. So Pat and others are right.
    I've been trying for 15 years for adobe to fix the issue of having multiple Pdfs created from Office documents because the claim they can't figure out how MS does Page and section breaks. And the issue of Weblinks not being active when converted to PDF's Both on Mac's yet on PC's there is no issue. I quite this year after I received a down right nasty not from Adobe say they didn't have any interest in fixing the bugs and were not about to try. What it amounted was go take a flying leap.
    They have the ability. They have beenblaming Its apple because they don't do such and such , or Microsoft because they don't do so and such. On the Links issue Saying MS doesn't provided the necessary hooks in the mac version of Office. They do you can take a Word document created on a Mac and open a PC and create a PDF and the links will be active. You can Open a Word Document in Apple's pages and all links created in Office document will be there.  The argument has been proven several different ways to be a an outright bald-faced lie. The defect is squarely with the Mac version of Acrobat.
    So Pat and others are right. Just throw in that towel. Adobe support of its customers is now 10 times worse than intuit's which is supposed have the lowest reputation of any software compny that ever existed.

  • I have just downloaded Mac OS X 10.9 and Pages 5. When I open any pre-existing document in the new Pages the format is zoomed to 125%, the headers are out of position, the margins are changes, and inserted images are also relocated. What can I do?

    I have just downloaded Mac OS X 10.9 and Pages 5. When I open any pre-existing document in the new Pages the format is zoomed to 125%, the headers are out of position, the margins are changes, and inserted images are also relocated. What can I do?

    Have you tried resetting the SMC ?     >  Resetting the System Management Controller (SMC)

  • Problem in insert image function

    Hi there...I'm brand, spanking new to Dreamweaver CS3, and I
    just started working through tutorials to try to learn the
    software. I'm having a little issue with something that is problem
    very easily fixable to the gurus here.
    When I tell Dreamweaver to "insert image" through the Common
    Bar, it takes me straight to the accessibility dialog. When I click
    OK, it then puts a small box with no image on the page. I then have
    to double click the box to tell it what image to place into the
    image holder. This doesn't seem correct to me as I'm duplicating
    steps. It's becoming annoying when I'm working with several images.
    The tutorial I'm using shows another dialog box asking for the
    image BEFORE the accessibility dialog box. It's not working this
    way for me.
    Can you help?
    Thanks!
    Kym

    This is definitely an odd issue. Have you tried installing
    any extensions to DW? If so, uninstall them and see if the function
    works.
    If not try just try inserting an image by clicking the
    drop-down arrow next to the insert image button and then click to
    insert an image and see if it takes you to the right screen.
    If that doesn't work you may need to try re-installing the
    program. I would suggest some other OS specific things you can do
    such as trashing the preferences file from the Mac OSX library, but
    I don't know what OS you are using so it wouldn't help to tell you
    these steps as at this point it might just be more beneficial to do
    a re-install.

  • Inserting images in a collapsible panel

    Can anybody help with a problem about inserting an image into
    the tab of a collapsible panel as a visual clue to users that they
    can open/close the panel? I'm trying to ensure that users don't
    just see the tab of the panel as a kind of good looking heading but
    that the images (two - one for open, one for closed) would give a
    visual clue that the tab actually opens when clicked.
    I'd be very grateful for any help, thanks, st44

    By managing the table's default cellpadding and cellspacing.
    Are you
    setting them to zero?
    If that's not happening then we would need to see your code.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "OxfordFishSalon" <[email protected]> wrote
    in message
    news:fulior$9i1$[email protected]..
    > When I insert images in a table and align them right,
    for example, there
    > are
    > still a few pixels between the edge of the table and the
    image on the top
    > and
    > right.
    >
    > How do I make an image go to the absolute edge of a
    table?
    >
    > Thanks,
    > Chris
    >

  • Inserting Images in a Table

    When I insert images in a table and align them right, for
    example, there are still a few pixels between the edge of the table
    and the image on the top and right.
    How do I make an image go to the absolute edge of a table?
    Thanks,
    Chris

    By managing the table's default cellpadding and cellspacing.
    Are you
    setting them to zero?
    If that's not happening then we would need to see your code.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "OxfordFishSalon" <[email protected]> wrote
    in message
    news:fulior$9i1$[email protected]..
    > When I insert images in a table and align them right,
    for example, there
    > are
    > still a few pixels between the edge of the table and the
    image on the top
    > and
    > right.
    >
    > How do I make an image go to the absolute edge of a
    table?
    >
    > Thanks,
    > Chris
    >

  • SCN document: 'Insert Image' greyed out at a certain stage/size

    I noticed  a similar issue likeTammy has reported in discussion/thread .Cannot insert or upload an image
    After having inserted text and several images to a draft document, the 'Insert Image' icon became greyed out at a certain stage/size.
    I did some tests following document Solution for Error: Cannot Insert Images on SCN Content, but the the behavior remained the same. Only after having deleted the last inserted image in the document > Save Draft > Edit again the 'Insert Image' icon was not greyed out anymore which is argueing for a size restriction.
    The same html coding as in the document put into a blog does not grey out the ‘Insert Image’ icon. But I found out that after clicking on the ‘Insert Image’ icon > ‘From your Computer’  tab ‘Browse’ is greyed out. Strange and argueing against a size limit is, when I choose ‘Uploaded Images’ I can select images and still  insert them into the blog.
    Does someone have similar experiences / can assist.
    Thank you, Barbara

    We have a recent discussion in SCN support.
    He has same problem. Have a look into the discussion Issue with 'Insert Image' button while creating document in SCN
    I suggest to split you document into two part as part 1 and part 2.

Maybe you are looking for