Using SFP to create an Adobe form

Does anyone out there know how to configure a Adobe form that will continue printing the rows of a dynamic table on to the next page?
90% of the time only one page is required to print the table because the number of rows is small..
The solution we would like is to create the second page only if the dynamic table rows grow too large to print on one page.
We have tried reading the SFP help documentation several times but still can not configure it correctly.
Moderator message - Moved to the correct forum
Edited by: Rob Burbank on Sep 25, 2009 3:08 PM

1. keep the table in the body page(and not in master page)
2. wrap the table in a subform, and make it page break allowed with flowed layout in the object palette )
work done.
and post in forms forum, that would help you better.

Similar Messages

  • Invoking a workflow using GP and WD Java Adobe Forms

    Hi,
    I have a scenario where I want to be able to submit an Adobe Form for approval, if its approved I get info from a BAPI which populates the form, if not I just get a message saying, Not approved. So in steps i'd like to be able to:
    1) User fills in a form with input parameters,
    2) Submit form,
    3) Approver receives form for approval,
    4) Approver approves and a BAPI is invoked with the input parameters in the form, the form is populated with what the BAPI returns.
    5) Form is sent back to user.
    6) If form not approved then message sent to user.
    I want to create the Adobe form in Web Dynpro Java. I need advice as to if I should do the whole process in GP, or can I use them both together? What are the steps involved? Can this be achieved? Do we use Portal email services to send communication between the user and the approver? Any advice/help/suggestions very welcome.
    Thanks
    TM

    Hi Lisha
      For storing the data from form to workflow and from workflow to trancation it better to maintain custom table to get the details later. You can use the std FM to insert the data from the form to table in this case you need not create custom table. Tell me which module you are working on. MSS or for ESS like leave, travel, actions like seperations, transfer which one you are using.
    Regards
    vijay

  • What is the use of interface in the adobe forms

    Hi friends,
    can any one tell,
    what is the use of interface in the adobe forms for desigining the form.

    The main purpose of the form interface is to send the application data to the form.
    The form interface is created separately from the form, which consists of the form context and layout. When you create a form, you must assign it to a form interface.
    please have a look at the link below for more info:
    http://help.sap.com/saphelp_nw70/helpdata/EN/96/6ee0d5b39640d68fc0078fc575114a/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/EN/f2/21021b911f4c0cae11459a4ce0bc62/frameset.htm
    hope this helps,
    harman

  • How to create simple Adobe Forms in ABAP

    hi,
    i want to know how to create simple Adobe forms in ABAP

    Hi,
    Look at this eLearning Documents. This a good way to start.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/interactiveforms-elearning">SAP Interactive Forms by Adobe eLearning Catalog</a>
    Regards.
    Marcelo Ramos

  • How to create several Adobe Forms ??

    Hi everybody:
    I need to create several Adobe forms in my webdynpro application, for example: take data from a table and create such forms as rows in table. Right now, my app. only is able to create 1 adobe form (with the data of the first row). It is posible or not???
    Thanks in advance!
    any idea would be util....
    Les.-

    Hi,
    Look at this eLearning Documents. This a good way to start.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/interactiveforms-elearning">SAP Interactive Forms by Adobe eLearning Catalog</a>
    Regards.
    Marcelo Ramos

  • Problem using RFC to call an adobe form to create pdf file........

    Hi,
       I have an RFC that calls an adobe form to display the pdf output back in a bsp page...the RFC fails at the call to the adobe form (next call after after getting the form name) ...while debugging it looks like within this call it is trying to call fpcomp_job_open and failing on the call check_job_open ...
    The code in my RFC looks like this....
    DATA:
        gs_outputparams  TYPE sfpoutputparams,
        fn_name           TYPE rs38l_fnam,
        fp_docparams      TYPE sfpdocparams,
        fp_formoutput     TYPE fpformoutput,
        frm_result        TYPE sfpjoboutput,
        lv_form           TYPE fpname.
    DATA: l_pdf_xstring  TYPE xstring,
           l_pdf_len      TYPE i.
    lv_form = 'ZHR_ASSESSMENT_FORM'.
    Start formrocessing - OPEN spool job to send to printer
      gs_outputparams-getpdf = 'X'.
      call function 'FP_JOB_OPEN'
        changing
          ie_outputparams = gs_outputparams
        exceptions
          others          = 1.
      IF sy-subrc <> 0.
    *//    RAISE FP Open Error.
          exit.
      ENDIF.
    Get name of the generated function module for the form
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
          i_name     = lv_form
        IMPORTING
          e_funcname = fn_name.
      IF sy-subrc <> 0.
    *//    RAISE FP Get Form Module Name Error.
            exit.
      ENDIF.
    Call the Adobe Form
      CALL FUNCTION fn_name
      EXPORTING
          /1bcdwb/docparams  = fp_docparams
          gv_appraisal_id = gv_appraisal_id
      IMPORTING
         /1bcdwb/formoutput = fp_formoutput
        EXCEPTIONS
          usage_error        = 1
          system_error       = 2
          internal_error     = 3
          others             = 4.
      IF sy-subrc <> 0.
    *//    RAISE Call Form Module Error.
            perform f_build_message using 'E'
                                      'ZEXT'
                                      012
                                changing return.
           exit.
      ENDIF.
    End from processing - Close spool job
      CALL FUNCTION 'FP_JOB_CLOSE'
        IMPORTING
          e_result       = frm_result
        EXCEPTIONS
          usage_error    = 1
          system_error   = 2
          internal_error = 3
          OTHERS         = 4.
      IF sy-subrc <> 0.
    *//    RAISE FP Close Error.
           exit.
      ENDIF.
      form = fp_formoutput-pdf.
    Thanks,
    Venkatesh

    what is the solution for this problem? I have the same problem. I get sy-subrc = 1 after CALL FUNCTION 'FPCOMP_JOB_OPEN'.
    If I look more in detail I see that "Perform check_job_open" is creating the problem:
    FORM check_job_open.
      IF fpstat-is_opened = c_true.  (--> exactly here is the problem. This condition is true so the program is terminated.)
        PERFORM reset_status.
        MESSAGE ID 'FPRUNX' TYPE 'E' NUMBER '101' RAISING usage_error.
      ENDIF.
      fpstat-is_opened  = c_true.
      fpstat-is_started = c_false.
    ENDFORM.       
    Does somebody know why my job is open and what is the solution to have the job closed at the beginning of my processing?
    Thanks in advance.

  • I created an adobe form online. However, I can't locate the result?

    Help!!
    I created a survey online using the adobe forms central. The link for the form works perfectly. However, I can't locate the results.

    Moved to the right forum.
    Thanks,
    Rameez

  • How do I use shapes I create in Adobe Shape?

    All the shapes you create with Adobe Shape are stored in a CC Library.  This means you can access them in other desktop, mobile, and web apps.  Detailed instructions below.
    How to access your shapes in Creative Cloud
    Desktop: In order for this to work, you must have the most recent version of Illustrator and Photoshop.
    Open Adobe Illustrator on your desktop.
    Open the Libraries panel (Windows > Libraries)
    Your shapes should be present in your Libraries.  If you don’t see them there, select the libraries drop down to see if you saved your shapes in a different library.
    Now, you can drag the shape onto your canvas.
    At this point,  you can continue working with your shape, by adding editing.  Or, you can simply save the file.  Of course, after you save it to your desktop, you can email, post online, etc.
    Mobile apps:
    Open Adobe Illustrator Draw and open a drawing.
    Tap the Shapes icon to open the Shapes menu.
    Tap a library name to view the shapes in the Creative Cloud Library. Tap Change Library to select another library.
    Select your shape by tapping on it.
    Active Slide or Tocuh Slide. You can use Adobe Slide or Touch Slide to place the shape on the canvas. Access Touch Slide by tapping on the circular icon at the top of the menu bar.
    Place the shape.  Once you have activated Touch Slide, you will see a light rendition of your shape on the canvas.  Simply double tap on the shape outline to stamp the shape in place.
    Web:
    Navigate to https://assets.adobe.com/
    Select the Libraries menu item (left menu on the page)
    Select the desired library (if this is your first time using Libraries, you will only have one).
    This page provide a preview only.
    Also, here’s a great walk through video that may be useful: http://helpx.adobe.com/mobile-apps/how-to/shape-get-started.html?set=mobile-apps--fundamen tals--adobe-shape-cc

    I use Illustrator CC not Illustrator CC 2014 where can I find "Open the Libraries panel (Windows > Libraries)" and How can get the vector file from adobe shape cc?

  • Saving information in pdf created in Adobe forms

    I am certain there is a simple solution to this issue but I cannot find the answer. I have created some template forms in FormCentral that I use in a therapy clinic. Once I have created the forms I save them as a pdf. I then enter the information relating to the patient then save the pdf. However, when I send this pdf form to other people the form they open in blank. Can someone please let me know how to make save the information I enter into a form that have created in FormCentral and saved as pdf. I don't have any requirements for others to complete the forms I create. Just want to save my info. Thanks!

    You need to find out what devices and apps or programs are being used to view the PDFs.
    Many mobile apps that can read basic PDF documents cannot process PDF forms and form fields.

  • Documentation on creating an Adobe form

    Dear Expert,
    I am new to the Adobe form. I tried to follow the guideline in help.sap to create a relocation service. However i am getting a lots or error. Do anyone have any documentation on Adobe including tutorial?
    Thanks.
    Regards,
    Bryan

    Hi,
    Go through the eLearning Tab in the SDN: [SAP Interactive Forms by Adobe eLearning Catalog|https://www.sdn.sap.com/irj/scn/interactiveforms-elearning]
    Adobe Interactive Forms FAQ's: [SAP Interactive Forms by Adobe FAQs|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2a8a0a37-0301-0010-f794-aecd1bb426e0]
    Regards
    Pradeep Goli

  • Create printing adobe forms

    Hi experts
    I Want to create function that print adobe form directly
    not by the button (print) in the pdf
    i want send command to print the pdf
    thanks
    Yossii

    hi i also have the same situation pls help me if u got any solution for this
    Warm regards
    Shanto Aloor

  • How do i create an adobe form that has auto numbering?

    Our purchasing department requires a Purchase Requisition that contains it's own unique number so the requisition can be associated with the Purchase Order.  Can this type of form be created using Adobe Acrobat?

    I need to create the form below and have the requisition number field auto populate and never generate a duplicate.

  • Using XML files created with PDF form in Excel

    I have returned survey XML files created by a survey form using Lifecycle Designer. Have been unsuccessful in the importing of multiple XML files into Excel as a 2nd file just overlays the 1st file's data.
    I have been reading a number of posts that most likely tells me that sending the PDF survey form out via e-mail and getting the returned XML file back via e-mail was not the best way to do it. Unfortunately it is what I have to deal with now, so two questions I have:
    1. Is there a known method for importing all of these XML files into any Office program more easily than what I have been dealing with, and
    2. What method would be best used if I have surveys to send out but have no web server or any other tool other than my local software on my PC for collecting and compiling the returned data?

    Are you clicking the Send Email button while previewing the pdf form?
         -> If yes, have you specified preview data on Form Properties panel?
                    -> If yes, does your form contain Table or repeatable subforms?
    If all the above point are true, you will get multiple data in your xml.
    Nith

  • Can I use the HTML created in Adobe Edge Reflow?

    Can I use the HTML and CSS code generated to create the webpage preview in Adobe Edge Reflow?

    Hi Joseph,
    After creating and saving your Edge Reflow project, you can use View-> Preview In Chrome. This will create your HTML and CSS in your project folder's "assets" directory.  While our goal with this code is to provide a way for you to preview and share your designs in the browser (not to output production quality code), you can do anything you'd like with the output.
    Joan

  • Using XI to create and parse Forms html, pdf or other types

    I have a general architecture question.  The scenario was posed to me in which we need to get data from SAP ( an rfc, or bapi etc.. ) and then within XI build this data up into a form that is then emailed out using the mail adapter to an external recipient.
    The recipient would receive the form "fill it out" and email it back.  XI would need to receive the emailed form, parse it and send the data back into SAP.
    Any help would be greatly appreciated and points will be awarded.
    Thanks!

    I have a general architecture question.  The scenario was posed to me in which we need to get data from SAP ( an rfc, or bapi etc.. ) and then within XI build this data up into a form that is then emailed out using the mail adapter to an external recipient.
    The recipient would receive the form "fill it out" and email it back.  XI would need to receive the emailed form, parse it and send the data back into SAP.
    Any help would be greatly appreciated and points will be awarded.
    Thanks!

Maybe you are looking for

  • How to create editable tablecells for a single table row dynamically?

    Hi How to make the cell of a tablerow editable based on flag in backing list object bound to row? I can't decide the editable property while creating table columns. So i can't use setCellFactory() during creation. However setCellFactory() makes all c

  • Excise register rg1

    hi, i m modifying rg1 . in this register i have to convert quantity into no. using this formula.    qty = menge * ( umren / umrez). ( umren & umrez in table MARM) when i do this it give me run time error PACKED FIELD CONTAIN INCORRECT BCD FORMAT can

  • User editable text

    I am developing a Flash game for canvas, and I want to give the user the option to put value in a text field, and ability to modify it during the game. Is there a way to do this? through Flash CC? naybe in javaScript code? please any help! thanks!

  • Error in Demo-Appl. 'Project Status'

    Reporting an error: Project Status Demo. When I try to add a new task to a project, I get: ORA-06502: PL/SQL: numeric or value error: character string buffer too small ORA-06512: at "CBOURBOU.PROJSTAT_TASKS_BIU", line 4 ORA-04088: error during execut

  • Display 2 reports in 2 tabs of one WAD web template --variable issue

    We need to create one web template which contains 2 queries in 2 tabs in WAD. Each query has its own selection option. But after we create it in this way, the two queries selection option combined together in the initial screen. This is not convenien