Smartform for mass printing

Hi,
Exepets I have one requirement for smartform i want to print smartform bulk with same layout .Please give me advise

data: copies like ssfcompop-tdcopies.
start-of-selection.
copies = 5.
call function 'SSF_FUNCTION_MODULE_NAME'
  exporting
       FORMNAME                 = 'ZAPP_FOAM'
  IMPORTING
       FM_NAME                  = 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 fm_name
exporting
  OUTPUT_OPTIONS = copies
  TABLES
     ITAB = ITAB
     T_ADRS = T_ADRS
  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.
thanks
saurabh

Similar Messages

  • Standard Smartform for label printing for packages - pls advice

    Hi All,
    I need help in changing a print program ie Standard Smartform for label printing for packages ?
    Standard Driver program: SDPACKDR
    Please provide me with the detailed steps for editing the Std Smartform according to any requirement.
    Points will be rewarded promptly.
    Thanks.

    hi,
    1. The smartform name is SD_PACK_ETIK.
    2.Just copy the standard program into Zprogram and make chanes and assign in NACE with the form.
    3.But,in smartform lable printing is not possible.
    4.you can print barcodes.
    Regards,
    Kumar(Reward if helpful).

  • Standard SMARTFORM  for Check Printing/ Payment Advice

    Hi All,
      I have one important question...
    Standard <b>Script</b> Check Print Program =  <b>RFFOUS_C</b>
    Standart Script Layout Name  = F110_PRENUM_CHCK
                                &  F110_D_AVIS
    We have to modify it as per client requirment.
        But I want to know the <b>Standard SMARTFORM & Standard Smartform driver Program for CHECH printing & payment advice ?????????????</b>
    Is there no Smartform for check printing or if exist then please guide me?????????????????

    hi umesh,
    1)anyone can help me,while extending idoc,i added one segment to idoc by extending debmas.that segment has two fields.while populating data to idoc,i am getting problem like VSV0001.exit is not allowing me to write the code.
    plz anyone can help me on this issue.if you did't understand this problem plz tell me how to extend the idoc.more concentration on while populating the data in to idoc.like which function module i have to use.in customer master idoc.debmas.i am new to this environment.plz help me.like complet work till completion of task.
    2)and my next assignment is in smartforms.plz let me know .i was created the screen.according to that screen.i have to make print program.plz tell me how to give the text elements.
    like we have given in scripts, page window and then F9 to give the text elements.and make the program.like that any one can tell me clearly.how to make the complete smartforms programs.
    plz this requirement is very very urgent,plz could you send it for my [email protected]
    advance thanks for your help.
    thansk&regards,
    radhiks.

  • Creating spool file for  Mass printing of smartforms

    Hi all
    My requirement is Mass printing of Development Plans,
    In this case is i need to select all the smartforms depending upon the selection screen data.& i need to pass all the smartforms to newly created spool file..
    how should I use TSP01 & Function Module 'GET_PRINT_PARAMETERS' for this smartform spool.
    so can any body explain me in detail..
    How to create spool ID, ?
    how to create spool file in this case..??
    How to pass smartform data to that new spool file../??
    Any sample codes for this…./??
    Thanx in advance,
    Regards,
    Kalam A.

    Check the links -
    Re: How to create a spool?
    How to create a spool request
    Regards,
    Amit
    Reward all helpful replies.

  • Use ZBBP_PO smartform for PO printing in SUS

    Hi Gurus,
    Is it possible to use the SRM PO smartform for output in SUS?
    That is, if the vendor prints the PO form in SUS, is it possible to call the smartform ZBBP_PO instead of ZBBP_SUSPO?
    Would really appreciate any help.
    Regards,
    Kezia

    Hi,
    For SUS for any Output you can use the BADI BBP_SUS_DOWNLD_FILES for printing.
    Just check following help
    Use
    You can use this Business Add-in (BAdI) to specify file names and folders that differ from those used in the standard system for downloading documents. You can also specify the XSLT program the system uses for converting from XML to CSV, as well as the form the system uses for printing documents.
    Standard settings
    SAP does not deliver a standard implementation for this BAdI. If there is no active implementation, the system uses the following:
    • File name for:
    o Purchase order: PO_<purchase order number>
    o Confirmation: CONF_<Confirmation number>
    o Shipping notification: ASN_<shipping notification number>
    o Invoice: INV_<invoice number>
    • XSLT program for:
    o Purchase order: BBP_SUS_XML2CSV_ORDER
    o Confirmation: BBP_SUS_XML2CSV_CONF
    o Shipping notification: BBP_SUS_XML2CSV_ASN
    o Invoice: BBP_SUS_XML2CSV_INV
    • Output form for:
    o Purchase order: BBP_SUSPO
    o Confirmation: BBP_SUSCONF
    o Shipping notification: BBP_SUSASN
    o Invoice: BBP_SUSINV
    The BAdI provides the FILES_MODIFY method with the following parameters:
    Importing
    IV_OBJTYPE Document type (purchase order or invoice)
    IV_OBJID Document number
    Changing
    EV_XML_FNAME XML file name
    EV_CSV_FNAME CSV file name
    EV_PDF_FNAME PDF file name
    EV_REL_DIR relative folder
    EV_XSLT_PNAME XSLT program
    EV_SMARTFORM output form
    Activities
    If you want to use file names or forms that differ from the standard system, implement the BAdI and activate the implementation.
    Example
    include BBP_PD_CON_CL.
    CASE iv_objtype.
    Order
    WHEN c_suspo.
    ev_xslt_pname = 'YOUR_ENTRY'.
    ev_xml_fname = 'YOUR_ENTRY'.
    ASN
    WHEN c_susasn.
    ev_xslt_pname = 'YOUR_ENTRY'
    INVOICE
    WHEN c_susinv.
    ev_smartform = 'YOUR_ENTRY'.
    CONFIRMATION
    WHEN c_suscf.
    ev_xslt_pname = 'YOUR_ENTRY'.
    ENDCASE.
    See these related threads:
    Smartform for SUS PO
    Re: MODIFICATION IN OUT PUT (pdf) OF SUS PO
    You need to implement the above mentioned BADI to call another Form(other then the std ).
    BR,
    Deepti..

  • Alignment issues in smartform for ASCIIPRI printer

    Hi all,
    I am developing an Invoice layout for ASCIIPRI printer. In the main window there are two tables. Both the tables are of equal width, the same as of the main window. Also, the alignment of last column of both the tables is RIGHT-ALIGNED, and the value it carries is a numeric one. The width of the last column of the tables is also the same, ie 4 cm.
    Yet when i view the print preview, the alignment of those two values in the last columns of the tables are not the same. The value that is displayed in the latter table is 5-6 chars to the left side to the value above it.
    I tried to figure out the reason but haven't achieved nay breakthroughs yet. Any help in this regard will be highly appreciated. Is this anomaly has something to do with the ASCIIPRI printer??
    Regards,
    Varsha

    hi
      then try to use &field(CIZ)& .
    if it not work  then     FIELD(No.)     {No.  -
    > means  minimum  character  required to display data   }
    tell me the TABLE and FIELD  name also
    revart.
    Edited by: sachin sharma on Jan 10, 2008 12:19 PM

  • Spool file for Mass printing of smartforms

    Hi all..
    My requirement is as follows...
    Once the selected population is established, the new program would select all  those Development Plans and <b>create a spool file</b> of all the printable formats (using the same smartform as the individual form print).  This spool file would then print to the printer selected by the user on the selection screen.  This would need to be run in the background, as it is expected it would have a long run time.
    can any body tel me clearly how to approach this requirement,
    any sample code for spool file creation in this case../??
    Regards,
    Kalam A.

    Hi all..
    My requirement is as follows...
    Once the selected population is established, the new program would select all  those Development Plans and <b>create a spool file</b> of all the printable formats (using the same smartform as the individual form print).  This spool file would then print to the printer selected by the user on the selection screen.  This would need to be run in the background, as it is expected it would have a long run time.
    can any body tel me clearly how to approach this requirement,
    any sample code for spool file creation in this case../??
    Regards,
    Kalam A.

  • Whats mass printing ?multiple page formating?

    whats mass printing ?multiple page formating?

    hi..
    plz follow the mentioned web link for mass printing ..
    and multiple page formatting is ...
    sapscript does not support multiple page formatting where as smartform does.
    Multiple page formating is nothing havinfg different page formats in  a form.
    eg..
    sapscript zform has 3 pages..
    1 page has portrait
    2 page has landscape format and 3rd page has landascape.
    this is not possible with sapscript..it tends to error. however, you can do so in smartform. Also this is sometime possible in sapscript by creating different form for each page and using the same print program.
    regrds,
    shamim.

  • Mass printing of invoices

    Hi,
    when i create the invoice , the output types are determined automatically when saving the invoice in VF01.
    1 )i want that no invoice printing shud happen while saving.
    2) aslo i want all the invoices made by us during the day should be mass printed in the night.
    3) there are three options in output type config. "send print with own application/send while saving/send with background job.
    what is meant by send with pwn application
    how to achieve the above two things. what config and or coding shud be done
    regards
    sachin

    Hi,
    1)If you do not want the invoice to be printed as soon as the doc.is saved,Go to VV31---> enter the relevant OUTPUT TYPE ->EXECUTE-> Chnage the value in the column DATE/TIME from 4 (4     Send immediately (when saving the application) to 3 (3 Send with application own transaction).
    2)For mass printing you can use VF31 for mass printing and if you want the invoices to be printed in the night , then select 1(1     Send with periodically scheduled job) in the column DATE/TIME and do the necessary congig with your BASIS and ABAP team.
    3) The 3 ,Send with own application means that the system will automatically populate the output type as soon as the transaction is being processed.

  • Mass printing of excise invoices

    hi sap gurus,
    i want to go for mass printing of excise invoice in the order of 40-50 invoices.
    is there any report or any transaction code which can help me do mass printing of excise invoices on fortnight basis.
    please do help me on this issue.
    j1ip only enables me to print one excise invoice at a time.
    wat i want is multiple printing of excise invoices.
    regards,
    Siddharth.

    Dear Siddharth
    For information, in j1ip itself, you have the option of giving multiple excise invoices.  Assume you have some 30 excise invoices to be printed out from sl.no.1 to 30, in j1ip, against the field "Excise Invoice", in the first box enter 1 next to "to" tab, enter 30.  If you execute now, you will get bulk print outs.
    Alternatively, you can also select the "Excise Invoice Date" field where also you define "From - To" date.
    thanks
    G. Lakshmipathi

  • Getting Printer Destype for Report Printing

    Hi all
    I am using 9ids.
    On server side it works fine
         set_report_object_property(rep_id,REPORT_DESTYPE,PRINTER);
         set_report_object_property(rep_id,REPORT_DESNAME,'\\Admin1\NPR');
    Now i want from client side where report server is not loaded but printers are installed on client machines.
    I want from form to get that client printer and report output on client printer
    some ideas.

    Hi,
    actually three things need to be true for Reports Server to be able to print on a local printer.
    1. The local printer must be a network printer
    2. The network printer must be configured on the server that runs the Reports Service
    3. The Reports Services provess must run under a user that has network access privileges. This can be achieved by starting the HTTP server (e.g. OC4J in Oracle9iDS) while being logged in as such a user.
    You can use Java in Forms to get a list of printers configured on the client, but I haven't looked at this long enough to tell if there is a chance to determine whether or not a printer is a network printer.
    I think that downloading teh Reports as a PDF document in teh Browser and then using teh Acrobat Reader print option is a good alterantive (if not for mass printing)
    Fran

  • Sapscript Mass Printing

    Hi All,
    I would like to ask for the Transaction code for Mass Printing Sapscript form and how it is used. 
    Thanks.

    >
    jamison2004 jordan2004 wrote:
    > Hi All,
    >
    > I would like to ask for the Transaction code for Mass Printing Sapscript form and how it is used. 
    >
    > Thanks.
    What do you mean by MASS PRINTAING?
    means you want to print some multiple copy of any layout?

  • AR customer invoice mass printing

    Hi
    I am trying to test mass printing for the AR invoice and credit memo.
    I am trying to use t-code f.62 to achieve that, the transaction works fine (besides asking enter the printer name for every document to print), but when i look at the spool, there are more than 1 documents per company code on each spool (5 docs) and it looks as if the first form pastes the same amount for all the other documents on that same spool.
    How do i fix this?
    2nd questions: is there any other t-code for mass printing your invoices and credit memos for AR?
    Thanks in advance
    Admire

    Hi,
      Try with the standard report S_ALR_87012174 and give List->Print. This will print all the open items.
    Regards,
    B. Radhika

  • Mass printing of order confirmation - output BA00

    Hi, can anyone advise if there's a std transaction code that can perform mass printing of order confirmation from SO with output 'BA00'?
    Thanks
    PP

    Hi there,
    I dont think there isany T-code for mass printing multiple O/p types.
    Rather you can run RSNAST00 in SE38. Give the BA00 in Message type, sales order num in Obj Key. Give the default printer to which you want to print the docs.
    Rather, you can ask your ABAPer to develop a custom transaction calling the RSNAST00 when executed. You can also define the selection inpits like sals orders, message type, Sales org, printer, etc.
    Once the user clicks on execute, system will call RSNAST00 in the background.
    1 question: Whay do you want to mas print the BA00? It wil trigger immediately after saving the sales order provided condition records are maintained right?
    Regards,
    Sivanand.

  • Mass Printing of Orders

    Hi All,
    Like we have Mass Printing of Billing as VF31 and for deliveries it is VL71, what is the T. Code for Mass printing of Orders?
    Thanks & Regards,
    Vinod

    Hi,
    You can perform mass printing with the help of LSMW.
    For this contact an ABAP guy.
    regards,
    Siddharth.

Maybe you are looking for

  • Message-Mapping transformation Error(Soap - XI - SAP)

    Hi We have a sceanio Soap <-> XI <-> SAP We could see the RFC return message from SAP but while trasforming that message to SOAP response ,we are getting the following error. We have manually run the response mapping program, it is executing fine. <S

  • Update table via RESTful webservice

    Hi, I wonder if it is possible to update or insert data with an apex published restful webservice. Whenever I try to test a web service reference with html PUT method I get an 401 - unauthorized. So is it possible in general to modify and add data to

  • Exercise 4.3 in Hands-On Oracle DB 10g Express Ed for Windows

    This is just an FYI ... (and a great suggestion to post this comment here as well for correction of documentation by an Admin in Oracle XE forum) Exercise 4.3 in Hands-On Oracle DB 10g Express Ed for Windows is for demonstrating the use loops. Accord

  • How to find out iTunes gift status

    Is there a way to find out if recipient has redeemed the gift certificate or not? Thanks SG compaq presario   Windows XP Pro  

  • Find missing security Patches

    Hello team, Is there anyway to find out all the security patches we are missing in our production environment. Thanks Ammu