Print Multiple forms per Marketing Document SAP B1 2007

When printing the Delivery document,  I need to print a Packing list and a Bill of Lading.  How can I acheive this in SAP B1 2007?  I am hoping there is a way when pressing the Print button that I can have both documents print like when printing and order,  having both an Order and a Pick list print.
TIA!!!
Dana

Dana,
You can have multiple Layout pages to the PLD.
If you open the PLD of the Delivery document / any marketing document
and From the Print layout designer Menu click display document properties... Paper format tab, you can add 2 or more pages in the field <b>Number of Layout Pages</b>.
By this you can design the second page of the layout accordingly.
Regards
Suda

Similar Messages

  • 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.

  • Print multiple forms between FP_JOB_OPEN and FP_JOB_CLOSE

    I am aware, that there are questions regarding "Printing Multiple forms", but I didn't find answers there.
    Still my system is not working as expected:
    1.  FP_JOB_OPEN is called
    2. the generated Adobe Forms function is called multiple times
    3.  FP_JOB_CLOSE is called
    This program doesn't deliver all the pages, but just the first call. How shall I solve this problem?
    (Coding should work anywhere with copy-pase.)
    data: fm_name           type rs38l_fnam,
          fp_docparams      type sfpdocparams,
          fp_outputparams   type sfpoutputparams.
    parameters: p_fpname type fpname default 'FP_TEST_02'.
    * Get the name of the generated function module
    call function 'FP_FUNCTION_MODULE_NAME'
      exporting
        i_name     = p_fpname
      importing
        e_funcname = fm_name.
    * Sets the output parameters and opens the spool job
    call function 'FP_JOB_OPEN'
      changing
        ie_outputparams = fp_outputparams
      exceptions
        cancel          = 1
        usage_error     = 2
        system_error    = 3
        internal_error  = 4
        others          = 5.
    * Call the generated function module
    call function fm_name.
    * SECOND CALL ****************************
    call function fm_name.
    * Close the spool job
    call function 'FP_JOB_CLOSE'
    *    IMPORTING
    *     E_RESULT             =
      exceptions
        usage_error           = 1
        system_error          = 2
        internal_error        = 3
        others               = 4.

    Hi ZSOLT,
    In order to call the form multiple times please do the following,
    1) Just before your FP_JOB_OPEN you need to pass the output parameters (good practice). You can also set other parameters as well (for example nodialog, preview, copies., etc)
      CLEAR  fp_outputparams.
      fp_outputparams-dest = 'PDF1'.      "Default pdf printer
      fp_outputparams-reqnew = 'X'.       "New spool request
    Now call your FM FP_JOB_OPEN with the above output parameters.
    2) Usually this step is processed in a loop. (getting your interface data into a internal table and then looping at it)
    But here I am enhancing your example code.
    In order to trigger the form multiple times you need to change some input data to the form (for example I have changed date and time below in the prepare test data sections) so that the call function fm_name gets regenerated every time there is new data
    data  l_datatypes       type sfpdatatypes.
    prepare test data
      l_datatypes-char = '#'.
      l_datatypes-string = 'Auf geht''s! '.    "#EC NOTEXT
      l_datatypes-numc = '42'.
      l_datatypes-dec = 0 - ( 12345 / 7 ).
      l_datatypes-fltp = 0 - ( 12345 / 7 ).
      l_datatypes-int = 4711.
      l_datatypes-curr = 0 - ( 12345 / 7 ).
      l_datatypes-cuky = 'JPY'.       " no decimals
      l_datatypes-quan = 12345 / 7.
      l_datatypes-unit = 'DEG'.       " 1 decimal
      l_datatypes-date = '20040613'.      
      l_datatypes-time = '100600'.         
      l_datatypes-lang = sy-langu.
    FIRST CALL ****************************
    Call the generated function module
      CLEAR fp_docparams.
      fp_docparams-langu = 'EN'.       
      fp_docparams-country = 'US'.  
      call function fm_name
        exporting
          /1bcdwb/docparams        = fp_docparams
          datatypes                = l_datatypes
          mychar                   = l_datatypes-char
         mybyte                   =
          mystring                 = l_datatypes-string
         myxstring                =
          mydate                   = l_datatypes-date
          mytime                   = l_datatypes-time
          mynum                    = l_datatypes-numc
          myint                    = l_datatypes-int
          myfloat                  = l_datatypes-fltp
          mypacked                 = l_datatypes-dec
      IMPORTING
        /1BCDWB/FORMOUTPUT       =
    prepare test data
      l_datatypes-char = '#'.
      l_datatypes-string = 'Auf geht''s! '.    "#EC NOTEXT
      l_datatypes-numc = '42'.
      l_datatypes-dec = 0 - ( 12345 / 7 ).
      l_datatypes-fltp = 0 - ( 12345 / 7 ).
      l_datatypes-int = 4711.
      l_datatypes-curr = 0 - ( 12345 / 7 ).
      l_datatypes-cuky = 'JPY'.       " no decimals
      l_datatypes-quan = 12345 / 7.
      l_datatypes-unit = 'DEG'.       " 1 decimal
      l_datatypes-date = '20100913'.                 "You need to change your data in order it to trigger a new form with the new data.
      l_datatypes-time = '10700'.                        "You need to change your data in order it to trigger a new form with the new data.       
      l_datatypes-lang = sy-langu.
    SECOND CALL ****************************
    Call the generated function module
      CLEAR fp_docparams.
      fp_docparams-langu = 'EN'.
      fp_docparams-country = 'US'.
      call function fm_name
        exporting
          /1bcdwb/docparams        = fp_docparams
          datatypes                = l_datatypes
          mychar                   = l_datatypes-char
         mybyte                   =
          mystring                 = l_datatypes-string
         myxstring                =
          mydate                   = l_datatypes-date
          mytime                   = l_datatypes-time
          mynum                    = l_datatypes-numc
          myint                    = l_datatypes-int
          myfloat                  = l_datatypes-fltp
          mypacked                 = l_datatypes-dec
      IMPORTING
        /1BCDWB/FORMOUTPUT       =
    Close the spool job
    call function 'FP_JOB_CLOSE'
       IMPORTING
        E_RESULT             =
      exceptions
        usage_error           = 1
        system_error          = 2
        internal_error        = 3
        others               = 4.
    I have tested the above code and I am getting multiple forms.
    Please try on your end and let me know if it works.
    Thanks
    Raj

  • 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:

  • How to print multiple sheets per page?

    Please advise how, if it is possible, to print multiple sheets per page with Acrobat 7.0 Pro.<br /><br />I have a PDF that's about 24" x 60". I'd like to make a "poor man's poster" by printing on several pages and taping them together -- sort of like Microsoft's "Fit to <x pages> tall by <y pages> wide" feature. Can this be done with Acrobat 7.0 Pro?<br /><br />Thanks.<br /><br />-Kurt

    That is typically a function of the print driver for Acrobat. One way to do it is to print to a new PDF and select the printer properties and select multi-up. Bill

  • 1099 Form - Misc doesn't print 2 forms per page.

    The 2007A PLD form that we have prints only 1 form per page.  The 1099 forms that we have for MISC have 2 'forms' per page.  I have tried scaling the size of the repetitive area so 2 vendors print per page, but I am unsuccessful.  How does PLD know how many vendors (1099's) to print per page?

    Our organization is having this issue with the new Adobe forms that were released. The 1099 smartforms print 2 forms per page but the 1099 adobe forms are only printing 1 form per the OSS  note that was just released - Note: 1949022. Is there somewhere in config that we can select to print 2 per page?
    We are using IDWTCERT_US_1099MISC which will print just 1 form per page ( we also had to make some adjustments because the top gets cut off...)
    form IDWTCERT_US_1099MISC1 will print 2 forms per page but it is not a new vendor that prints on the form it is a copy of the first on the page
    The 1099 Interest adobe form prints 2 per page with IDWTCERT_US_1099INT - this is curious too because the smartform prints 3 forms per page
    Has anyone else experienced this issue? Do you know how to resolve it?I am considering putting in a problem report.
    Thank you

  • IPhoto How to print multiple photos per page.

    How do I print multiple photos on one page using iPhoto 10.5.1?

    You've done it in the past - but not with iPhoto '11 version 9.5.x
    with iPhoto '11 version 9.5.1 (there is no version 10.5.1) the only way to print multiple photos per page is as I explained - and going back to a [revious is not an option as previous versions will not run under OS X 10.9.3 and previous versions can not read the library after it is upgraded to version 9.5.x
    the way you do it is
    For now a work around is to duplicate the photo in iPhoto (this does not increase disk storeage requirements) and print multiple copies at once
    To print 4 you must make 3 duplicates and select them and print all four
    LN

  • How can I print multiple photos per page?  It was simple in earlier versions of iPhoto.

    How can I print multiple photos per page?  It was simple in earlier versions of iPhoto.

    Do you want to print several different photos per page or multiples of the same photo?
    If you want to print several different photos,select them all at once and press command-P for "Print".  Pick the Custom Layout and adjust the photo size suitably.
    If you want multiples of the same photo, duplicate the photo several times and select all copies at once, then press command-P.

  • Printing multiple slides per page for pdf

    Hey guys. I just downloaded 10.10.1 and I'm unable to print multiple slides per page for my pdf files. Usually before I print, I can choose an option if I want to have 4 or 6 slides per page printed (as this helps to save paper and is how I have my notes for school). But now, it says "copies per page" instead of "slides per page". So the print preview shows the same 1 slide printed 6 times on each paper, instead of 6 different slides on 1 paper (which what is what I was able to do before I downloaded Yosemite).
    Does anyone know how to print multiple slides per page for pdf files???

    Did you try the Layout panel? Page per sheet?

  • Can anybody explain how to print multiple copies of different documents at the same time as at the moment I have to open each individually and press print

    Can anybody explain how to print multiple copies of different documents at the same time as at the moment I have to open each individually and press print

    is this a windows in bootcamp question ?

  • Freight on percent basis in the marketing documents in SBO 2007 SP 0 PL7

    Dear All,
    Can I calculate a freight on percent basis in the marketing documents in SBO 2007 SP 0 PL7?

    By FMS , I mean Formatted Search Query.
    You can learn more about, SAP Business One Formatted Search Query from this link
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5cae89f9-0901-0010-64be-f37d9a7eed7b]

  • Print Barcode on Marketing Document SAP Business One

    Hi Everyone,
    This is my case:
    I can print barcode from Crystal Report without problem, the RPT File is a  Datasource from Invoice Document (Marketing Document), I do upload to SAP Business One this rpt file but don't print correcty barcode.
    On Crystal Report function very good but on SAP Business One don't function...
    On Rpt File I use a font 3 of 9, this font is install on folder fonts of  Windows System Folders, too I can print correcty on Zebra print.
    Someone know how print correctly from SAP Business One BarCode?
    on wait answer.
    Regards.

    Hi Douglas,
    Please check below links.
    Barcode Label printing straight out of SBO
    Crystal Reports viewer(runtime) barcode printing problem
    Barcode Label Printing
    https://help.sap.com/saphelp_sbo882/helpdata/en/45/0942df65e16c32e10000000a114a6b/content.htm
    Hope this helps
    Regards::::
    Atul Chakraborty

  • Unable to print multiple line items in Z-SAP SCRIPT

    Hi ALL,
    We have a scenario where in we are calling the Driver program (RFKORD50) for Document Extract(F.64), Where in we have attached the Z-Script to the program(RFKORD50),
    Unable to print multiple items.
    1) Checked with all the elements in STD program for printing multiple items in main window but unable to get all the items we are able to fetch only 1 item .
    (&BSEG-BUZEI&,,     &BSEG-SGTXT&,,,,&BSEG-DMBTR&)
    2) I have also tried with external subroutine but it also didnot work.it is fetching the latest value.
    Ex: if we have 3 items say 1,2,3 first 2 items are not getting fetched it is taking 3rd item and printing it straight away(Problem is it is not going to script for fetching the first item).
    see the perform which i have used
    /: PERFORM ITEMS IN PROGRAM ZTFI_ZNV20296
    /:USING &BSEG-BUKRS&
    /:USING &BKPF-BELNR&
    /:USING &BSEG-GJAHR&
    /:CHANGING &V_BUZEI&
    /:CHANGING &V_SGTXT&
    /:CHANGING &V_DMBTR&
    /: ENDPERFORM
    IL  &V_BUZEI&,,     &V_SGTXT&,,,,&V_DMBTR&
    Please suggest me whetther we can call write_form from external subroutine. or is there any loop commands in SAP SCRIPT Form.
    Regards,
    Jana

    Hi!
    The LOOP is always within the printer program. In this case also.
    Just check out the RFKORI35 include, the LOOP begins in the 215th line (in 4.6C).
    SORT HBSEG BY BUKRS SORTP1 SORTP2 SORTP3 SORTP4 SORTP5
                          BELNR GJAHR BUZEI.
            LOOP AT HBSEG.
    *         WHERE BUKRS = SAVE_BUKRS.
              SAVE_BUKRS  = HBSEG-BUKRS.
              IF  ( HBSEG-KUNNR = SAVE_KUNNR
              AND   NOT SAVE_KUNNR IS INITIAL )
              OR  ( HBSEG-LIFNR = SAVE_LIFNR
              AND   NOT SAVE_LIFNR IS INITIAL ).
                CLEAR RF140-ELEMENT.
                RF140-ELEMENT = '521'.
                CALL FUNCTION 'WRITE_FORM'
                         EXPORTING  WINDOW    = 'MAIN'
                                    ELEMENT   = '521'
                         EXCEPTIONS WINDOW    = 1
                                    ELEMENT   = 2.
    You might try out to write your code within the 521 elemnt in the sapscript.
    Regards
    Tamás
    Edited by: Tamás Nyisztor on Jun 12, 2008 3:34 PM

  • Printing multiple pages per sheet using a PostScript driver and GhostScript.

    I have three PDF files containing a total of 165 pages. I would like to print 162 of these pages onto two sides of a 8.5 × 11 in. "Letter" size paper. That is 81 pages per sheet. I don't care about loss of clarity or readability, just that fact that there are 81 (or I suppose 80 would be possible and would fit much nicer) pages of the document shown. I've seen this done before, so it is possible. It involved printing using a PostScript driver. I don't own a PostScript printer, so GhostScript will take the resulting PostScript document and print it on a non-PostScript printer.
    The first issue I'm having is with using the PostScript driver to print 80 pages per sheet. The only printing options I can find allow you to print 1, 2, 4, 6, 9, or 16 pages per sheet, no customizable value present.
    Does anyone have any words of advice or a source for information on the process of how this can be done? Thanks in advance.

    "The only printing options I can find allow you to print 1, 2, 4, 6, 9, or 16 pages per sheet, no customizable value present."
    There's no "Custom..." to choose from.
    Edit: Alright! I solved my own problem. In order to print a customizable number of pages per sheet 'Page Scaling', under the 'Page Handling' section of the  'Print' window, must be set to "Multiple pages per sheet". At this point more options populate the window, one of which is a new but seperate dropdown for 'Pages per sheet' with "Custom..." as a selection. This is different, however, from the 'Print' window's 'Properties' sub-window which has a form entry drop-down for 'Pages Per Sheet'. Hurray for unintuitive software GUIs! Hopefully this post will help others.

  • 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.

Maybe you are looking for

  • How can i save the data from ALV grid to my database tables?

    Hi all, Suppose in a grid i want to edit some fields and after editing the data i want to store the refresh data to my database tables. How can i do that? what is procedure? Please tell me in details. Thanks in Advance, Abhijit.

  • Background Job is not running in KW

    Hi All, I have problem with background job. I am working on Knowledge warehouse server. And I am scheduling background job to upload contents. But background job is not finishing at proper time. And while displaying trace it is giving following error

  • BUG: Perforce Plugin having problems on JDev 10.1.3.0.4 (SU4) on Mac OS X

    I've downloaded the Perforce plugin, and try to connect to the Perforce server here. When I click Versioning > Connect to Perforce... first it takes a long time for the dialog box to open, next I fill in: - username - password - leave remember passwo

  • SSRS 2008 - Invalid Class

    Dear all, I have install SQL 2008 in a new machine with Reporting Services 2008. When I go to 'Reporting Services Configuration Manager', I can see the default server name, the report server instance not auto detects the 'ReportServer' database that

  • Events created on iPad and/or iPhone won't show up in iCal

    Events created on iPad and/or iPhone won't show up in iCal. I do not use Mobile Me, or Google (I learned that one the hard way). I am getting tired of creating events (and contacts) and then having to remember to go back on my Macbook and create them