How to download adobe form in sap inbox and process it

Hello experts,
I have a query like how we can download the adobe forms in sap inbox and process process the forms using some program which will convert form data in to XML.
thanks in advance.

Hello Samad arif,
May be you can reuse the code that placed in this document to covert the PDF form to XML format.
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c2567f2b-0b01-0010-b7b5-977cbf80665d
Thanks,
Bharath.K

Similar Messages

  • Sending the adobe form to SAP inbox with data (on submit action)

    Hi,
    I am fectching the data from the database table in WDDOINIT method and displaying it on the form. Now my requirement is that, on the action SUBMIT, I have to send this Form to SAP user inbox.
    I wrote a code to send the form as pdf attachment by giving the form name.. but the data are not passed. only the form goes to the sap inbox.
    My question is,  how to send the form as pdf attachment with the data that are fetched...?

    Hi,
    create the parameter FP_FORMOUTPUT as IMPORT parameter structure FPFORMOUTPUT and t_att_content_hex parameter is as XSTRING.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          BUFFER                = FP_FORMOUTPUT-pdf
    *   APPEND_TO_TABLE       = ' '
    * IMPORTING
    *   OUTPUT_LENGTH         =
        TABLES
          BINARY_TAB            = t_att_content_hex
    For sending code as PDF attachment to SAP Inbox
    CLASS cl_bcs DEFINITION LOAD.
      DATA:
      lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL.
      lo_send_request = cl_bcs=>create_persistent( ).
    * Message body and subject
      DATA:
      lt_message_body TYPE bcsy_text VALUE IS INITIAL,
      lo_document TYPE REF TO cl_document_bcs VALUE IS INITIAL.
      APPEND 'Dear,' TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Please fill the attached form and send it back to us.'
      TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Thank You,' TO lt_message_body.
      lo_document = cl_document_bcs=>create_document(
      i_type = 'RAW'
      i_text = lt_message_body
      i_subject = 'Personnel Information Form' ).
      DATA: lx_document_bcs TYPE REF TO cx_document_bcs VALUE IS INITIAL.
      TRY.
          lo_document->add_attachment(
          EXPORTING
          i_attachment_type = 'PDF'
          i_attachment_subject = 'Personnel Information Form'
    * I_ATTACHMENT_SIZE =
    * I_ATTACHMENT_LANGUAGE = SPACE
    * I_ATT_CONTENT_TEXT =
    * I_ATTACHMENT_HEADER =
          i_att_content_hex = t_att_content_hex ).
        CATCH cx_document_bcs INTO lx_document_bcs.
      ENDTRY.
    * Add attachment
    * Pass the document to send request
      lo_send_request->set_document( lo_document ).
    * Create sender
      DATA:
      lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
      l_send type ADR6-SMTP_ADDR value 'provide Email id here'.
      lo_sender = cl_cam_address_bcs=>create_internet_address( l_send ).
    * Set sender
      lo_send_request->set_sender(
      EXPORTING
      i_sender = lo_sender ).
    * Create recipient
      DATA:
      lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL.
      lo_recipient = cl_sapuser_bcs=>create( sy-uname ).
    * Set recipient
      lo_send_request->add_recipient(
      EXPORTING
      i_recipient = lo_recipient
      i_express = 'X' ).
    *  lo_send_request->add_recipient(
    *  EXPORTING
    *  i_recipient = lo_recipient
    *  i_express = 'X' ).
    * Send email
      DATA: lv_sent_to_all(1) TYPE c VALUE IS INITIAL.
      lo_send_request->send(
      EXPORTING
      i_with_error_screen = 'X'
      RECEIVING
      result = lv_sent_to_all ).
    Thanks.

  • Advantages of Adobe Form Vs Sap Scripts and smart forms

    Hi All,
    Can any body explain me clearly what are advantages of Adobe forms when compared to sap scripts and smart forms
    Regards,
    Venkat

    Refer to two Links below you will get all your answer
    /people/markus.meisl/blog/2006/12/22/a-pdf-form-or-not-a-pdf-form--that-is-the-often-the-question
    https://www.sdn.sap.com/irj/sdn/adobe
    Cheers
    Satya

  • How to download Adobe Premier Elements 10.0 and Adobe Photoshop Essentials 10.0

    Two years ago or thereabouts I purchased Adobe Photoshop Essentials 10.0 ande Adobe Premier Elements 10.0.  I lost the disk.  I want to download the programs from the internet.  I have my serial numbers.

    I'm not exactly sure what 'Essentials' is, but you can get Photoshop Elements 10 and Premiere Elements 10 from https://helpx.adobe.com/download-install.html in the 'Downloads for older versions' section.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Download Adobe-Form to PDF-File in Background

    Hi,
    I have developed an Adobeform which should be processed with a SM37-Job in background.
    Is it possible to export the document as pdf to a Share on the filesystem?
    thanks & best regards
    Frank

    Uploading and downloading adobe forms in sap report program This thread contains the answer,
    let me extract it for you:
    1. Use the FM 'FP_FUNCTION_MODULE_NAME'
    * Get the name of the generated function module
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
         i_name       = 'ZAD_FORMNAME'
        IMPORTING
       e_funcname = V_FMNAME.
    2. Call the generated function module to generate the pdf.
    CALL FUNCTION lv_fmname
          EXPORTING
              /1bcdwb/docparams  = s_docparams
          IMPORTING
             /1bcdwb/formoutput   = s_form_output
          EXCEPTIONS
             usage_error   = 1
             system_error       = 2
             internal_error     = 3.
    3. The above structure 's_form_output' will have the PDF output in the XSTRING.
    4. Use the FM - SCMS_XSTRING_TO_BINARY to convert the XSTRING to binary.
    5. Finally call the GUI download Function Module or Method -
    CALL METHOD cl_gui_frontend_services=>gui_download 
    The above explanation was written by Raja Babu - all credit to him.

  • Error while downloading  adobe form layout  in sap

    Hi all,
    When I try to download adobe form it is showing the following pop up boxes and not allows me to download the layout .Please suggest me how to solve this issue.
    Thank You,
    Suneel.

    Hi Suneel,
    it seems like its an issue with permissions.
    Make sure your user has permission to write (save) a file to your computer.
    Adam

  • How to install adobe forms

    Hi Experts.
    Kinldy tell me how to install adobe forms ...

    Hi
    Just follow these links.
    https://www.sdn.sap.com/irj/sdn/adobe
    http://help.sap.com/saphelp_nw70/helpdata/EN/c8/4adf7ba13c4ac1b4600d4df15f8b84/content.htm
    Hope this will help you.
    Regards:'
    Alok

  • Hi Experts, how to copy adobe form to a Z form? see details, thanks.

    Hi Experts,
    how to copy adobe form to a Z form? becuase when I click copy and enter the z form name and click ok, then I got an internal error occured SAP FP API, what is wrong? can anyone tell me the correct way to copy a standard adobe form? thanks in advance!
    Kind regards
    Dawson

    Hi Dawson,
    I have just done the same, but i couldnt get any error, its suceesfully asking for Dev class and saving.
    I suggest you to show this msg to your basis guy, he is the person who has to help you out.
    Regards,
    Sujatha

  • Weird character 'u00A4' display  at output of  ADOBE form in SAP for amount

    When display pattern for amount field is set for ADOBE form in SAP, output displays ' ¤ '.
    All display patterns shows '$' at the begining, but when output is generated it displays '¤'.
    Advice me how to eliminate this. (or)
    Is there a way to hide this character.

    I am not saying this is your problem BUT I was troubled for quite a while by having unprintable characters imbedded within text fields.  It turns out that Ctrl V character was being embedded within text by user.
    So I suggest that you view the data while in debug and do it in hex.  This was the only way I was able to see that I had a problem with the text itself.  Then I was able to add logic to filter for these errors.

  • How to download a form from the web, complete and save it?

    How to download a form from the web, complete and save it?

    Download Adobe Reader. If the form author allows filling out digitally, you can do so and save it again.
    Mylenium

  • How to download adobe flash player onto MacBook pro

    Hi, can anyone tell me how to download adobe flash player onto my new MacBook Pro with retina display please?
    I don't know what operating system it has?

    If you've a new Retina display MacBook Pro, it probably shipped with Mavericks - you can confirm this by going to the Apple on the menu bar and selecting "About This Mac...." if it says system 10.9 or 10.9.1, you're on Mavericks.
    To install Flash Player, you must first download it from Adobe -> http://get.adobe.com/flashplayer/. After the download is complete, you should have a file with a .dmg extension in your Downloads folder. Double-click this file and it will 'mount' as if it is a disk. There will be a 'package' inside and you must double-click this to actually install Flash Player.
    Once Flash Player is installed, restart your computer and then open your browser. You should now be able to view Flash content.
    Good luck,
    Clinton

  • HT1338 how to download adobe reader on macbook pro

    how to download adobe reader on macbook pro?

    First of all, I want you to know that Mac OS X already has the ability to open and read PDF files. You do it with the Preview application. Also, on the Mac Adobe Reader is the third most vulnerable application to security risks. That is due to exploit are delivered through PDF files.
    If you decide to download it you should still stick to using Preview to open PDF files and only use Adobe Reader in the few cases that Adobe Reader is absolutely required. Preview is not vulnerable to the same exploits as Adobe Reader because it does not have all the capabilities as Adobe Reader.
    To get Adobe Reader go to: http://get.adobe.com/reader/
    Click on the download button. Once the download completes install the software.

  • How to download Adobe Premiere pro CS5 for windows to my new imac 27 inch

    How to download Adobe Premiere pro CS5 for windows to my new imac 27 inch

    IMHO Windows would be the place to start.
    Why do you want to load CS5 for Windows?
    Adobe does produce a version of CS5 that runs on OS X so that it would not be necessary for you to have to screw around with Windows. Personally that would be the way to go and avoid the hassles of Windows.
    Allan

  • How to download adobe acrobat Professional 10.0 setup

    Dear Sir or Madam,
           I Have Licence so how to download adobe acrobat Professional 10.0 setup.
    forumnotifier

    Hi Tech-ali,
    Please use the below direct link.
    http://prodesigntools.com/adobe-cs6-direct-download-links.html
    Please make sure to complete the Very Important Instructions section prior to clicking on the download link.
    Thanks

  • How to download adobe acrobat 11's free trial?

    How to download adobe acrobat 11's free trial? Error massage says that file isinjured and therefore, it can not be installed. I have tried more than 10 times but it did not work

    Try downloading it from https://helpx.adobe.com/acrobat/kb/acrobat-downloads.html
    If you still have problems, tell us your operating system, and the exact downloaded file size.

Maybe you are looking for

  • Need help in installing a SATA hard drive with 865pe NEO2

    Hello there I need a help in installing a Sata hard drive ,it is WD 250 GB , my motherboard is 865PE Noe2 , the bios is the latest one already I got another old hard drive ,not a Sata ,a regular IDE one installed as a master hard drive I want to inst

  • Java.lang.NullPointerException

    hi, Im trying to run a application Transfer.java which uses a middleware XML-DBMS to transfer XML data to the Oracle database.Transfer.java compiles without any errors but when i try to run it it gives the 'java.lang.NullPointerException'.I dont know

  • Can't get to email without upgrade?

    I have been offline for almost 2 years. now I'm back on and When I try to check email, I get a pop up telling me that to get the best use of the new services that I should upgrade my osx. when I try to do this I'm told there is not enough room to do

  • TopLink Essentials: Using spring session scope on the EntityManagerFactory

    Hi, In one of our projects we are trying to utilize the 2nd level cache of TopLink Essentials. The server code is using the Spring (2.0.7) and is deployed to a web container. We are using a Java client and serializes every object between the client a

  • I bought U2 iPod 12/29.U2 code expired 12/25.  Anyone else?  What can I do?

    Hello, I bought the U2 iPod yesterday, 12/29. It came with a code to redeem at the iTunes store for a free 30 min. U2 video. The code had expired 12/25. Did this happen to anyone else? What do you suggest I do? Thanks, Marc PC   Windows 2000   PC   W