Query regarding Printing multiple documents

Hi,
We would like to know how we can print multiple documents at once not one by one in SAP.
Presently we are using FB03 to print the GL document one by one.
Thanks
Pooja Gupta
SAP FICO Consultant

HI,
We also encountered with the same problem and now we are using HP solution for it.
There are four major problems with the SAP print spool process:
1. Limited bidirectional communication between the SAP environment and the underlying operating
system (UNIX, Linux, and related systems). After the file transfer to the host, the only information
that passes between the two environments is whether the file still remains in the print queue (if the
SAP environment is configured to enable polling).
If the file is no longer present in the host’s print queue, the SAP environment assumes that the file
has printed. If the file disappeared for any other reason, such as a reboot of the operating system
or if the printer is turned off, the assumption is not correct. SAP proceeds to process the next
output request and the file simply disappears, leaving no trace of the failure.
Most often, SAP sets the status flag to ‘complete’ after transferring the request to the host spool
system. This action is a false positive because it actually indicates the handoff is complete, but not
that the job is printed. It aggravates users and increases calls to the helpdesk.
2. The lpr command passes only very specific instructions to the host spooler. The host only attempts
to deliver the file to the specified printer; it does not wait for the printer to confirm that the last
pages printed. It does not perform transformations, repackage the data, or redirect the file to
another printer. Nor does the host track the file and keep a record of what happens. The lpr
command (in some of the UNIX-related distributions) does allow an option to send an e-mail at
completion of a print job, but this option can quickly clog up the e-mail system and is rarely used.
3. Users have to make all adjustments to data within SAP before initiating the print request using the
capabilities already programmed into the SAP environment. This limitation includes advanced
print features such as staple, duplex, and resize, although administrators can enable the SAP
spool work process to handle these types of functionality by creating a new print driver. Further
extensions require additional programming within the environment.
4. A relatively inflexible and unfriendly input process can cost money and slow business processes.
For example, reports often need to go to people in different offices or at different sites. Users must
create multiple output requests in order to send the documents to multiple destinations, or users
must send the report to a print center where someone (extra headcount) collects the multiple
copies and mails them to the recipients (extra mailing costs and extra time). Sending reports by
fax or e-mail require a different set of steps, which further burdens the user.
Regards,
Satish Muvva.

Similar Messages

  • Printing multiple documents from CV04N

    Hi friends,
    I have a list of documents arrived thru CV04N transaction. Now I need to print multiple documents at one go. When I select a group of documents and clicked the Print Icon at the top of the list, the system is printing only the first document in the group. My requirement is all the document in the group needs to be printed.
    Any pointers on how to achieve this.
    Regards
    S.Sivakumar

    Hi toocann
    Thanks for the inputs provided. The  programs "CV120_DOC_CHECKOUT_VIEW" and "CV120_START_APPLICATION" are to be added at what place in the BADI?
    Regards
    S.Sivakumar

  • How can I use Adobe Acrobat X Standard to print multiple documents on Lexis Nexis File & Serve?

    I am unable to print multiple documents on the Lexis Nexis File & Serve legal website that used their Batch Document Processor software. The technicians there told me that Adobe Acrobat X Standard has an incompatibility with their Batch Document Processor software. I never had a problem with Adobe Acrobat 6.0 or Adobe Acrobat 9.0 and the Batch Document Processor program at the Lexis Nexis File & Serve website. I am now running Windows 7 Professional SP1. Before, we were running Windows XP Professional SP3 with the IE 8.0 browser. We now are running the IE 9.0 browser.

    The answer is in the question...
    Only the Pro version of Acrobat is capable of batch processing files (which
    I assume the Lexis Nexis tool uses). Until now you had Acrobat Pro, and now
    you have Acrobat Standard, and therefore you can't use it anymore. You need
    to upgrade to Acrobat Pro.

  • Printing multiple documents

    Hello FORM experts!
    I have a question here..
    In my program I generate multiple documents and then want to print them all at once with one button click.
    Document info is in a table which is also written into the database table.
    How should this work, should I give my smartform calling function some extra parameters to print them all or should I pass all the info to the smartform and make it print them all there with a loop or sth.?
    I'll explain some more..
    I have a report which then generates special kind of invoices...
    when invoices are generated there's a list of them displayed...
    Now I would like with one button to call out a smartform and print them.
    I want 1 pop-up print screen for all the invoices.
    Right now, I get a pop-up for every single invoice it is printing
    Thank you!

    Hi,
    You can try the following.....Loop at your final internal table and call subroutine printform.In which you will call ur smartform for printing.
    Write the following code....
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          FORMNAME                 = 'ZZSD_INVOICE_TRADE_FORM'
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
        IMPORTING
          FM_NAME                  = LV_FM_NAME
    EXCEPTIONS
      NO_FORM                  = 1
      NO_FUNCTION_MODULE       = 2
      OTHERS                   = 3
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION LV_FM_NAME
      EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
        CONTROL_PARAMETERS         = CONTROL
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
        OUTPUT_OPTIONS             = OUTPUT_OPTIONS
        USER_SETTINGS              = ' '
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
      TABLES
        IT_DISPLAY                 = IT_FINAL
    EXCEPTIONS
      FORMATTING_ERROR           = 1
      INTERNAL_ERROR             = 2
      SEND_ERROR                 = 3
      USER_CANCELED              = 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.
      CONTROL-PREVIEW           = 'X'.       "Preview the output of Smartform
      CONTROL-NO_DIALOG         = 'X'.       "Don't show Dialog
      OUTPUT_OPTIONS-TDDEST     = PRINTER.   "Spool: Output device
      OUTPUT_OPTIONS-TDNOPRINT  = ' '.       "No printing from print preview
      OUTPUT_OPTIONS-TDCOPIES   = 1.         " number of print copies
      OUTPUT_OPTIONS-TDIMMED    = 'X'.       " Print Immediately (Print Parameters)
      OUTPUT_OPTIONS-TDDELETE   = 'X'.       " delete the request after printing
      OUTPUT_OPTIONS-TDLIFETIME = '5'.       " spool retention period
      OUTPUT_OPTIONS-TDCOVER    = ' '.       " no cover print
    REgards,
    Kashyap

  • Smartform error while printing multiple documents

    Hi Friends,
    When I am  trying to print individual documents the Smartform output is correct but when I select multiple documents its showing an error that says ' Table GRAPH does not fit into the window'. When I change the GRAPH node it says some other node does not fit. And it goes on.
    Is there any easy way to correct this error ?
    Please help.
    Regards,
    Dikshitha G

    Hi Dikshitha,
    First you need to check whether you have used TABLE under a secondary window or Main window? When you use table GRAPH under MAIN window then automatically next page will be printed and Window width adjusts automatically. Only make sure Hight and Width of Window should not be less than the Table. Click on Output tab of Main window and not down hight and width similarly check for TABLES.
    Regards,
    Gaurav.

  • Print multiple documents in sharepoint client object model

    Hi  All,
    I  have a content editor webpart which displays documents from document library using sharepoint client object model. 
    test1 test2 test3 test4 are documents from document library.
    I have requirement to print the selected documents in single click of print button.
    once I clicks on print button all the selected documents should get printed.
    Is there any way to achieve this....?
    Regards
    Srinivas
    srinivas

    Hi Srinivas,
    You can do this but it will be combination of ECMA and JS. First you need to get selected file name by ECMA script then call a java script function to print documents.
    Here is script to print all docs: http://stackoverflow.com/questions/7187400/printing-multiple-pdf-files-using-javascript
    Hope it could help
    Hemendra: "Yesterday is just a memory,Tomorrow we may never see"
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • How do I batch print multiple documents?

    We often print a number of different docs but we are changing to Win7 and our present way of doing this won't work in the new software.

    Bluesman123 wrote:
    This works for a doc at a time but we often have thirty or more to do.  One at a time takes too long.
    There is no limit to the number of docs you can print in one go.  However, it will be difficult to select multiple documents if they are not in the same folder.

  • How to print multiple documents in SAP

    Hello Users,
    I am using SAP to Print the customs documents for sea shipments which is required to Print the Commercial invoice , Packing List & Bill of lading Instruction.
    so there is any way to Print above three documents combined for list of Order i/o go order by order?

    Hi Moh,
    I'm not sure though, but if they are shipping orders, I guess they and be sent and printed via CVD1 transaction.
    I have done it on shipping Safety Data Sheets, Cover letter etc... along with while shipping the material.
    This can be done via customizing.
    Regards,
    -Chris.

  • Query regarding using multiple physical sources

    Hi All,
    Facing an issue in fetching data from multiple physical sources in OBIEE,
    We have 2 facts tables on different databases, having same columns.
    How can we get results from both the tables in the presentation layer.
    I created one Logical Fact table, added both sources to it, but results are displayed only from logical source which i added first.
    OBIEE version:
    10.1.3
    OS Windows
    Thanks,
    Nik

    Hi Nikhil,
    If you have identical columns in both the sources, obiee will always choose only one LTS .To understand how to force multiple LTSs in query, check this thread:
    2 table sources in LTS but only 1 in query?
    Regards,
    Dpka

  • Printing multiple documents in single pdf on double sided printer

    What is the best way to print a PDF document with a large number of documents so that the start of a successive document does not end up printing on the back page of the prior document? Each document has a cover page and could be used as a "key", but not sure how to set that "cover page" as the key which could then be used to instruct the printer to start on a new page - almost as if a new print job??

    http://www.a-pdf.com/?product-mg
    is a program which you can select a bunch of pdf files and combine them into one pdf.  In the options pane , you can tell it to automatically add a blank page at the end of each odd numbered pdf file.   You can simply then print the new combined pdf double sided on your copier, and it would print correct.
    If you want to still have the pdf as separate pdfs, in Options you can select " bookmark by file name" before combining. 
    After combining, view the new pdf in Acrobat and  you can 'split pdfs by top level bookmarks.

  • Regarding printing multiple PO using Smart forms

    Hi Abap Gurus,
                             i have to print the multiple purchase order in smart form such that first purchase order number details in first page. second purchase order in second page. how can i acheive this solution. i searched in sdn but not found a proper solution.

    hi,
    use this function module
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    formname = 'ZTEST_SMARTFORM'
    IMPORTING
    fm_name = fm_name.
    it passes the function module name generated....
    then call that function module..
    CALL FUNCTION FM_NAME
    EXPORTING
    control_parameters = wa_control_par
    output_options = wa_output_options
    IMPORTING
    job_output_info = it_otf_data
    TABLES
    it_nfal = it_nfal_final.

  • Exchange Query - regarding to Multiple NIC

    Dear All ,,  I hope you are well , my query ,,, we have in my environment exchange server , 3- Exchange , two in the same site and another in the other site , we have DAG involved all Previous server , we add new NIC to a single server with a different
    subnet mask ,,, but this NIC can be reachable from other server ,,, i tested through ping,,, Tracer route ,,, ran failover cluster and everything goes well but when i see Status network card i saw just Sent Packet , Receive Dropped 0 ,,,,,
    and when i go to event viewer i see error in Eventid 2604..2501..2601 ,So i need someone explain to me what is mean sent packet and no receive packet ,,,, i need help 

    Hi,
    As far as I know, the event error is mostly likely caused by the network issue:
    http://support.microsoft.com/kb/2025528
    To find the root cause of no receive package, we can use Network Monitor to detect the NIC.
    And here is a reference about more troubleshooting of NIC:
    http://support.microsoft.com/kb/325487
    Additionally, you’re welcomed to confirm the network issue on our following forum:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?category=windowsserver
    Thanks,
    Angela Shi
    TechNet Community Support

  • Query regarding printing

    i have to print a material description of 40 characters
    into label of small size.when i am printing the discription is overlaped into other window some times when material descriotion length is around 35 characters and it is printing in next line sometimes.moving to next line is not a problem
    but should not overlap.is there any function module to calculate length of material description dynamically and allign accordingly.

    U can calculate the length of a fields as
    DESCRIBE FIELD MAKTX LENGTH len.
    len is a variable of type I.
    Narendra

  • Can we print multiple excise invoice documents with one click?

    Hello,
    SAP has provided with t-code 'J1IP' for printing excise invoice documents. But for printing multiple documents we need to click print button each time for every new document. is there any other way by which you can print bulk excise documents without clicking print button each time?
    Thanks in advance.
    Neha

    Hi Neha,
    It is possible on SAPB1.
    Try to Use the Document Printing Window on Financials or Marketing or Banking Module..
    Try this,
    ->> Financials.
    -> Choose Document Printing.
    ->> Open the Document Printing Window.
    ->> Select the Document Type - Incoming (or) Outgoing Excise Invoice.
    for example, IF you Select the Document Type - Incoming Excise Invoice.
    ->> Select the require Series.
    -> your requirement wise, put the tick mark of Open Only or &Only Documents Still to Be Printed.
    ->> put the Posting Date From Date & To Date.
    ->> Assign the No. of Copies - 1 or Your wishes.
    ->> Click the OK button, than will Open the Print Incoming Excise Invoice Window.
    ->> Choose all Incoming Excise Document (select all row).
    ->> Click the Print button.
    Regards,
    Madhan.

  • Printing multiple sets of Portfolio documents collated

    I use Adobe Acrobat 9 Pro's pdf Portfolio to print multiple documents with similar printing properties (two-sided, stapled, hole-punched) but they are separately two-sided and separately stapled. I try doing multiple copies but the print job comes out with 20 copies of document 1 of the porfolio followed by 20 copies of document 2 of the porfolio, and so on. How is it possible for me to make multiple sets of the portfolio which are by set rather than by document?

    I am also looking for an answer to this question.

Maybe you are looking for

  • How do I reformat my Seagate Expansion external hard drive so I can use it for Mac

    I recently purchased a 3TB Seagate® Expansion® external hard drive for PC. My plan is too reformat it so that I can use it, but it has been acting wierd on me. It says on Disk Utility that it is 4 gbs but I have a 3TB one. Im on OSX mavericks by the

  • How to wait until an Entourage Schedule item completed

    I am trying to script the "Send & Receive All" operation in Entourage, and I have found that I can trigger the process off (from within my script) by: tell application "Microsoft Entourage" execute schedule "Send & Receive All" end tell However, the

  • Oracle File Demo in Flash

    Recently I developed a software and now I want to prepare a demo in Flash, Please help me how can I do this.

  • URLConnection vs sockect connection

    I need to connect to a dataserver it seems i have two choice, I can use URL myURL = new URL("http://server:port#/../.... " ) URLConnection mycon = myURL.openConnection( ) ; or I can use socket connection by passing server name and prot number. Here i

  • Cap 4 quiz published in cap 5 not working

    Our site runs quizzes made from cap 4 fine but when I make a change to a cap 4 quiz using cap 5 and republish, the quiz will no longer work. Where do I start looking for a fix?