Display Image and Download the same in PDF

Hi...
We have requirement to display the Image of materials in the Web using the Web Dynpro ABAP.
We have the images in web server and URL for each image.
Once the image is visible in the web, user shoud be able to download the output in PDF copy with a button click in the screen.
The PDF output should be as in Web Screen output.
Can you please share how to achive this requirement using the Web Dynpro ABAP?
Thanks,
Guru

To display an image, simply use the "IMAGE" control in webdynpro.
To export to PDF, several options can be considered.
For example, try out the "INTERACTIVE FORM" control and embed your images dynamically into the form, or display the image in an ALV and use the PDF Print Preview function of the ALV.

Similar Messages

  • I purchased Acrobat Standard, not realizing it is not compatible with MAC. I need to exchange. I just chatted with a so-called "specialist" who told me to sign in and download the same program. I got the same blasted message. I need help. I need to exchan

    I purchased Acrobat Standard, not realizing it is not compatible with MAC. I need to exchange. I just chatted with a so-called "specialist" who told me to sign in and download the same program. I got the same blasted message. I need help. I need to exchange this program for one that is compatible with my MAC. The standard is of no use to me at all. I feel like I have been ripped off

    Hi Kargi,
    We are working on getting things straightened out for you. You should be hearing from a Customer Care agent shortly.
    Best,
    Sara

  • Is the ipad 1 able to run and download the same apps as the ipad 3

    Is the ipad 1 able to run and download the same apps as the ipad 3

    You have to look at the system requirements for the app. the iPad 1 cannot run a version of iOS higher than 5.1.1. If the app requires a higher veriosn, you cannot run it.
    System reqs for any app in the itunes store are at the left edge of the screen.
    Fortunately most apps still run on the older iOS version

  • How Can I replace an image and save the same size as the previous?

    I want to replace an image in a PDF, but I would like to keep the same size, and location as the previous. I have tried to to it, but the new image takes a different size.
    This is a PDF exported from an InDesign template.

    Thank you.
    The problem is that the person to edit the PDF doesn´t have ID and doesn't know how to use it.
    The idea is that the design department create very sharp ID templates for people from other departments of the company only have to replace information (text and image).
    We are looking for a program to edit PDF files and function as templates forreplacement information.

  • How to Save an image and retreve the same image with edit option!! ???

    I am facing with a problem
    I have a image which is preloaded, user accessing the image should be provided with a option of adding a text on some part of image etc and save it. Later when that imagine is tried and retrived it should display the edited and saved image and allow user to edit again.The text will be written in a square box which can be dragged anywhere on the image. Is java script and ajax best for this.?
    Can anyone help in showing the basic things i need to follow to achieve this.
    Thanks in Advance
    Edited by: aadi on Feb 12, 2008 9:41 PM

    You could try to write a web service that returns a byte array and convert the image to bytes, and convert it back into an image again.

  • How to publish an image and consume the same via web service?

    how to publish a soap web service which returns image and consume it via a client to display it properly?

    You could try to write a web service that returns a byte array and convert the image to bytes, and convert it back into an image again.

  • Is there a batch process for opening multiple raw images and applying the same, stored preset?

    I often have multiple exposures of the same subject, which I would like to treat identically. At present I have to open each one individually in Camera Raw, apply the preset, save, go on to the next, etc.
    Looking for a way, if there is one, to select them all, in order to apply the preset to all at once. Or perhaps there may be a scripting method to allow this?

    Which version of photoshop, camera raw and operating system are you using?
    You should be able to open all the images inside camera raw, Select All  (upper left of the camera raw dialog above the filmstrip of open images) and then apply the settings to all the selected images.

  • I am finding difficult to see youtube videos as it wants adobe flash player and downloading the same does not help., I am finding difficult to see youtube videos as it wants adobe flash player and downloading the same does not help.

    Please help

    1. System Preferences > Other/ Flash Player > Advanced >  Delete  All
         Press the "Delete All" button
         Install Adobe Flash Player.
        http://get.adobe.com/flashplayer/
        Quit Safari.
        Restart computer. Relaunch Safari.
    2.  Enable Plug-ins
        Safari > Preferences > Security
        Internet Plug-ins >  "Allow all other plug-ins

  • When I try to open a download PDF I get message to install Adobe Reader. I do it and get the same message already installed. I close Safari and reopen but get same message to install Adobe

    When I try to open a download PDF I get message to install Adobe Reader. I do it and get the same message already installed. I close Safari and reopen but get same message to install Adobe

    You don't provide any details, but from the sound of it you are trying to open an online PDF in a browser that does not use the Adobe Reader plugin: http://helpx.adobe.com/acrobat/kb/pdf-browser-plugin-configuration.html

  • I have thousands of pdf and need to change an image that is the same at all.

    Hi,
    I have thousands of pdf and need to change one image that is the same at all.
    Is it possible to do this automatically?
    Thanks.

    The image is the same size, but not in the same position
    Thanks

  • Downloaded Canon printer/scanner drivers for Canon PIXMA MP520 and MX860 on Mac Book laptop, and they worked.  However, when I downloaded the same two drivers on Mac Book Air, neither worked.

    Downloaded Canon printer/scanner drivers for Canon PIXMA MP520 and MX860 on Mac Book laptop, and they worked.  However, when I downloaded the same two drivers on Mac Book Air, neither worked.

    I wasn't aware that VueScan charged a yearly license.
    You simply launch Image Capture and if the scanner is recognized it will be listed in the SHARED list in the left display column.  Select the scanner name and the app will start an overview scan.  You will also see a list of scanning options in the right display column (resolution, paper size, file output format, etc.
    The above description is when everything is working correctly, which has been the case for me.
    Good luck.

  • To upload a RTF and a PDF file to SAP R/3 and print the same through SAP

    Hi,
    I have a requirement to upload a PDF file and a RTF file to SAP R/3 and print the same.
    I wrote the following code for uploading a RTF file to SAP R/3 and print the same. However, the problem is , the formatting present in the RTF document( bold/italics..etc) is not being reflected when I do the 'print-preview' after the executing the code below :
    report z_test_upload .
    data: begin of itab occurs 0,
             rec type string,
          end of itab.
    data: options like itcpo.
    data: filename type string,
          count type i.
    data: filetype(10) type c value 'ASC'.
    DATA: HEADER  LIKE THEAD    OCCURS   0 WITH HEADER LINE.
    DATA: NEWHEADER  LIKE THEAD    OCCURS   0 WITH HEADER LINE.
    DATA: ITFLINE LIKE TLINE    OCCURS   0 WITH HEADER LINE.
    DATA: RTFLINE LIKE HELP_STFA OCCURS   0 WITH HEADER LINE.
    DATA:   string_len TYPE i,
            n1 TYPE i.
    selection-screen begin of block b1.
      parameter: p_file1(128) default 'C:\test_itf.rtf'.
    selection-screen end of block b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file1.
      CALL FUNCTION 'F4_FILENAME'
           IMPORTING
                file_name = p_file1.
    start-of-selection.
    move p_file1 to filename.
    call function 'GUI_UPLOAD'
         EXPORTING
              filename                = filename
              filetype                = filetype
         TABLES
              data_tab                = itab
         EXCEPTIONS
              file_open_error         = 1
              file_read_error         = 2
              no_batch                = 3
              gui_refuse_filetransfer = 4
              invalid_type            = 5
              no_authority            = 6
              unknown_error           = 7
              bad_data_format         = 8
              header_not_allowed      = 9
              separator_not_allowed   = 10
              header_too_long         = 11
              unknown_dp_error        = 12
              access_denied           = 13
              dp_out_of_memory        = 14
              disk_full               = 15
              dp_timeout              = 16
              others                  = 17.
    if sy-subrc <> 0.
      message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    loop at itab.
      string_len = strlen( itab-rec ).
      n1 = string_len DIV 134.
      ADD 1 TO n1.
      DO n1 TIMES.
        rtfline-line = itab-rec.
        APPEND rtfline.
        SHIFT itab-rec BY 134 PLACES.
      ENDDO.
    endloop.
    HEADER-TDSTYLE = 'S_DOCUS1'.
    HEADER-TDFORM = 'S_DOCU_SHOW'.
    header-tdspras = 'E'.
    CALL FUNCTION 'CONVERT_TEXT'
      EXPORTING
      CODEPAGE               = '0000'
        DIRECTION              = 'IMPORT'
        FORMAT_TYPE            = 'RTF'
       FORMATWIDTH            = 72
        HEADER                 = header
        SSHEET                 = 'WINHELP.DOT'
        WITH_TAB               = 'X'
        WORD_LANGU             = SY-LANGU
        TABLETYPE              = 'ASC'
      TAB_SUBSTITUTE         = 'X09  '
      LF_SUBSTITUTE          = ' '
      REPLACE_SYMBOLS        = 'X'
      REPLACE_SAPCHARS       = 'X'
      MASK_BRACKETS          = 'X'
      IMPORTING
        NEWHEADER              = NEWHEADER
      WITH_TAB_E             =
      FORMATWIDTH_E          =
      TABLES
        FOREIGN                = RTFLINE
        ITF_LINES              = ITFLINE.
      LINKS_TO_CONVERT       =
    if sy-subrc <> 0.
    endif.
    CALL FUNCTION 'PRINT_TEXT_ITF'
      EXPORTING
         HEADER        = newheader
         OPTIONS       = options
    IMPORTING
      RESULT        =
      TABLES
        LINES         = itfline.
    if sy-subrc <> 0.
    endif.
    Any hints or suggestions to solve this problem will be highly appreciated.
    Thanks,
    Avra

    Hi Vishwas,
    Check out the thread [Efficient way of saving documents uploaded|Re: Efficient way of saving documents uploaded by users; and check the blog by Raja Thangamani.
    Also check the thread [Export Images through Function Modules   |Export Images through Function Modules;.
    Hope it helps you.

  • HT201272 I have always had and used the same Apple ID, so where are the rest of the songs I bought from itunes? I've bought at least 400 songs and I only am being able to download 178. Where are the rest of my purchases?!

    I have always had and used the same Apple ID. I have changed credit card information on my Apple ID account several times though. Does that make a difference when downloading past purchases? I'm very angry at Apple and Itunes because I have been using itunes since 05/2005 and I do not have even close to the amount of songs and albums that I have purchased from itunes. If the credit card info does make a difference even though the account is the same one then itunes needs to make sure to notify users of this because I am not the only one who is wondering this same thing. I have numerous friends who i've talked to about this and they say the same thing, that they too have songs purchased in the past that have disappeared when trying to download past purchased items. It should not make a difference. $12 is $12. Especially since I have ALWAYS used the same account. If itunes does not change their ways, I will not be purchasing songs or anything else for that matter from them ever again. I will go back to buying CDs where I KNOW that it will always be with me and I don't have to deal with this. I will also make sure to find a better more reliable source to download music from and will make sure everyone I know and come in contact with knows what it is and how much better it is than itunes. There should be no experation date on the music I PURCHASE, nor should there be any other little loop holes that allow itunes to rob us of rightfully purchased products. What's the deal itunes?? 

    mannyace wrote:
    Thanks for the response.
    So I basically won't run into any trouble? I
    There should be no issues. Its designed to work like that.  You don't change Apple IDs just because you get a new device.
    mannyace wrote:
    Thanks for the response.
    Is there any chance that the phones can fall out of sync?
    Unlikely. But nothing is impossible.   Though I don;t see how that would happen. As long as both are signed into the Same Apple ID / iCloud Account they will be N'Sync. (Bad Joke)
    mannyace wrote:
    Thanks for the response.
    If I get a message or buy an app or take a photo on the iPhone 5, how do I get those things onto the iPhone 6?
    If you buy an App, you have 2 ways to get it to the iPhone6: If Automatic Downloads is enabled in Settings->iTunes & App Store, it will automatically download to the iPhone 6 when you buy it on the 5 and vice versa if you buy it on the 6, it will download to the 5.
    Alternatively, you can simply go to the App Store App->Updates->Purchased and look for the App there and download it. Purchased Apps will not require payment again. i.e They'll be free to download to the iPhone 6 once purchased.
    SMS Messages will sync over using Continuity as long as they are on the same Wifi network. Otherwise, restoring the iPhone 5 backup to the iPhone 6 will transfer all messages received up until the backup was made onto the iPhone 6.
    Images, can be transferred either through Photo Stream
    My Photo Stream FAQ - Apple Support
    Or any Cloud service you want such as Dropbox, or One Drive.
    mannyace wrote:
    Also, something i forgot to ask initially: Should I update the iPhone 5 to iOS 8 first or does that not matter?
    If you want the Continuity features as explained above you need to update the iPhone 5 to iOS 8. Otherwise its not all that important.

  • Itunes keeps downloading the same songs over and over again on a shared library

    I have a share library on a NAS box, and until now, little problem. But now, iTunes keeps downloading the same songs etc, when I go to another PC, even though the library is shared between the other PC, is the same.
    Plus, iTunes repeatably asks for my Password to log in, even though it is correct.
    Share Library on NAS box, mapped drive paths to drive letters.
    Keeps re-downloading songs and podcasts I all ready have on the NAS box, if I open iTunes on different computer.
    This is new behaviour. Has not happend like this till today.
    Keeps asking for my iTunes ID and Password, over and over again, evertime I run iTunes, or my iPod.
    Thanks in advance.

    Adriana,
    If your .mac account is set to be type .mac (don't laugh, it can be set to be POP, or IMAP), it functions essentially like an IMAP. As a .mac, the Inbox is actually on the server, and when you display the Inbox, you are displaying everything on the server. Any downloading you observe is purely for purposes of display, according to what selections you have made in Mail Preferences. What you report seems perfectly normal, for a .mac account, and for an IMAP account.
    Often an exchange account is also an IMAP account, and thus the behavior would seem normal for that type of account.
    Again the Inbox is on the Server, and not on your Mac. Do not confuse this with selecting to Keep copies for Offline viewing -- those copies are refreshed from the server whenever you sign on.
    Neither a .mac nor IMAP account folder will contain a MessageUidsAlreadyDownloaded file . However, your POP folder should have such a file or two, to control duplicate downloads of messages remaining on the server -- POP was originally designed to remove upon download, but now that many people use more than one computer, it is logical to sometimes leave messages on the server to be download onto other computers.
    In the Finder, open Home/Library/Mail and look for a folder named to begin with POP and including the server and/or email address in the name. If there is not a POP folder, then the account has NOT been set up to be something other than POP. If there is a POP folder, it should contain the MessageUidsAlreadyDownloaded.
    More info, please.
    Ernie

  • Download error. Tap to retry.     Why? I have a wifi and still the same message?

    Download error. Tap to retry.... Why? I have a wifi connection and still the same message, and even connected to desktop the same for ipad. Help :-)

    I'm getitng the same thing.  I'm beyond sick of this iPad.  It's a third generation Retina Display and it turned into a pile of cat turds after iOS 7.  It got so bad I restored it and used iCloud. It was still god awful.  I restored it and didnt use the iCloud backup and hoped that whatever was wrong would be avoided....nope.  IF I can get a download going it nearly kills my entire iPad.  I will open the cover and wait over 30 seconds just for the screen to light up.  I will hit the home button to close an app and wait nearly a minute in some cases for it to actually close.  Then to top off all the annoyances it just fails and loops over and over. 
    I bought Apple products to avoid stuff like this.  Very unhappy.

Maybe you are looking for

  • [Guide] How to install windows 8 on U410 IdeaPad SSD

    Hi All, Please find below description of how i got windows 8 pro installed on my ideapad u410 SSD. 1. Get windows Pro - I just got the upgrade from Microsoft it is available in several places 2. Call MS customer support to get the ISO image for windo

  • How can i share itunes content with my family?

    I just got an iPhone and gave my sister my iPod touch. Is there any way can we share our apps/music with each other? I was going to use home sharing but from what I've read both users have to be on the same wifi network and we'll only be in the same

  • DOM: NoClass Def error

    I am trying to output a node name from an XML file using Xerces DOM, to a servlet. I keep getting the error I posted below. Can anyone assist?? This is my program: import org.apache.xerces.parsers.DOMParser; import java.io.FileNotFoundException; impo

  • Error in Mapping: Huge Payload

    Hi, I have got following error in my mapping and the payload is very huge (real time data) When I try to copy this payload to IR test space it hangs. It seems there is a data error for company code but I can't figure out which Details company code ha

  • User - Internal User Concept in Portal

    I’m wondering it it is possible to configure sap portal in the following manner: -          User “Kris_unni” logs into the portal by Credentials “KU” / password - Behind this userobject there are 2 fields defined (user, internal_user) with values (“K