Image with url link

hi..
i have an image in my jframe and i want to link the image to an url address.
can anyone help me with this?
thanks

Hi, Find the following code which can help you to invoke the browser. Put these code in the action performed method of your button.
Process browserprocess = null;
//browserPath represents the exe path of Internet Explorer
String browserPath = "C:\\Program Files\\Plus!\\Microsoft Internet\\Iexplore.exe";
String path = "c:/intellidocresources/demographics/path.PROPERTIES";
String filePath = "www.google.com;
String temp = browserPath + " " + filePath;
browserprocess = Runtime.getRuntime().exec(temp);
Bye.
R.Vishnu Varadhan

Similar Messages

  • Simlpe way to load an image with URL link into iOS with AIR

    I want to be able to display an image (basically a small banner) inside my iPhone game which is loaded from my server where I can advertise new games.
    What's the best way to do this?
    Are there any technical issues I should be aware of?
    Does it fall foul of any of Apples policies?
    Thanks for any advice.

    It's not at all against policy but you do need a backup plan for devices without connectivity. Package a default banner to load if there is no internet access.
    Apple does not require you to ask the person permission to use the internet (like Android does). You're free to load whatever you like.
    You can't load or change code regardless so don't worry about that. In fact you can only even package a SWF that contains absolutely no code, otherwise it won't load, so there's no way to change the code in an iOS app. All it can do is read something on the outside and modify its behavior via pre-written and packaged code, but you can't "load or change code" in any way.
    For now, mobile apps are not getting the "premium feature" tax Adobe is putting into motion August 1st. They excluded mobile. But be warned (because you made a game and might use Stage3D, who knows) that things might become more complicated if your game is serving custom banners, you're turning a profit on it and  you exceed $50,000 in sales while using premium features. Like I said though, this doesn't pertain to mobile apps, yet..

  • How to display URL images and URL link (html) from Smartforms?

    Hi Gurus,
    I'm having difficulty on how to display targeted URL images and URL link from the smartforms, after i sending it out as html mail. The mail i sent just can be preview as a plain text, which can't execute the html code that i put inside the smartforms itself. I follow a few step from this very useful blog.. Hopefully, you guys can give me some solutions or ideas on this.
    /people/pavan.bayyapu/blog/2005/08/30/sending-html-email-from-sap-crmerp -thanks to Pavan for his useful blog.
    My code is like this..
    <--- Start Code.
    FORM call_smartforms.
      DATA : lv_subject TYPE so_obj_des,
             lc_true(1) VALUE 'X',
             lw_control_parameters TYPE ssfctrlop,
             lw_output_options TYPE ssfcompop,
             lc_graphics(8) VALUE 'GRAPHICS',
             lw_xsfparam_line TYPE ssfxsfp,
             lc_extract(7) VALUE 'EXTRACT',
             lc_graphics_directory(18) VALUE 'GRAPHICS-DIRECTORY',
             lc_mygraphics(11) VALUE 'mygraphics/',
             lc_content_id(10) VALUE 'CONTENT-ID',
             lc_enable(6) VALUE 'ENABLE',
             lw_job_output_info TYPE ssfcrescl,
             lw_html_data TYPE trfresult,
             lw_graphics TYPE ssf_xsf_gr,
             lt_graphics TYPE tsf_xsf_gr,
             lv_html_xstr TYPE xstring,
             lw_html_raw LIKE LINE OF lw_html_data-content,
             lv_incode TYPE tcp00-cpcodepage VALUE '4110',
             lv_html_str TYPE string,
             lv_html_len TYPE i,
             lc_utf8(5) VALUE 'utf-8',
             lc_latin1(6) VALUE 'latin1',
             lv_offset TYPE i,
             lv_length TYPE i,
             lv_diff TYPE i,
             lt_soli TYPE soli_tab,
             lw_soli TYPE soli,
             lc_mime_helper TYPE REF TO cl_gbt_multirelated_service,
             lv_name TYPE mime_text VALUE 'sapwebform.htm',
             lv_xstr TYPE xstring,
             lw_raw TYPE bapiconten,
             lt_solix TYPE solix_tab,
             lw_solix TYPE solix,
             lv_filename TYPE string,
             lv_content_id TYPE string,
             lv_content_type TYPE w3conttype,
             lv_obj_len TYPE so_obj_len,
             lv_bmp TYPE so_fileext VALUE 'BMP',
             lv_description TYPE so_obj_des VALUE 'Graphic in BMP format',
             lc_doc_bcs TYPE REF TO cl_document_bcs,
             lc_bcs TYPE REF TO cl_bcs,
             lc_send_exception TYPE REF TO cx_root,
             lw_adsmtp TYPE lty_adsmtp,
             lv_mail_address TYPE ad_smtpadr,
             lc_recipient TYPE REF TO if_recipient_bcs,
             lc_send_request TYPE REF TO cl_bcs,
             lv_sent_to_all TYPE os_boolean.
      DATA : v_language TYPE sflangu VALUE 'E',
             v_e_devtype TYPE rspoptype.
      v_form_name = 'ZTEST_EMAIL'.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = v_form_name
        IMPORTING
          fm_name            = v_namef
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
    starting here. ***
    Set title for the output
      lv_subject = 'Smartforms.'.
    Set control parameters to "no dialog"
      lw_control_parameters-no_dialog = lc_true.
    IF lw_service_subject-code = lc_fm1.
    *--- To get output device type
      CALL FUNCTION 'SSF_GET_DEVICE_TYPE'
        EXPORTING
          i_language    = v_language
          i_application = 'SAPDEFAULT'
        IMPORTING
          e_devtype     = v_e_devtype.
      lw_output_options-tdprinter = v_e_devtype.
      lw_control_parameters-getotf = 'X'.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
    Set output options
      lw_output_options-xsf        = lc_true.
      lw_output_options-xsfcmode   = lc_true.
      lw_output_options-xsfoutmode = 'A'.
      lw_output_options-xsfoutdev  = space.
      lw_output_options-xsfformat  = lc_true.
      lw_xsfparam_line-name  = lc_graphics.
      lw_xsfparam_line-value = lc_extract.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
      lw_xsfparam_line-name  = lc_graphics_directory.
      lw_xsfparam_line-value = lc_mygraphics.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
      lw_xsfparam_line-name  = lc_content_id.
      lw_xsfparam_line-value = lc_enable.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
    Get the smartform content
      CALL FUNCTION v_namef
        EXPORTING
          control_parameters   = lw_control_parameters
          output_options       = lw_output_options
    *pass other application specific parameters (eg order number, items ).
      IMPORTING
          job_output_info    = lw_job_output_info
      TABLES
          tt_tabh              = tt_tabh
          tt_tabb              = tt_tabb
          tt_tabf              = tt_tabf
      EXCEPTIONS
          formatting_error = 1
          internal_error   = 2
          send_error       = 3
          user_canceled    = 4
          OTHERS           = 5.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
      lw_html_data  = lw_job_output_info-xmloutput-trfresult.
      lt_graphics[] = lw_job_output_info-xmloutput-xsfgr[].
      CLEAR lv_html_xstr.
      LOOP AT lw_html_data-content INTO lw_html_raw.
        CONCATENATE lv_html_xstr lw_html_raw INTO lv_html_xstr IN BYTE MODE.
      ENDLOOP.
      lv_html_xstr = lv_html_xstr(lw_html_data-length).
      CALL FUNCTION 'SCP_TRANSLATE_CHARS'
        EXPORTING
          inbuff       = lv_html_xstr
          incode       = lv_incode
          csubst       = lc_true
          substc_space = lc_true
        IMPORTING
          outbuff      = lv_html_str
          outused      = lv_html_len
        EXCEPTIONS
          OTHERS       = 1.
    *HACK THE HTML CODE GENERATED BY SMARTFORM TO MAKE THE
    *EXTERNAL IMAGES APPEAR AS <IMG> TAG IN HTML
      REPLACE ALL OCCURRENCES OF '<IMG' IN lv_html_str WITH '<IMG' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '/>' IN lv_html_str WITH '/>' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '</A>' IN lv_html_str WITH '' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '<' IN lv_html_str WITH '<' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '>' IN lv_html_str WITH '>' IGNORING CASE.
    CALL METHOD html_control - >load_mime_object
       EXPORTING
         object_id  = 'ZWN'
         object_url = 'ZWN.GIF'
       EXCEPTIONS
         OTHERS     = 1.
      REPLACE ALL OCCURRENCES OF lc_utf8 IN lv_html_str WITH lc_latin1.
    REPLACE ALL OCCURRENCES OF lc_utf8 IN lv_html_str WITH 'iso-8859-1'.
       break mhusin.
      lv_html_len = STRLEN( lv_html_str ).
      lv_offset = 0.
      lv_length = 255.
      WHILE lv_offset < lv_html_len.
        lv_diff = lv_html_len - lv_offset.
        IF lv_diff > lv_length.
          lw_soli-line = lv_html_str+lv_offset(lv_length).
        ELSE.
          lw_soli-line = lv_html_str+lv_offset(lv_diff).
        ENDIF.
        APPEND lw_soli TO lt_soli.
        ADD lv_length TO lv_offset.
      ENDWHILE.
      CREATE OBJECT lc_mime_helper.
      CALL METHOD lc_mime_helper->set_main_html
        EXPORTING
          content     = lt_soli
          filename    = lv_name
          description = lv_subject.
      LOOP AT lt_graphics INTO lw_graphics.
        CLEAR lv_xstr.
        LOOP AT lw_graphics-content INTO lw_raw.
          CONCATENATE lv_xstr lw_raw-line INTO lv_xstr IN BYTE MODE.
        ENDLOOP.
        lv_xstr = lv_xstr(lw_graphics-length).
        lv_offset = 0.
        lv_length = 255.
        CLEAR lt_solix[].
        WHILE lv_offset < lw_graphics-length.
          lv_diff = lw_graphics-length - lv_offset.
          IF lv_diff > lv_length.
            lw_solix-line = lv_xstr+lv_offset(lv_length).
          ELSE.
            lw_solix-line = lv_xstr+lv_offset(lv_diff).
          ENDIF.
          APPEND lw_solix TO lt_solix.
          ADD lv_length TO lv_offset.
        ENDWHILE.
        CONCATENATE lc_mygraphics lw_graphics-graphics text-001 INTO lv_filename.
        CONCATENATE lc_mygraphics lw_graphics-graphics text-001 INTO lv_content_id.
        lv_content_type = lw_graphics-httptype.
        lv_obj_len      = lw_graphics-length.
    *Add images to the email
        CALL METHOD lc_mime_helper->add_binary_part
          EXPORTING
            content      = lt_solix
            filename     = lv_filename
            extension    = lv_bmp
            description  = lv_description
            content_type = lv_content_type
            length       = lv_obj_len
            content_id   = lv_content_id.
      ENDLOOP.
      TRY.
          lv_subject = lv_subject.
          lc_doc_bcs = cl_document_bcs=>create_from_multirelated(
                   i_subject          = lv_subject
                   i_multirel_service = lc_mime_helper ).
        CATCH cx_document_bcs INTO lc_send_exception.
        CATCH cx_bcom_mime INTO lc_send_exception.
        CATCH cx_gbt_mime INTO lc_send_exception.
      ENDTRY.
    Create send request
      TRY.
          lc_bcs = cl_bcs=>create_persistent( ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
      TRY.
          lc_bcs->set_document( i_document = lc_doc_bcs ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
    Set-up email receiver
      lv_mail_address = '[email protected]'.
    TRANSLATE lv_mail_address TO UPPER CASE.
      TRY.
          lc_recipient = cl_cam_address_bcs=>create_internet_address(
              i_address_string = lv_mail_address ).
        CATCH cx_address_bcs INTO lc_send_exception.
      ENDTRY.
      TRY.
          lc_bcs->add_recipient( i_recipient = lc_recipient ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
    Send smartforms as HTML email
      TRY.
          lc_bcs->send( ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
      COMMIT WORK.
      WRITE:/ 'Mail sent'.
    ENDFORM.                    "call_smartforms
    End Code --->
    Thanks and Regards.

    1- put your images in a directory under the web app directory. Example: app/images/
    2- in your jsp, use: String file = application.getRealPath("/images/"); to get the images directory. See http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/ServletContext.html#getRealPath(java.lang.String)
    3- it's not the right forum to post this kind of question. Post them in the JSP/Servlet JSTL forum instead

  • HELP!!!! I have spent hours trying to find out how to embed an image with a link or a Microsoft Word document with a hyperlink built within the document -- not as an attachment! Does ANYONE know the secret? Can it be done, or not! My PC clients do it.

    HELP!!!! I have spent hours trying to find out how to embed an image with a link, or embed a Microsoft Word document with a hyperlink built within the document -- not as an attachment into my email -- but where it shows as the email content when opened! Does ANYONE know the secret? Can it be done, or not? My PC clients do it all the time easily. Then I want to be able to send the embedded image/document (not as an attachment, but visable within the email when opened) to many email contacts at once, BUT the individuals receiveing them DO NOT SEE the other email contacts. Cannot seem to be able to find anything on being able to do these 2 tasks.PLEASE, SOMEONE, HELP!!!

    Don't know if this applies to Lion, but read here:
    http://www.makeuseof.com/tag/create-html-announcement-mail-iweb-mac/

  • Some of my website images with embeded links only show the link with firefox, with IE8 the image appears correctly, why does this happen

    my website http://www.functionkey.net. If you view my homepage you will see that 3 of my images with embedded links only show up with the links. I am not using "_blank" in my code. The website was created using Microsoft Frontpage 2003.

    If you look at the page source then you will notice that there are some errors with (missing) closing tags.<br />
    Such errors shows as RED text.<br />
    You need to correct at least all codes marked as red text.
    The first &lt;a&gt; tag isn't closed here and you open a second &lt;a&gt;
    <pre>&lt;a target="_blank" border="0" href="http://www.win-rar.com"&gt;
    &lt;div align="left"&gt;
    &nbsp;&lt;/div&gt;
    &lt;div align="left"&gt;
    <u>&lt;a href="http://www.smartdraw.com"&gt;</u>
    &lt;img src="images/sd_logo.gif" width="256" height="111" border="1" alt="SmartDraw - The world's first Visual Processor (TM)" hspace="0"&gt;&lt;/a&gt;</pre>

  • Image with a Link to an URL

    Hi,
    I have an easy question. I would like to have a little question mark-image on my view. And this image has an link to an url. So I would like to push this image, and a new browser-window opens.
    I only found the Layout-element "LinkToUrl". But with this element I don't have an image.
    How does it works in Webdynpro? In HTML it is very easy...

    Hi,
    Change the layout to grid type and then scroll down. You will find "layout[GridLayout]" set col count here to the number equal to total number of buttons + 2.
    Then click on link and in the properties scroll down and set col span = 2.
    and hAlign = right.
    this will do the required.
    and the flowdata is coming in your container's properties because this container is also present in one of the transparent container which is having layout as flow layout.
    Regards,
    Sarbjeet.

  • In browser editing: Can my client add new images with hyper-links to their websites without having to replace images already there?

    My client would like to be able to add new images to their site themselves and use them as hyper-links to external sites without having to replace an old image with the new one (or blank place holding images - far from ideal). Is there ANY way that this is possible? They do not wish to update and add new images/links regularly and it is certanly not intended to be used as a blog or way of being able to constantly keep content new and fresh otherwise I would set them up with a blog account and add that to the site. It is merely a way of adding links to other local businesses every once in a while.
    Please see the page they wish to update... Friends. (Please excuse the layout... the customer will not be able to resize or edit the images themselves and wishes to add them as-is!)
    Thanks in advance for any help. If anybody knows how I can ask an Adobe official mod, that would be great... that, or make a request for a future addition in an update?
    Warm regards,
    Ben Gathercole

    Hi Andria,
    Changing links is currently not possible with in-browser editing.
    Please post this as a feature request in the following feedback form :
    http://feedback.inbrowserediting.com/?url=
    Regards,
    Akshay

  • How to supply events with url links in a public readable event calendar?

    When creating a new event on this calendar, how do I supply a url with
    hypertext links so reader can click on it and lead to a 'more info' page?
    I tried the example supplied by "Reviewer's Guide, iPlanet Calendar Server
    5.0". From chapter 4, Advanced Features, I imported a supplied ical file
    (ba_music.ics) to JSmith's BayAreaMusic calendar, I got no problem when
    importing. Then, when I looked at the calendar, I expected to see hyperlinks,
    yet what I saw were only plain text html, no links, no images( such as -
    <html>
    <a target=ics2 href=http://www.sfsymphony.org/>
    <img src=imf/greynte2.gif align=left width=27 height=28>Symphony Concert<br>
    8:00pm
    </html>
    What did I do wrong?
    Ching-I

    When creating a new event on this calendar, how do I supply a url with
    hypertext links so reader can click on it and lead to a 'more info' page?
    I tried the example supplied by "Reviewer's Guide, iPlanet Calendar Server
    5.0". From chapter 4, Advanced Features, I imported a supplied ical file
    (ba_music.ics) to JSmith's BayAreaMusic calendar, I got no problem when
    importing. Then, when I looked at the calendar, I expected to see hyperlinks,
    yet what I saw were only plain text html, no links, no images( such as -
    <html>
    <a target=ics2 href=http://www.sfsymphony.org/>
    <img src=imf/greynte2.gif align=left width=27 height=28>Symphony Concert<br>
    8:00pm
    </html>
    What did I do wrong?
    Ching-I

  • Can you wrap an image with a link in an html email signature?

    When I cite a remotely hosted image in an html signature, and try to make that image a link, the link is ignored and the just the image is shown.
    e.g.:
    <a href="https://www.facebook.com/pages/Ubiquia/146019678805381" target="_blank">
    <img style=" position:absolute;
    height:30px;
    width:30px;
    left:172px;
    top:157.5px"
    src="http://png.findicons.com/files/icons/2779/simple_icons/48/facebook_48_black.png" alt="ubiquia facebook" moz-do-not-send="true"
    >
    </a>

    For each icon that you want to use in your email signature:
    locate icon on internet webpage - right-click on the icon and select 'Save Image as'. Save the icon to your computer in a suitable file.
    Then in Thunderbird
    insert > Image
    choose file - locate the saved icon on your computer
    click on Link tab and enter the www etc webpage link info
    click on OK to insert image with link.
    Codewise, where you have the actual icon you would need something stating where the icon is located:
    eg
    <a href="https://www.facebook.com/pages/Ubiquia/146019678805381" target="_blank">
    path to image saved on computer included in within <> </a>

  • Image with URL action in a table

    Hi,
    it is possible to assign a hyperlink to an image so o click an window with the given URL will open. How can I do this with an image wihtin a table. I assign the same URL action but the image is not clickable although the table is set to selectable and editable. Can anybody help?
    Thanks in advance!
    Regards,
    Kevin

    Hi Kevin,
    You can define an Image control uppon a Grid that has Resutls (with URL action as you did ).
    If your grid with no results the Image won't be clickable.
    Another importent thing for you to notice is the image scale-mode (make sure that it's on Original-size/ fit to scale).
    - if you still having problem regardring this issue, please replay with your Visual-Composer version.
    Thanks,
    Kobi.

  • Can Mail send interactive PDF attachments with URL links?

    I have tried without success to send a PDF that has URL links embedded (made in InDesign CS3). When this mail arrives the links are stripped out from the attached PDF. I do not want to send html mail for this purpose.
    Anyone have any answers? Thanks.

    Jon,
    The strong probability is that a SPAM filter in the path to the recipient has stripped them out -- Mail would not cause this. Have you tried opening the PDF with Acrobat Pro, doing a Save As, and then attaching that version to see if the same behavior continues.
    Ernie

  • [Resolved] WDK bug with url links

    Hello,
    My problem concerns the Wireless Developer Kit (10.1.2.0).
    First I will explain my context: I develop XHTML-MP jsp web pages with Jdeveloper in order to display them on Pocket PC or mobile phones.
    My problem is that when I want, for instance, display pictures generated by an external content provider, the pictures tag is as following:
    <object data="http://content_provider_web_site.com/script.cgi?param1=value1&param2=value2&..."
    type="image/gif"/>
    When the WDK encounter this code, I've got on the terminals screens
    "500 Internal Server Error"
    and on the error output:
    "oracle.xml.parser.v2.XMLParseException: Expected ';'.
    at
    oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:324)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:287)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:295)
    at oracle.panama.xhtml.Util.parseResult(Util.java:121)
    at
    oracle.panama.rt.common.ContentDetector.detectWapXHTML(ContentDetector.java:281)
    at
    oracle.panama.rt.common.ContentDetector.setContent(ContentDetector.java:105)
    at
    oracle.wireless.sdk.SdkTranscoder.storeContent(SdkTranscoder.java:260)
    at
    oracle.wireless.sdk.SdkTranscoder.processRequestWithoutXForms(SdkTranscoder.java:354)
    at
    oracle.wireless.sdk.SdkTranscoder.process(SdkTranscoder.java:313)
    at
    oracle.wireless.sdk.SdkTranscoder.doFilter(SdkTranscoder.java:134)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:638)
    at
    com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
    at
    com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
    at
    com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
    at
    com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)"
    This error occurs for each link which inlcude a script with more than 1 parameter. Indeed, this error also occurs for the following link:
    My Web link which bugs
    but we have got no problem with this one (because there is only one parameter in the script call??)
    my good Web link
    Has somebody an idea, a tip or any information to avoid this bug?
    I hope that everybody will be able to understand my problem, for any further information don't hesitate to contact me.
    Thank you by advance,
    Regards,
    Emmanuel Lebel.
    Message was edited by:
    [email protected]

    Solution:
    When you have more than one query parameter you must XML
    escape the '&' by using '&amp;'. The URL should look like this:
    http://host:port/file?p1=v1&amp;p2=v2
    <http://host:port/file?p1=v1&amp;p2=v2>

  • Image with URL

    Hi friends,
    I have a situation, i have an image in my report and if i click that image it should move on to a webpage(say Google).
    so, i added that url through Image properties.
    Then i previewed that report, tried clicking that image and it worked as i expected(it retrieved the google home page).
    But after exporting that report as PDF file, it didnt work. If i try to click that image, only the image gets selected.
    I want the report to goto desired link.
    Someone please advice me on how to make it work.
    thanks in advance.
    arvind

    Hi TrueGunner,
    I have tested the issue in my test environment and cannot reproduce it. Here, I want to know the detailed URL, for example, whether you have added the parameter in the URL.
    The right steps are for your reference:
    1.Right click the image control and select "Action" in the left pane.
    2.Select "Go to URL" below the option of Enable as an action.
    3.Type the URL according to your requirement.
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • How to open Image path URL link in OA Framework

    Hi Friends
    I Have the requirement please suggesh me ur idea
    1)I have created a SearchPG with two LOV fields if I select a value from the LOV - example -orderno 1233455
    It brings data in my table field for that particular ordernumber
    My table has column like for example as below
    Order_no,po_no ,cust_name ,address,image_path etc
    Here in -Image_path column bring data from my DB like EX : \\mycomp\xxxx\yyyy\4\5\7\7\0204755.tif
    here this my requirement
    Here the Image_path column should be like a link when we click the link it should open and pring a PDF file
    Please suggest me what need to be done for my requirement
    Your help will be highly apprerciable
    Advance Thanks
    AT

    Hi
    what is the bean type of image_path , if it is not a link bean then u should hide this and create a new field of link bean type through personalization , all other mappings like viewinstance and view attribuets should similar to the image_path fields .
    Thanks
    Pratap

  • Random Image with Clickable Link

    Hey guys so far I found a code that lets me randomize an image and I found out a piece of code that makes the image clickable but I do not know how to add a specific link to each specific image.
    Here is the code:
    <head> <script language="JavaScript">
    var theImages = new Array()
    theImages[0] = 'Accounting Cartoon1.jpg'
    theImages[1] = 'Accounting Cartoon2.jpg'
    var j = 0
    var p = theImages.length;
    var preBuffer = new Array()
    for (i = 0; i < p; i++){
       preBuffer[i] = new Image()
       preBuffer[i].src = theImages[i]}
    var whichImage = Math.round(Math.random()*(p-1));
    function showImage(){
    document.write('<a href="link.html"><img src="'+theImages[whichImage]+'"></a>');}
    //-->
    </script>

    anyone have an idea?

Maybe you are looking for

  • Auto Email generation in multiple language in Access Enforcer 5.2

    Hi All, We have configured workflow in Access Enforcer 5.2 for autoprovisioning of users in the system. Requestor gets an email in english with the userid and password once the user is provisioned in the system. Now the requirment is to send these em

  • PCD Index Error in Trex Search

    Dear all I have tried to configure as mentioned in the URL <b>Configuring the Search for Portal Pages and iViews</b> http://help.sap.com/saphelp_nw04/helpdata/en/b2/d59a4271c80a31e10000000a1550b0/frameset.htm . I am getting the following error. <i><b

  • Distribute update and delete privately

    Is it possible using DPS to have an app distributed privately or not through the app store but the application can still be updated automatically wirelessly? Is there a way to remotely delete an app in case a device is lost or stolen? We are creating

  • Unable to block someone I do not know

    In my privacy settings, I have checked the button to only allow people to contact me who are on my contacts list.  In spite of this I regularly receive messages from people I do know know, but am usually able to block them.  I have had a message from

  • Filter default value

    Post Author: adriananderegg CA Forum: Xcelsius and Live Office Dear all, I use a filter element with 3 elements. My question concerns the default value, the values which are selected after loading. I can't figure out any logic behind the values XCels