Photo from Pa30 into Adobe Forms.

Hello,
We have uploaded the photos of Employees in HR server.
Now in the Adobe Forms, we needs to fetch these photo's and display.
Is it possibe?
I know that through webdynpro , we can pass the photo as Xstring and display in Adobe form.
We want in the Adobe form directly call the photo which is stored in Pa30 & display without using the intermeidate webdynpro.
How this can be acheived?
Regards,
Dadarao.

Hello,
WD does not have any important role in passing a photo to Adobe form. I guess you want to print some "personal card" type form, right? I have developed many of these. A good source of information is How Tou2026 Integrate ADOBE form on WebdynPro for ABAP and Deploy it on portal by Bhawanidutt Dabral. Not because of the WD part, but because the way how to send the photo into the form is described here. Just in case you have any difficulties in finding it, I can copy the important part for you here:))
Currently we will Hard Code the fields Vorna and Nachn and will use the standard method to get the photographs form SE78 (Form Graphics). Add this piece of code
  CONSTANTS:    c_graphics    TYPE   tdobjectgr  VALUE 'GRAPHICS',
                c_bmap        TYPE   tdidgr      VALUE 'BMAP' ,
                c_bcol        TYPE   tdbtype     VALUE 'BCOL'.
Get the Photographs.
  lv_pernr1 = '00000028'. " Employee Number
  CALL METHOD cl_ssf_xsf_utilities=>get_bds_graphic_as_bmp
    EXPORTING
      p_object       = c_graphics
      p_name         = lv_pernr1
      p_id           = c_bmap
      p_btype        = c_bcol
    RECEIVING
      p_bmp          = ls_z_if_test_cv-im_photo
    EXCEPTIONS
      not_found      = 1
      internal_error = 2
      OTHERS         = 3.
You need to use the XSTRING type variable in your form interface/ context and use Image field component (not only Image!!) in your Adobe form. If you don´t like this solution (which is simple and really nice) you can work with the URLs of the pictures and pass these URLs into the form, but that would be troublesome because there is a problem to include the picture into the form, how to get the pictures URL etc.
I hope this solves your problem, Otto

Similar Messages

  • How to import select photos from Iphoto into Adobe Elements

    How to import select photos from Iphoto into Adobe Elements

    If you wish to import in Elements Organizer here is the guide to help you out with all you need to use iPhoto and Organizer. http://helpx.adobe.com/elements-organizer/using/import-media-iphoto-library-mac.html
    If you wish to set PSE Editor as your editor for iPhoto images then here is the help link to guide you for the same - http://helpx.adobe.com/photoshop-elements/kb/photoshop-elements-iphoto-mac-os.html
    Hope it helps.
    Thanks,
    Garry

  • Dynamic Image (.gif) from URL into adobe Form by SFP

    Hi all
    I post the comment of Shamila because I have the same problem
    I need to place an image in the Adobe form based on the url.
    I have written the following formcalc script in the image field form ready action
    ImageField1.value.image.href = "http://www.adobe.com/imageshome/pdfgift_home.gif"
    But when i view the form , the image field is empty, and when i click on the blank space of the image field, a popup appears to select the image............
    How can i show the image from url in the form..........
    Regards,

    Hello,
    have you checked these basics documents?
    When you need to send a picture into the offline form: another image question - using Regular ABAP not web dynpro and Display a logo dynamically in adobe form
    Where to start with scripting: http://www.adobe.com/devnet/livecycle/articles/lc_designer_scripting_basics/lc_designer_scripting_basics.pdf
    http://help.adobe.com/en_US/livecycle/es/FormCalc.pdf
    Also try: Re: Dynamic R/3 Image URL in Adoeb Form
    regards, Otto

  • Hi, After migration of smart form into adobe form, while checking( syntax )

    hi,
    After migration of smart form into adobe form, while checking( syntax ) the error message will be displayed like the Sender Country is not filled. if i fill the sender country then only the adobe form activate but no sender country is provided in smart form. how can we rectify this problem in migration of smart form into adobe forms ( Address node ).
    sender country is not mandatory in smart form but comes into adobe form it is mandatory. How can we handle this type of issues.
    Thanks&regards,
    Ashok Reddy

    I too have the same query..to check Adobe form after migrating from smartform.
    Can anybody answer in this regard?
    Thanks in advance..

  • Opening photo from bridge into photoshop converts to smart object

    Instead of opening the psd-file normally from bridge into photoshop the file converts to smart object.
    I used to work with CS3 where double-clicking in Bridge on a psd-file would open it in Photoshop. Now, when I double click in Bridge (CS6) it opens a "quick time pro" file, which I definitely don't want. When I use the right mouse to "place in Photoshop" it does so, but then automatically converts the file into a smart object, which I don't want either. What need I do to open a psd-file in Bridge as normal psd-file in Photoshop?
    Thanks in advance for help.
    EVAMLG0507

    Hi C. Pfaffenbichler
    yes, there is a "Photoshop Document" in the list, but it has not
    association. when I click on the little arrow on that line it "searches"
    and shows all the files in the "program X86" on the C-drive. but I don't
    know what to associate it with, or said differently, I don't know what file
    in "programX86" to associate it with.
    EVAMLG0507
    2012/9/4 c.pfaffenbichler <[email protected]>
       Re: opening photo from bridge into photoshop converts to smart object created by
    c.pfaffenbichler <http://forums.adobe.com/people/c.pfaffenbichler> in *Photoshop
    General Discussion* - View the full discussion<http://forums.adobe.com/message/4671500#4671500

  • How to convert smartforms into Adobe forms.

    Hi......
    How to convert smartforms into Adobe forms.
    Regards
    Anbu B

    Hi,
    You need to use the Function Module CONVERT_OTF.
    Please check the below code
    REPORT zsuresh_test.
    Variable declarations
    DATA:
    w_form_name TYPE tdsfname VALUE 'ZSURESH_TEST',
    w_fmodule TYPE rs38l_fnam,
    w_cparam TYPE ssfctrlop,
    w_outoptions TYPE ssfcompop,
    W_bin_filesize TYPE i, " Binary File Size
    w_FILE_NAME type string,
    w_File_path type string,
    w_FULL_PATH type string.
    Internal tables declaration
    Internal table to hold the OTF data
    DATA:
    t_otf TYPE itcoo OCCURS 0 WITH HEADER LINE,
    Internal table to hold OTF data recd from the SMARTFORM
    t_otf_from_fm TYPE ssfcrescl,
    Internal table to hold the data from the FM CONVERT_OTF
    T_pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE.
    This function module call is used to retrieve the name of the Function
    module generated when the SMARTFORM is activated
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    formname = w_form_name
    VARIANT = ' '
    DIRECT_CALL = ' '
    IMPORTING
    fm_name = w_fmodule
    EXCEPTIONS
    no_form = 1
    no_function_module = 2
    OTHERS = 3
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Calling the SMARTFORM using the function module retrieved above
    GET_OTF parameter in the CONTROL_PARAMETERS is set to get the OTF
    format of the output
    w_cparam-no_dialog = 'X'.
    w_cparam-preview = space. " Suppressing the dialog box
                                                        " for print preview
    w_cparam-getotf = 'X'.
    Printer name to be used is provided in the export parameter
    OUTPUT_OPTIONS
    w_outoptions-tddest = 'LP01'.
    CALL FUNCTION w_fmodule
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    control_parameters = w_cparam
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    output_options = w_outoptions
    USER_SETTINGS = 'X'
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    job_output_info = t_otf_from_fm
    JOB_OUTPUT_OPTIONS =
    EXCEPTIONS
    formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4
    OTHERS = 5
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    t_otf[] = t_otf_from_fm-otfdata[].
    Function Module CONVERT_OTF is used to convert the OTF format to PDF
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    FORMAT = 'PDF'
    MAX_LINEWIDTH = 132
    ARCHIVE_INDEX = ' '
    COPYNUMBER = 0
    ASCII_BIDI_VIS2LOG = ' '
    PDF_DELETE_OTFTAB = ' '
    IMPORTING
    BIN_FILESIZE = W_bin_filesize
    BIN_FILE =
    TABLES
    otf = T_OTF
    lines = T_pdf_tab
    EXCEPTIONS
    ERR_MAX_LINEWIDTH = 1
    ERR_FORMAT = 2
    ERR_CONV_NOT_POSSIBLE = 3
    ERR_BAD_OTF = 4
    OTHERS = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    To display File SAVE dialog window
    CALL METHOD cl_gui_frontend_services=>file_save_dialog
    EXPORTING
    WINDOW_TITLE =
    DEFAULT_EXTENSION =
    DEFAULT_FILE_NAME =
    FILE_FILTER =
    INITIAL_DIRECTORY =
    WITH_ENCODING =
    PROMPT_ON_OVERWRITE = 'X'
    CHANGING
    filename = w_FILE_NAME
    path = w_FILE_PATH
    fullpath = w_FULL_PATH
    USER_ACTION =
    FILE_ENCODING =
    EXCEPTIONS
    CNTL_ERROR = 1
    ERROR_NO_GUI = 2
    NOT_SUPPORTED_BY_GUI = 3
    others = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Use the FM GUI_DOWNLOAD to download the generated PDF file onto the
    presentation server
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE = W_bin_filesize
    filename = w_FULL_PATH
    FILETYPE = 'BIN'
    APPEND = ' '
    WRITE_FIELD_SEPARATOR = ' '
    HEADER = '00'
    TRUNC_TRAILING_BLANKS = ' '
    WRITE_LF = 'X'
    COL_SELECT = ' '
    COL_SELECT_MASK = ' '
    DAT_MODE = ' '
    CONFIRM_OVERWRITE = ' '
    NO_AUTH_CHECK = ' '
    CODEPAGE = ' '
    IGNORE_CERR = ABAP_TRUE
    REPLACEMENT = '#'
    WRITE_BOM = ' '
    TRUNC_TRAILING_BLANKS_EOL = 'X'
    WK1_N_FORMAT = ' '
    WK1_N_SIZE = ' '
    WK1_T_FORMAT = ' '
    WK1_T_SIZE = ' '
    IMPORTING
    FILELENGTH =
    tables
    data_tab = T_pdf_tab
    FIELDNAMES =
    EXCEPTIONS
    FILE_WRITE_ERROR = 1
    NO_BATCH = 2
    GUI_REFUSE_FILETRANSFER = 3
    INVALID_TYPE = 4
    NO_AUTHORITY = 5
    UNKNOWN_ERROR = 6
    HEADER_NOT_ALLOWED = 7
    SEPARATOR_NOT_ALLOWED = 8
    FILESIZE_NOT_ALLOWED = 9
    HEADER_TOO_LONG = 10
    DP_ERROR_CREATE = 11
    DP_ERROR_SEND = 12
    DP_ERROR_WRITE = 13
    UNKNOWN_DP_ERROR = 14
    ACCESS_DENIED = 15
    DP_OUT_OF_MEMORY = 16
    DISK_FULL = 17
    DP_TIMEOUT = 18
    FILE_NOT_FOUND = 19
    DATAPROVIDER_EXCEPTION = 20
    CONTROL_FLUSH_ERROR = 21
    OTHERS = 22
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thanks,
    Ruthra

  • How do i import photos from iPhoto into LR5?

    how do i import photos from iPhoto into LR5?

    ldechiara21 wrote:
    how do i import photos from iPhoto into LR5?
    For a quick look, or are you trying to migrate?
    If the former, then "what Jim Hess said". If the latter, then do tell...

  • I was loading a big file of photos from iPhoto to Adobe Photoshop CS3 and it keep collapsing, yet each time I reopen photoshop it load the photos again and cal laps again. is there a way to stop this cycle?

    I was loading a big file of photos from iPhoto to Adobe Photoshop CS3 and more then midway it keep collapsing, yet each time I re-open photoshop to load a small amount of photos, it load the previous photos again, and again it collapse. is there a way to stop this cycle and start a new?

    http://helpx.adobe.com/photoshop.html

  • TS3989 When I try to add photos from PhotoStream into my iPhoto Library a message appears asking to view the photo in the library (as if it were already imported).  When I click View it brings me to my iPhoto library but the photo(s) are not there?

    Hopefully someone can help me with my question.  When I try to add photos from PhotoStream into my iPhoto Library a message appears asking to view the photo in the library (as if it were already imported).  When I click View it brings me to my iPhoto library but the photo(s) are not there?

    When I try to add photos from PhotoStream into my iPhoto Library a message appears asking to view the photo in the library (as if it were already imported).
    How exacly are you trying to import from the Photo Stream? Dragging from the stream to the events? Ctrl-clicking or right clicking?
    If "Show in Library" does not show the event, then your iPhoto Library may need repairing or rebuilding;  try to run the iPhoto Library First Aid Tools, if you have not already done so. See this post by Old Toad on how to do it:    Rebuild iPhoto Library Version 11:
    Regards
    Léonie

  • When I insert a photo from iPhoto into my iMovie, the photo that appears in the movie is different from the one that I inserted - why is this and how can I make it work properly?

    When I insert a photo from iphoto into imovie, the photo that appears is different from the one that I inserted.  Why is this and how can I make it work properly?

    WHat version of iMovie, and iPhoto?
    THIs forum is for iMovie iOS (iPads, iPhones).
    Are you talking about iMovie for Mac?

  • Migration of smartforms into adobe forms

    hi,
           After migration of smart form into adobe form,  while checking( syntax )  the error message will be displayed like the Sender Country is not filled.  if i fill the sender country then only the adobe form activate but  no sender  country is provided in smart form. how can we rectify this problem in migration of smart form into adobe forms ( Address node ). 
    sender country is not mandatory in smart form but comes into adobe form it is mandatory. How can we handle this type of issues.
    Thanks&regards,
    Ashok Reddy

    Hi Aravind
    Have you checked the following threads before posting
    Smartforms or Adobe Interactive Forms?
    Regards
    Sachin

  • Importing photos from iphoto into idvd

    I am trying to import photos from iphoto into idvd for a slideshow. When the photos move into idvd they are not in the same order as they were in the iphoto library. What could be the possible cause of this?? I did go into iphoto and place comments in after the fact. Would that have anything to do with it?

    Try this possible solution from acgray on Mac OS X Hints:
    I have worked with many users who like to take iPhoto albums and make DVDs of them with iDVD. However, one very annoying bug (feature?) has to do with the fact that when you are in iDVD, it randomizes the sort order of the Photos in your album. Not only that, but it is painstaking and time consuming changing the order in iDVD.
    My solution..
    Select All in the album in iPhoto you want to use in iDVD as a slideshow. Then use File -> Export -> File Export. The secret is to select "Use Album Name" as this will rename the images in sequential order, based on the order that you put them in. Save them in their own new folder somehwere easy to find (ie on the Desktop).
    Then, in iDVD, either drag, or I believe you can import the entire folder into the Slideshow project window, and voila! your slides are in order. I believe you can throw away the folder with the exported images as they should now be saved into the Project, but don't quote me on that.
    Here are a few other helpful links on this topic:
    http://discussions.apple.com/thread.jspa?messageID=8967410&#8967410
    http://discussions.apple.com/thread.jspa?messageID=9159493&#9159493
    http://discussions.apple.com/thread.jspa?messageID=10963514&#10963514
    http://www.kraehe21.de/iptja/
    Hope the above suggestion/s help but if not just come on back.
    Message was edited by: SDMacuser

  • Does anyone know how to take photos from IPHOTO into Lightroom?

    does anyone know how to take photos from IPHOTO into Lightroom?

    Because Apple has dropped "Aperture" and is switching users away from "iPhoto" to a new photo application called "Photo" so that they are more fully integrated with the Yosemite 10 and the iOS 8.3 going forward there are some instructions how to import photos into Lightroom without losing to much metadata or other information. Go under Lightroom help and follow he instructions.

  • Trying to click and drop photos from iPhoto into an Empty SD card. all I am getting isThe item "IMG_0346.JPG" can't be copied because there isn't enough free space. Card is 156 MB Photo is 1.56MB. Help please.

    Trying to click and drop photos from iPhoto into an Empty SD card. all I am getting isThe item “IMG_0346.JPG” can’t be copied because there isn’t enough free space. Card is 156 MB Photo is 1.56MB. Help please.

    Select the photo(s) in iPhoto and export to a desktop folder (file menu ==> export) - see this user tip for export options - then be sure the card is not locked and in the finder verify available space and if it is adaquate drag that folder to it
    LN

  • HT1338 I have added photos from iPhoto into Photo Stream and enabled my iCloud but I can't see any uploaded photos. Does this sound right?

    I have added photos from iPhoto into Photo Stream and enabled my iCloud but I can't see any uploaded photos. Does this sound right?

    Enable PhotoStream in iCloud first, then add the photos to PhotoStream in iCloud. Of course, you will need PhotoStream also enabled on your other devices also in order to view them.

Maybe you are looking for