Change the PDF form In HAP_DOCUMENT

Hi Experts,
1)I have a requirement wherein i need to change the pdf form that is generated when we click on download button in hap_document bsp application. I need to use the custom PDF form in place of the actual PDF form. How can i acheive this?
2) In the layout, i want to replace some part of the screen with an interactive adobe form how to acieve this?
Thanks and Regards,
  Madhu.

This should not be handled by ABAP. If they were able to change it in the sales documents, they should be able to cancel the invoice in VF11 and create another one. That's the best practice.

Similar Messages

  • Changing the background of the pdf form in runtime.

    Dear All,
    I want to change the background of the pdf form in runtime. But I don't need to change the fillcolor. I want to change the background by using the pdf file. That means I want to switch the background of the pdf form on click events.
    I don't know this is possible or not.
    If anybody know how to solve this problem Please suggest me.
    Thank you
    saroj neupane

    I do not believe that it is possible.

  • Multiple users signing the pdf form

    I have date fields in the pdf form in which the signed date is inserted when each user signs the form. Although the Digital Signature property in pdf provides date property on the signature image. But we have a business requirement to show date field separately on pdf form. Suppose User1 signs the application and the date is inserted in its corresponding date field. But when User2 signs the application and the date is inserted the signatures of User1 gets invalidated.
    Is there any way by which pdf field can be made editable even after one user signs the application?

    PDF supports multiple signatures on a single form or document.  When using a form, you can use field collections to associate specific fields to a certain signature and lock those fields after signing, while leaving other fields accessible.  There are many posts throughout this forum that discusss this functionality, here is one...  http://forums.adobe.com/thread/769340
    As for signature status, applying a second signature (or more) after a form or document has been signed will NOT invalidate the original signature, however it will change the status of the original signature to something like "Valid with signed changes".  Each subsequent signature will change the status of the previous signature, but this is not the same as invalidating a signature.
    This behaviour is by design as a signature applied to a PDF signs the entire byte range of the PDF, not just a portion of it.
    Regards
    Steve

  • Download the PDF Form as a attachment when button click in BSP application

    Hi All,
    I have scenario, when button click in the BSP application PDF Form want to download in the IE (like one window open with Open,Save and cancel button).
    I have written this code:
    data: pdf type fpformoutput-pdf.
    < Logic for populate value to pdf field ....
    .>
    response->set_header_field(
                         name  = 'cache-control'
                         value = 'max-age=0' ).
      response->set_header_field(
                         name  = 'content-disposition'
                         value = 'attachment; filename=webforms.pdf' ).
      response->set_data( data   = pdf ).
    Once button is clicked pop up is opened and closed automatically because of browser or adobe reader issue.
    How can I resolve this problem ?
    In the IE i need to change any settings ?
    IE version = 7.0
    Adobe reader = 9.0
    I have tried in the same code with IE = 6.0 and adobe reader 8.1.2 its getting download the pdf form working fine.
    The same think i want in IE 7.0 and adobe reader 9.0, what needs to be done ?
    Regards,
    Boopathi M

    Hello Ravi,
    Best would be to bind the dataSource of the InteractiveForm ui element to the parent node containing the table's data. Then specify a name of a template to be created in the templateSource and hit <enter>. Some popups later, the system will have created a template from the structure of the context. All you need to do now is to drag&drop the data structure inside the template designer to the template itself. This will result in a table. Save, activate and return the Web Dynpro view. Don't forget to unbind the pdfSource and enjoy.
    Best regards,
    Thomas

  • I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    You can set up a temporary button (or link, bookmark, etc.) and add the following JavaScript action:
    // Mouse Up script for a temporary button (or bookmark, etc.)
    // Change the font and font size for all text fields in this document
    for (var i = 0; i < numFields; i += 1) {
        var f = getField(getNthFieldName(i));
        if (f.type === "text") {
            f.textFont = font.Helv;
            f.textSize = 9;
    It also sets the font size, but you can remove that line if you don't need to do that.

  • How to display all PO data in the PDF form?

    Hi,experts,
    I create a WDJ application with the PDF form for print all PO sheet.
    I can transfer all data from WDJ to PDF form.
    I need continuous print all PO sheet that include header and items.
    After I run the application, I found only the one PO header and one items in the PDF FORM.
    I think the config of the adobe form is error.
    The version of the adobe livecycle designer is 7.1.
    Do you give me some hint?
    Best regards,
    tao

    Hi, Chintan,
    Thanks a lot for your reply so quickly.
    I have check the config of the "Repeat Row for each item" according your word.
    I change the checkbox of the "Repeat Row for each item" for the PO items, and the PO items is ok after I run the application.
    But the pdf is only one PO sheet, not all PO sheet.
    I found the  checkbox of the "Repeat Row for each item" is unabled in the HEADER subform. I think it is the cause for the problem.
    But I don't know how to enable the  HEADER subform because the check box of the "Repeat Row for each item" is unable in the subform of the header.
    Do you give me some hint? Thanks a lot for your help!!!!!
    Best regards,
    tao

  • Employee photo is not Displaying on the PDF form

    Hello Experts,
      We have a static form and passing the form data and photo repository URL (Used FM to get the URL of the photo 'HRMSS_RFC_EP_READ_PHOTO_URI' ) to the form.  And all these sent to ADS for made complete form.
    But we  are facing the probelm that Photo is not diplaying on the form. We have found that Photo URL is not worked priviously
    now made the changes in OAC0 and working fine. But the photo is still not showing  on the form.
    Can anybody help us
          Logic to call the PDF Form
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
          i_name     = lc_formname
        IMPORTING
          e_funcname = ld_fm_name.
    *Function to open form processing
    Set output parameters and open spool job.
      ls_fp_outputparams-nodialog   = lc_x.
      ls_fp_outputparams-getpdf     = lc_getpdf.      "'M'
      ls_fp_outputparams-connection = lc_connection.  "'ADS'
      ls_fp_outputparams-bumode     = lc_bumode.      "'M'.
      ls_fp_outputparams-assemble   = lc_x.
    ***Function module to open the Spool Job
      CALL FUNCTION 'FP_JOB_OPEN'
        CHANGING
          ie_outputparams = ls_fp_outputparams
        EXCEPTIONS
          cancel          = 1
          usage_error     = 2
          system_error    = 3
          internal_error  = 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.
    Regards,
    Raj

    Image of Employee
          CALL FUNCTION 'HR_IMAGE_EXISTS'
            EXPORTING
              p_pernr               = wa_itab-pernr
            IMPORTING
              p_connect_info        = p_connect_info
            EXCEPTIONS
              error_connectiontable = 1
              OTHERS                = 2.
          IF sy-subrc = 0.
            CALL FUNCTION 'SCMS_DOC_READ'
              EXPORTING
                stor_cat              = space
                crep_id               = p_connect_info-archiv_id
                doc_id                = p_connect_info-arc_doc_id
              TABLES
                access_info           = lt_infos
                content_bin           = lt_image_bin
              EXCEPTIONS
                bad_storage_type      = 1
                bad_request           = 2
                unauthorized          = 3
                comp_not_found        = 4
                not_found             = 5
                forbidden             = 6
                conflict              = 7
                internal_server_error = 8
                error_http            = 9
                error_signature       = 10
                error_config          = 11
                error_format          = 12
                error_parameter       = 13
                error                 = 14
                OTHERS                = 15.
            IF sy-subrc = 0.
              READ TABLE lt_infos INDEX 1 ASSIGNING <fs_info>.
              IF sy-subrc = 0.
                CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
                  EXPORTING
                    input_length = <fs_info>-comp_size
                    first_line   = <fs_info>-first_line
                    last_line    = <fs_info>-last_line
                  IMPORTING
                    buffer       = l_employee_photo_content
                  TABLES
                    binary_tab   = lt_image_bin
                  EXCEPTIONS
                    failed       = 1
                    OTHERS       = 2.
                IF sy-subrc = 0.
                  wa_itab-pic = l_employee_photo_content.
                ENDIF.
              ENDIF.
            ENDIF.
          ENDIF.
          MODIFY itab FROM wa_itab.

  • Can a Password be set to apply after a Field Entry on the PDF form?

    Can a Password be set to apply after a Field Entry occurs on the PDF form?  Thus requiring a Password after the PDF document is closed with a Field Entry, and requiring the Password upon re-opening the PDF document

    It might help if you provided more information about what you're trying to accomplish. Do you want the field value to somehow be encrypted, or do you want the field to be locked to prevent further changes to it?

  • How to Change the PDF's that are generated once the Payment run completes

    Hello All,
    After the Payment run completes, it creates a bank file, and check registry etc.  Our system also creates a PDF which is sent out to the vendors via email.  I need to make some changes to this PDF that is being generated.  Where can I do this?  The pdf sits in the Business Workplace.   Any ideas?
    Thanks,
    Rashad

    It is not possible to change the PDF manually.
    You need to change the form assigned for payment advice in FBZP settings.
    However, these settings are uniform and across all the vendors.
    You cannot put different rules for different vendors.
    Regards,
    Ravi

  • SAP Cloud SDK : Display more 500+ character in the PDF form in table cell

    Hi Experts,
    I have requirement in the PDF form.
    Scenario:
    My custom business object
    businessobject DummyObject {
         element ID : ID;
         element FromDate : Date;
         element ToDate : Date;
         node AllActivity [0,n] {
                   element ActivityID : ID
                   element ActivityType : 
                   element Note: Note;
    The above business object have node level data and i under this node level data Activity Id , Activity Type and Notes associated with that activity as show below.
    so as per the above activity i have retrieve the data for the activity and store into my custom business object at node level ( Activity ID  , Activity Name , Activity Type and Notes ) that mentioned above screen.
    I have created 1 form and design in adobe life cycle just Drag and Drop the element from the DataView.
    After completed the print from i have create the preview button to display the data.
    Once i have done all the steps to display the form and click click on preview button i can able to see the data but the under the Note field only display the 256 character not more than that but as per the above screen i have entered the Notes with more than 500+ character.
    In the form design i have also change the property for Note field to Allow Multiple value and Rich Tech but data is not display with all the character.
    Anyone have idea on which data type display the more than 500+ character in the form.
    I am using "Note" data type.
    Can anyone suggest me what the solution to display the proper value in the form.
    Please let me because i am stuck in this issue.
    Many Thank,
    Mithun

    on the BO, add the following line:
    [DependentObject(TextCollection)] node Note;
    in some BO action, where the copying happens:
    var noteFromActivity; // contains the note from the activity
    this.Note.Create();
    var el_note_text : elementsof this.Note.Text;
    el_note_text.LanguageCode = LanguageCode.ParseFromString("EN");
    el_note_text.TypeCode.content = "10006";
    var text = this.Note.Create(el_note_text);
    var content = text.TextContent.Create();
    content.Text.content = noteFromActivity.content;
    To display the content of the textcollection, use the following SAP embedded component:
    /SAP_BYD_APPLICATION_UI/Reuse/Notes/singletextlangedit.EC.uicomponent
    In the embedded component properties, set the TextTypeCode property to "10006".
    Bind the embedded component using node reference binding to the BO containing the TextCollection
    Bind the LanguageCode to a data field containing the language code for english.
    Best regards,
    Ludger

  • There are hidden pages in the PDF form I have.  How can I see and print all without clicking on the

    I have hidden pages in the PDF form I'm using (but didn't create).  How can I see and print all the pages at once without clicking on the "next page" button.  In the initial view, there are four pages, but if I click the "next page" button, there are a total of 12 pages in this document.  This is three budget years, each year being 4 pages long.

    You're most likely dealing with a dynamic XFA form created in LiveCycle Designer. You can open it, click the button, and save it, and it will most likely be 12 pages when next opened, but it depends on how the form is set up. The ability to make edits to an XFA form in Acrobat is very limited, especially for dynamic forms, so things like flattening aren't possible.
    If it's not an XFA form, you'd still need to click the button at least once and save. To say for sure what's possible, I'd need to see the document. Can you post it somewhere?

  • Error In Generating the PDF Form

    Hi,
    When I'm trying to activate the PDF Form, I got a message asying Error while Generating the PDF Form.
    Can we debugg the Form, if yes, can body tell me how to with this process.
    Any pointers would be a great Help.
    ThankQ
    Rohini.

    Hi Om,
    I need to fix this issue and I had taken help from Rohini.
    I will try to explain the issue in detail.
    I am trying to execute Tax Reporter Transaction PU19. Iam executing Quarterly Form 941 for USA for a Tax Company and a Period. This report gives an output Log and the log had generated errors in the log section General errors and Warnings.
    The errors are :
    Errors in generating the PDF Form : HR_F_941 and
    Errors in generating the PDF Form : HR_F_941_SCHED_B
    As we are new to the PDF Forms we don't know why the report has generated and how to find out by debugging or any other way.
    So I need to find out how the above errors can be identified?
    Thanks and Regards,
    Madhan.

  • How do I add a functional "submit button" to a pdf form in Adobe Acrobat Pro XI ? I created the pdf form in Adobe Forms Central.

    How do I add a functional "submit button" to a pdf form in Adobe Acrobat Pro XI ? I created the pdf form in Adobe Forms Central. It's for an online Diet Questionnaire. After people complete the form I'd like them to click "SUBMIT" and the completed form will be emailed to me.

    This can be a bit confusing because Acrobat 11 comes with the desktop app that allows you to create simple PDF forms without having a FormsCentral account. Some people find this helpful, but you need to understand that when you generate the PDF form, it is Reader-enabled by Acrobat. In order to edit the form further in Acrobat, you have to create a non-enabled copy of the form. You do this in Acrobat by opening the form and selecting: File > Save a Copy
    and opening the copy. It is not opened automatically.
    You can now add a button and set it up to submit by email, either using a "Submit a form" action or the submitForm JavaScript method. You can set it up to include just the form data or the entire PDF, and will want to use a mailto type URL. Submitting the form to the FormsCentral server has a number of important advantages over email (much more reliable, more secure, etc.), so you might want to consider it.
    If the form needs to be saved with Reader versions prior to 11, then you will need to Reader-enable the document. In Acrobat 11 you do this by selecting: File > Save As Other > Reader Extended PDF > Enable More Tools

  • I have been creating forms in InDesign and pulling into Acrobat XI Pro to do form fields. My client would like to fill in the PDF form, save under a different name locally on their device, and redistribute. The problem I have is that, sometimes, they want

    I have been creating forms in InDesign and pulling into Acrobat XI Pro to do form fields. My client would like to fill in the PDF form using Reader, save under a different name locally on their device, and redistribute. The problem I have is that, sometimes, they want to redistribute the form as Read Only. I know how to flatten the form on a mobile device, but uncertain how they can do that with a PC or Mac using Adobe Reader. I looked at FormsCentral thinking there might be a solution going that route, but don't believe there is. Any advice?

    FormsCentral won't help with flattening a form. You could set up the form in Acrobat so that the fields are set to read-only, using JavaScript. Not quite the same as flattening but it's the best Reader can do.
    Note that when Reader is used to e-sign a document, it gets flattened, but this won't be possible if you need to Reader-enable the form and under certain other conditions.

  • How to include the insert picture option in the PDF form?

    Hi, Can some one please help How to include the insert picture option in the PDF form? I am using acrobat XI pro and trying to use an evaluation form which requires to insert product pictures.

    Here's a link to a previous topic where this was discussed: http://forums.adobe.com/message/6050458

Maybe you are looking for