ADOBE Form Table printing Multiple pages

Hi,
   I am having a suituation that in ADOBE Forms I need to display same internal table data in multiple pages. But while i display it the data only printing in first page. I want to print the same data in the second page also. How to do this? any idea please.
Regards
Srikanth S

Hy Otto,
his requirement was a bit different from what you answered I am saying this because i've stumbled on the same problem. I have a table that varies between 4 or 8 rows and let's say half of the page it's enough for it. But i need this table to appear on every page. I created the table in the Master Page, but it shows only on the first page. The other pages will not display the table.
Thanks,
Alex

Similar Messages

  • Sap adobe forms  table printing

    Hello
    Im printing an invoice , item lines are in a table  when printing  only the first line item is on the first page although i still have plenty of space  in the first page , the remaining lines are printed correctly par in the second page ???
    im putting my table in a flowed sub and itself is in page1 whish is also flowed.
    Thanks a lot

    Hello Tahar,
    Please check whether you are following the below points.
    1) Table should always be in the design view(body page).
    2) Check the box--> Repeat sub form for each data item in DATA sub form.
    3) Remove the Check --> Repeat sub form for each data item in Table sub form.
    4) Remove the check "Allow Page breaks within content" in sub form tab of Table sub form.
    5) Check the box "Allow Page breaks within content" in sub form tab of DATA sub form.

  • Adobe Form Table with multiple rows

    Hi,
       I am facing problem with mutliple rows item in the table. A row which doesn't have data is occuping the space in the form. Need solution to  remove the space .
    i used the code in Form CALC in client.
    if (HasValue($) == 0)
    then $.presence = "hidden"
    else $.presence = "visible"
    endif
      But it is not working. And also i need display a text field based on the condition.in the form How can i write code in the Form CALC. Plz help me out in this.
    Thanks & Regards,
    Narasimha

    Hi Narsimha,
    First of all why is your blank row getting displayed?Adobe automatically takes care of this. It would display a new row only if there's flow of data in the next row. i.e. if you have a new item to be displayed in this new row.
    You must check your table properties first.
    For hiding fields i can help you.But I m not sure if this issue is still open.
    Swar.

  • Printing multiple pages per sheet on Adobe Reader for Windows 8

    I cannot print multiple pages per sheet on Adobe Reader touch for windows 8.1

    What is your Reader version?  In Reader XI 11.0.07 you would click on Multiple, then specify 4 (or 2) pages per sheet:

  • Get number of pages of adobe form before printing

    Dear Experts,
    I want to get number of pages adobe form will print before printing the form.
    Please suggest.

    Hello Sagar,
         Without executing the generated Function Module, it is not possible to get the page count of a form in driver program because the generated FM itself is responsible to execute the whole layout and determine the number of pages in the PDF output. The below screenshot shows the number of pages in the structure /1BCDWB/FORMOUTPUT of generated FM after the generated FM is executed successfully.
    I really don't know why you need the number of pages before calling the generated FM. But if you still need it, then you might need to call the whole FM cycle twice( FP_JOB_OPEN , Generated FM, and FP_JOB_CLOSE ).
    1) First time while calling the FM FP_JOB_OPEN, you need to modify the contents of SFPOUTPUTPARAMS structure. Send the blank values in fields GETPDF, REQNEW and REQIMM, and send the "X" in fields NOPREVIEW, NOPRINT and NOARCHIVE and 000 in field COPIES.
    The reason for doing this is, we do not want actual PDF output. We only want to determine the number of pages.
    2) Now execute the generated FM . You will get the number of pages in the structure /1BCDWB/FORMOUTPUT-PAGES as shown in screenshot above.
    3) Now call the FM FP_JOB_CLOSE as usual.
    4) Again call the FM FP_JOB_OPEN. This time you again need to modify the contents of SFPOUTPUTPARAMS structure reversely. Send the "X" in fields GETPDF, REQNEW and REQIMM, and send the blank values in fields NOPREVIEW, NOPRINT and NOARCHIVE and 001 in field COPIES.
    This time we need the actual PDF output.
    5) Now do the required processing with previously fetched number of pages before calling the generated FM.
    6) Now call the FM FP_JOB_CLOSE as usual.

  • How to print multiple pages in single spool in smartforms

    Hi all,
      I have a issue on to print multiple pages in single spool,i can able to print multiple pages in multiple spool .I am doing Check Print smartforms in that i need to print Multiple pages in single spool.Currently i am using the below code please help to solve this issue.
    IF gv_tabix = 1.
    lwa_outp_option-tdnewid = 'X'.
    ELSE.
    lwa_outp_option-tdnewid = ' '.
    ENDIF.
    Thanks,
    Deesanth

    Hi
    TABLES: spfli.
    DATA:
      t_spfli type STANDARD TABLE OF spfli.
    DATA:
      fs_spfli TYPE spfli.
    DATA:
      w_form TYPE tdsfname,
      w_flag TYPE i,
      f_nam TYPE rs38l_fnam,
      w_input TYPE ssfcompin,
      w_control TYPE ssfctrlop.
    SELECTION-SCREEN BEGIN OF BLOCK blk WITH FRAME.
    SELECT-OPTIONS s_carrid FOR spfli-carrid.
    SELECTION-SCREEN END OF BLOCK blk .
    SELECTION-SCREEN BEGIN OF BLOCK block1 WITH FRAME.
    PARAMETERS:
      p_single RADIOBUTTON GROUP rad1,
      p_ind RADIOBUTTON GROUP rad1.
    SELECTION-SCREEN END OF BLOCK block1.
    START-OF-SELECTION.
    PERFORM display_data.
    PERFORM ssf_function_module_name.
    PERFORM spool_request.
    *& Form display_data
    * text
    * --> p1 text
    * <-- p2 text
    FORM display_data .
    SELECT * FROM spfli INTO TABLE t_spfli WHERE carrid IN s_carrid.
    ENDFORM. " display_data
    *& Form ssf_function_module_name
    * text
    * --> p1 text
    * <-- p2 text
    FORM ssf_function_module_name .
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING formname = ' '
    IMPORTING fm_name = f_nam
    EXCEPTIONS no_form = 1
    no_function_module = 2.
    * IF sy-subrc NE 0.
    * MESSAGE 'Form cannot be displayed' TYPE 'E' .
    * ENDIF. " IF sy-subrc eq 0
    ENDFORM. " ssf_function_module_name
    *& Form spool_request
    * text
    * --> p1 text
    * <-- p2 text
    FORM spool_request .
    w_input-dialog = 'X'.
    CALL FUNCTION 'SSFCOMP_OPEN'
    EXPORTING input = w_input
    EXCEPTIONS error = 1.
    *" LOOP AT t_spfli .....................................................
    LOOP AT t_spfli INTO fs_spfli.
    w_control-no_open = ' '.
    w_control-no_close = ' '.
    *"Single spool request..................................................
    IF p_single EQ 'X'.
    w_control-no_open = 'X'.
    w_control-no_close = 'X'.
    ELSE.
    *"Individual spool request.............................................
    IF w_flag NE '1'.
    w_control-no_open = 'X'.
    w_control-no_close = ' '.
    w_flag = 1.
    CALL FUNCTION ' '
    EXPORTING control_parameters = w_control
    fs_spfli = fs_spfli
    EXCEPTIONS formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4.
    endif. " IF w_flag ne '1'
    ENDIF. " IF p_single eq 'X'.
    CALL FUNCTION ' '
    EXPORTING
    control_parameters = w_control
    fs_spfli = fs_spfli
    EXCEPTIONS formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4.
    ENDLOOP. " LOOP at t_spfli into ...
    *&This function module close the spool request *
    CALL FUNCTION 'SSFCOMP_CLOSE'
    EXCEPTIONS error = 1.
    ENDFORM. " spool_request
    Regards,
    Sravanthi

  • Error in smartform when printing multiple pages

    Hi,
    I m using a smartform which have two pages in it,
    i m able to save and activate it without any error message and when i run the function module generated to chk my smartform
    it runs fine and diplays two pages i m using.
    but as i m attaching this form with my driver program it is giving an error message while running . the error message is " No other output defined in main window."
    Please help me out to resolve the issue.

    Re: error in smartform when printing multiple pages
    dharani tadikonda
    Thanks for this answer. It is absolutely correct.

  • Used to be able to print multiple page pdf files on my HP 7310 all in one and then it stopped and would only print the curent page. This is tedious for long PDF docs. I am on 10.6.8 .

    Used to be ablert to print multiple page pdf files on my HP 7310 all in one printer and now I can only print the current page and therefore it takes forever printing them one by one. I am in version 10.6.8. Tried printing as image using the advanced click and that did not work either.  I have Adobe 9.0 reader installed.

    I tried this earlier, and I tried it again today.  Both times it said "Software Missing!"  and "HP Software required to connect to your printer over the network could not be found on this computer."  But when I tried to install the software (AIO_CDB_Net_Full_Win_WW_130_141.exe, which I downloaded from HP's web site), it wouldn't install, as described above.  In the diagnostic utility, I clicked "skip", and it said "Connection Verified!", and "The printer is connected to the network and the services related to the network connections have been verified and reset to a normal operating state.  Everything appears to work fine at this point.  Please doa test print to verify that the issue is resolved or click Skip to move to the next step."  I clickedthe "Test Print" button, and immediately it popped up a box that said "Test Print Failed."
    I tried again to install the HP software, and it installed, detected the printer, and asked me to select it.  I selected the printer, clicked "next", and it did its network diagnostics.  Then it said "Problem(s) found with your network" and "Problem(s) may exist with the network functions of your printer . . ."  I continued the installation without connecting to the printer.  Then I ran your network printer diagnostic tool again, and got the same result - "HP Software required to connect to youir printer over the network could not be found on this computer."

  • Cannot print multiple pages

    I am unable print multiple pages after I upgraded Acrobat 8 Professional. Worked fine with Acrobat 7. I receive a pictwpstops stopped with status 1 message.
    G4 iMac
    1.5 GByte Ram
    Tiger with latest updates
    Adobe CS2 with latest updates and Acrobat 8
    Brother MFC-5840CN printer with MFC-5840CN CUPS v1.1 PDD / driver (latest available)
    I have removed my local fonts, reset printers, reinstalled printer/PDD files, repaired disk permissions to no avail.
    Why is this happening and how do I resolve this? This is our proofing printer.
    My CUPS debug output is given below.
    *** Job 1 ***
    D [04/Feb/2007:08:28:57 -0500] [Job 6] Error: /undefined in YDVGLJ+Times.New.Roman.Bold050*1
    D [04/Feb/2007:08:28:57 -0500] [Job 6] Operand stack:
    D [04/Feb/2007:08:28:57 -0500] [Job 6]
    D [04/Feb/2007:08:28:57 -0500] [Job 6] Execution stack:
    D [04/Feb/2007:08:28:57 -0500] [Job 6] %interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 1 3 %oparray_pop 1 3 %oparray_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval--
    D [04/Feb/2007:08:28:57 -0500] [Job 6] Dictionary stack:
    D [04/Feb/2007:08:28:57 -0500] [Job 6] --dict:1059/1123(ro)(G)-- --dict:1/20(G)-- --dict:83/200(L)-- --dict:120/174(L)-- --dict:54/73(L)-- --dict:212/315(L)-- --dict:72/107(L)-- --dict:0/10(G)-- --dict:0/10(L)-- --dict:2/50(G)-- --dict:56/71(L)--
    D [04/Feb/2007:08:28:57 -0500] [Job 6] Current allocation mode is local
    D [04/Feb/2007:08:28:57 -0500] [Job 6] Last OS error: 2
    D [04/Feb/2007:08:28:57 -0500] [Job 6] ESP Ghostscript 7.05.5: Unrecoverable error, exit code 1
    E [04/Feb/2007:08:28:58 -0500] PID 1268 stopped with status 1!
    E [04/Feb/2007:08:28:58 -0500] PID 1267 stopped with status 1!
    E [04/Feb/2007:08:28:58 -0500] [Job 6] error drawing page 2
    E [04/Feb/2007:08:28:58 -0500] [Job 6] pictwpstops - got an error disposing of document = -9783
    D [04/Feb/2007:08:28:58 -0500] [Job 6] ERROR during execution of pictwpstops. Error number -9783
    *** Job 2 ***
    D [04/Feb/2007:00:06:09 -0500] [Job 5] cups->header.Duplex = 0
    D [04/Feb/2007:00:06:09 -0500] [Job 5] cups->page = 2
    D [04/Feb/2007:00:06:09 -0500] [Job 5] cups->ppd = 0x1103b80
    D [04/Feb/2007:00:06:09 -0500] [Job 5] cups->ppd->flip_duplex = 0
    D [04/Feb/2007:00:06:09 -0500] [Job 5] width = 4950, height = 6450
    D [04/Feb/2007:00:06:09 -0500] [Job 5] PageSize = [ 612 792 ], HWResolution = [ 600 600 ]
    D [04/Feb/2007:00:06:09 -0500] [Job 5] HWMargins = [ 9.000 9.000 9.000 9.000 ]
    D [04/Feb/2007:00:06:09 -0500] [Job 5] matrix = [ 8.333 0.000 0.000 -8.333 -75.000 6525.000 ]
    D [04/Feb/2007:00:06:09 -0500] [Job 5] Contrast_Bright() pdev->dm.dmPrivate.epBrightness = 0
    D [04/Feb/2007:00:06:09 -0500] [Job 5] Contrast_Bright() pdev->dm.dmPrivate.epContrast = 0
    D [04/Feb/2007:00:06:09 -0500] [Job 5] Error: /undefined in YDVGLE+Helvetica-Bold
    D [04/Feb/2007:00:06:09 -0500] [Job 5] Operand stack:
    D [04/Feb/2007:00:06:09 -0500] [Job 5] false
    D [04/Feb/2007:00:06:09 -0500] [Job 5] Execution stack:
    D [04/Feb/2007:00:06:09 -0500] [Job 5] %interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 1 3 %oparray_pop 1 3 %oparray_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval--
    D [04/Feb/2007:00:06:09 -0500] [Job 5] Dictionary stack:
    D [04/Feb/2007:00:06:09 -0500] [Job 5] --dict:1059/1123(ro)(G)-- --dict:1/20(G)-- --dict:83/200(L)-- --dict:120/174(L)-- --dict:54/73(L)-- --dict:212/315(L)-- --dict:72/107(L)-- --dict:0/10(G)-- --dict:0/10(L)-- --dict:2/50(G)-- --dict:56/71(L)-- --dict:1059/1123(ro)(G)--
    D [04/Feb/20

    > a PDF/X-1a setting has fixed the problem
    I still have the problem with more simple kinds of PDF: 150 dpi, no PDFX. I can not print multiple pages.
    Furthermore I can not use the option
    "print screen view" (in german language), both affects the
    Reader 8 AND the Acrobat 8: it always only prints the first page of the document without any scaling.
    Finally I can not use the printer
    "Adobe PDF": it results in an endless spool action to that printer.
    Yesterday Acrobat 8 was deinstalled with the
    deinstaller. The
    new installation failed first because of a missing CD. The "AdobeExtendScriptToolkit2.0.1All.dmg" could fix the installation problem.
    After successfull re-installation neither before nor after the update to Acrobat 8.1.0 the printing errors mentioned above were solved.
    What can we try next?
    ===
    OSX 10.4.10., MacPro1.1, Dual-Core, Intel-Xeon
    Creative Suite CS2 and CS3
    ===
    Weird hint: None of our three older G4 (10.4.10, CS3+4, Acrobat 8.1.0) has this printing or any other Acrobat problem. - So, is it even hardware related??

  • Can't print multiple pages per sheet

    Hi there - I'm a real newbie to this whole adobe reader thing and I need help!! I've been trying to print multiple pages per sheet and I just can't. I know where I can change the presets but when I'm in the print dialog presets I can't click on anything. It won't allow me. What's wrong?
    I'm using adobe reader 8.1.3 and the document i'm trying to print is a powerpoint document converted into a pdf. Is this why I can't change the settings? Or do I need the adobe reader 9 standard? i'm just so confused!
    thanks in advance!!

    Yes, it used to work, and the resize zoom bar used to work too (now its grayed out). I don't know if this is a "who's to blame for it" thing, but its not getting fixed and its pretty bad that no one seems to care enough even to respond. I found my own solution by opening it in Gimp. Just right click and select open with other ...Gimp and it will import into it. In the Gimp Print dialog, you have a scaling percentage in the "Page Setup" tab, and size settings in the "Image settings" plus loads of other stuff including multiple copies.

  • No Scaling when Printing Multiple Pages per Sheet

    I'm trying to print a pdf document but with 2 pages per sheet. I tried to scale up the document by 10% (in the page setup tab) but it actually scaled down about 30%. Any idea what could be going wrong? Can Adobe even scale up and print multiple pages on the same sheet?

    Are you using the Multiple button under the Page Size & Handling section of the Reader Print dialog? This section allows you to determine how many pages are printed per sheet. The scaling is pre-determined by the number of sheets you have selected.

  • Disable Auto-Centring When Printing Multiple Pages

    Hello,
    I am using Adobe Reader XI Version 11.0.04 (mac). I am trying to print multiple pages (specifically custom 1 by 3 portrait), but am finding that the 3 pages auto-centre (appear in the middle of the page). Is there a way to disable this auto-centring so that the three pages can be flush to th left of the page (e.g. left margin).
    Thanks

    Re: error in smartform when printing multiple pages
    dharani tadikonda
    Thanks for this answer. It is absolutely correct.

  • Print multiple pages with dynamic data from same movieclip

    Hi @ all,
    like much of us i have a problem with printjob.
    I have a printjob routine, that starts a new job, then
    handles the following in a loop for printing multiple pages:
    1. update content for every page in a sprite. every loop it's
    the same sprite. the sprite is visible on stage
    2. addPage to Printjob
    after that sends the printjob to the printer
    Now the Problem:
    On Windows it runs perfectly. On Mac only the last page was
    printed. the other pages before are empty (white).
    Has anyone a idea?
    Thanks for answeres.
    Her's my code. As you can see i try to print a table on
    multiple pages. In every loop i only show the rows for the actually
    printing page:

    the printview function only updates the content in the sprite
    that will be printet on every page.
    it generates the rows of a table that will be printed on the
    actual page and return if all rows are printed (true or false)
    this is a very slim function. there is no time overflow or
    sth. like this.

  • Two sided printing when I print multiple pages

    Don't know what happened but all of a sudden when I print multiple pages, it prints double sided. Doesn't matter if I go into preferences and click one sided, it still prints double. I have a MAC, vers 10.9.5 and it looks like my adobe acrobat pro looks like vers 8,   Can any help this village idiot? Ready to pull my hair out or throw this huge peice of equipment out the window. Oh, and at intervals a window comes up for Adobe updates and it says, not online--while I am online. Apple can't even help me. Thanks a million.

    Not sure what type of printer you are using or environment you are in (corporate workgroup) but it is possible someone set the printer defaults to two-sided.

  • Print multiple pages on one page in Preview?

    I tried to print a PDF in OSX Lion and I was unable to find the option to print multiple pages on one Page. Instead there is an option to print multiple copies of pages on one page. Does anybody know where I can find the old option from (as in Snow Leopard, Leopard, Tiger..)? (See screenshot.)
    Thanks!
    roboter

    Look under the "Vorschau" menu for the Layout menu, and then choose "Seiten pro Blatt."
    Hope this helps.

Maybe you are looking for