Bar code  smart forms

hello everyone,
can anyone say me how to change the display size of the bar code in smart forms.I have used the bar code inside a template,but the bar code extends beyond the template.plz suggest me what to do.

Hi
Try to adjust the Narrow module width" and "liner height" in code parameters. of the barcode that u have created .(SE73)
and try ..
increase the template size if required
surya

Similar Messages

  • Smart Form + Disble POP UP ?? How

    when we r using smartforms in our programs, in execution pop-up comes(to enter printer name(LP01/LOCL), etc) , how to disable that pop-up ??? i want direct print preview of report?
    i am passing this parameters , but i am not able to achive,,
      wa_control_parameters-no_dialog = 'X'.
      wa_control_parameters-preview = ' '.
      wa_control_parameters-no_open = 'X'.
      wa_control_parameters-no_close = 'X'.
      wa_control_parameters-device = 'PRINTER'.
    wa_output_options-tdarmod = '3'.
      wa_output_options-tdnoprev = 'X'.
      wa_output_options-tddest = 'LOCL'.
    wa_output_options-tdnoarch = ' '.
      wa_output_options-bcs_langu = sy-langu.
        CALL FUNCTION fname
       EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
         control_parameters         = wa_control_parameters
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
         output_options             = wa_output_options
    pls help me!!!
    Regards,
    Ramesh.

    Try this code
    Smart form to spool 
    REPORT  zgspool                                 .
    TYPES : BEGIN OF ty_itab,
              kunnr TYPE kna1-kunnr,
              name1 TYPE kna1-name1,
              land1 TYPE kna1-land1,
            END OF ty_itab.
    DATA : binfilesize TYPE i,
           file_name TYPE string,
           file_path TYPE string,
           full_path TYPE string,
           line(5).
    DATA : struct TYPE itcpo.
    DATA : gt_itab TYPE STANDARD TABLE OF ty_itab,
           wa_itab LIKE LINE OF gt_itab.
    *---Start Get Spool IDs
    DATA : BEGIN OF ty_tab,
            rqident TYPE tsp01-rqident,
            rqdoctype TYPE tsp01-rqdoctype,
           END OF ty_tab.
    DATA : gt_tab LIKE  STANDARD TABLE OF ty_tab,
           wa_tab LIKE LINE OF  gt_tab,
           itab_pdf    LIKE tline OCCURS 0 WITH HEADER LINE,
           w_bytecount TYPE i.
    *---end Get Spool IDs
    *struct-TDPREVIEW = 'X'.
    struct-tdnewid   = 'X'.
    struct-tddest       = 'LP01'.
    *calling layout script from abap/4
    CALL FUNCTION 'OPEN_FORM'
      EXPORTING
        form     = 'YFORM'
        language = 'E'
        device   = 'PRINTER'
        options  = struct
        dialog   = 'X'
      EXCEPTIONS
        form     = 5.
    CALL FUNCTION 'START_FORM'
      EXPORTING
        form      = 'YFORM'
        language  = 'E'
        startpage = 'FIRST'.
    SELECT kunnr name1 land1 FROM kna1 INTO TABLE gt_itab
                  UP TO 10 ROWS.
    LOOP AT gt_itab INTO wa_itab.
      CALL FUNCTION 'WRITE_FORM'
        EXPORTING
          window  = 'MAIN'
          type    = 'BODY'
          element = 'ABAP'.
    ENDLOOP.
    CALL FUNCTION 'END_FORM'.
    CALL FUNCTION 'CLOSE_FORM'.
    COMMIT WORK.
    IF sy-ucomm = 'PRNT'.
    *----Get the Spool Number
    *wait up to 3 seconds.
      REFRESH gt_tab.
      CLEAR wa_tab.
      SELECT  rqident rqdoctype INTO TABLE gt_tab
               FROM tsp01
      WHERE rqowner = sy-uname.
      IF sy-subrc = 0.
        SORT gt_tab BY rqident rqdoctype.
        DESCRIBE TABLE gt_tab LINES line.
    *----Read Recent Spool Number only.
        READ TABLE gt_tab INTO wa_tab INDEX line.
        IF wa_tab-rqdoctype = 'LIST'.
          PERFORM get_abap_spool_in_pdf.
        ELSEIF wa_tab-rqdoctype = 'OTF'.
          PERFORM get_otf_spool_in_pdf.
        ENDIF.
        PERFORM write_pdf_spool_to_pc.
        DATA : var(100).
        DATA : var1(5).
        MOVE wa_tab-rqident TO var1.
    CONCATENATE 'SPOOL WITH NUMBER' var1 'GENERATED' INTO var SEPARATED BY
    space.
        MESSAGE i124(0) WITH var .
      ENDIF.
    ENDIF.
    *&      Form  get_abap_spool_in_pdf
          text
    -->  p1        text
    <--  p2        text
    FORM get_abap_spool_in_pdf .
      REFRESH itab_pdf.
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          src_spoolid              = wa_tab-rqident
        IMPORTING
          pdf_bytecount            = w_bytecount
        TABLES
          pdf                      = itab_pdf
        EXCEPTIONS
          err_no_abap_spooljob     = 1
          err_no_spooljob          = 2
          err_no_permission        = 3
          err_conv_not_possible    = 4
          err_bad_destdevice       = 5
          user_cancelled           = 6
          err_spoolerror           = 7
          err_temseerror           = 8
          err_btcjob_open_failed   = 9
          err_btcjob_submit_failed = 10
          err_btcjob_close_failed  = 11
          OTHERS                   = 12.
      IF sy-subrc NE 0.
        MESSAGE e398(00) WITH 'Cannot convert to PDF. Error =' sy-subrc.
      ENDIF.
    ENDFORM.                    " get_abap_spool_in_pdf
    *&      Form  get_otf_spool_in_pdf
          text
    -->  p1        text
    <--  p2        text
    FORM get_otf_spool_in_pdf .
      REFRESH itab_pdf.
      CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
        EXPORTING
          src_spoolid              = wa_tab-rqident
        IMPORTING
          pdf_bytecount            = w_bytecount
        TABLES
          pdf                      = itab_pdf
        EXCEPTIONS
          err_no_otf_spooljob      = 1
          err_no_spooljob          = 2
          err_no_permission        = 3
          err_conv_not_possible    = 4
          err_bad_dstdevice        = 5
          user_cancelled           = 6
          err_spoolerror           = 7
          err_temseerror           = 8
          err_btcjob_open_failed   = 9
          err_btcjob_submit_failed = 10
          err_btcjob_close_failed  = 11
          OTHERS                   = 12.
      IF sy-subrc <> 0.
        MESSAGE e398(00) WITH 'Cannot convert to PDF. Error =' sy-subrc.
      ENDIF.
    ENDFORM.                    " get_otf_spool_in_pdf
    *&      Form  write_pdf_spool_to_pc
          text
    -->  p1        text
    <--  p2        text
    FORM write_pdf_spool_to_pc .
      CALL METHOD cl_gui_frontend_services=>file_save_dialog
    EXPORTING
    WINDOW_TITLE =
    DEFAULT_EXTENSION =
    DEFAULT_FILE_NAME =
    FILE_FILTER =
    INITIAL_DIRECTORY =
    WITH_ENCODING =
    PROMPT_ON_OVERWRITE = 'X'
      CHANGING
      filename = file_name
      path = file_path
      fullpath = full_path
    USER_ACTION =
    FILE_ENCODING =
    EXCEPTIONS
    CNTL_ERROR = 1
    ERROR_NO_GUI = 2
    NOT_SUPPORTED_BY_GUI = 3
    others = 4
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ----DOWNLOADING THE PDF DATA***
      CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
      bin_filesize = binfilesize
      filename = full_path
      filetype = 'BIN'
    APPEND = ' '
    WRITE_FIELD_SEPARATOR = ' '
    HEADER = '00'
    TRUNC_TRAILING_BLANKS = ' '
    WRITE_LF = 'X'
    COL_SELECT = ' '
    COL_SELECT_MASK = ' '
    DAT_MODE = ' '
    CONFIRM_OVERWRITE = ' '
    NO_AUTH_CHECK = ' '
    CODEPAGE = ' '
    IGNORE_CERR = ABAP_TRUE
    REPLACEMENT = '#'
    WRITE_BOM = ' '
    TRUNC_TRAILING_BLANKS_EOL = 'X'
    WK1_N_FORMAT = ' '
    WK1_N_SIZE = ' '
    WK1_T_FORMAT = ' '
    WK1_T_SIZE = ' '
    IMPORTING
    FILELENGTH =
      TABLES
      data_tab = itab_pdf
    FIELDNAMES =
      EXCEPTIONS
      file_write_error = 1
      no_batch = 2
      gui_refuse_filetransfer = 3
      invalid_type = 4
      no_authority = 5
      unknown_error = 6
      header_not_allowed = 7
      separator_not_allowed = 8
      filesize_not_allowed = 9
      header_too_long = 10
      dp_error_create = 11
      dp_error_send = 12
      dp_error_write = 13
      unknown_dp_error = 14
      access_denied = 15
      dp_out_of_memory = 16
      disk_full = 17
      dp_timeout = 18
      file_not_found = 19
      dataprovider_exception = 20
      control_flush_error = 21
      OTHERS = 22
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " write_pdf_spool_to_pc
    reward if useful....

  • How to print BAR CODE in SAP SMART FORMS

    Hi,
    I want to print inspection lot's BAR CODE in the smart form, but i dont know the way how to print this into the smartform.
    if anyone have any idea, please suggest me how to print this as it is urgent for me to complete the object.
    Thanks in advance.
    Best Regards,
    Abnish Jain

    Hello Abnish,
    Welcome to SDN.
    We are able to print barcodes from smartforms. Doing this way, we print barcodes on laser printers.
    We are also printing from sap to zebra printers using two ways:
    1. Download the data to an excel sheet, then creating a macro that opens the printer port and sending the commands to the printer through this "file". All this is done via vb script provided with excel)..
    2. The second way is creating a vbscript (an ascii file from sap) with the printer commands and then runing it using ws_execute.
    You need a barcode reader to read the barcodes, and this scanner acts like a keyboard, it sends the data scanned to the active field on screen. (which might be a notepad, word, excel or an input field or ... ).
    From 4.6c on, you can use smartforms to print barcodes without buying any barcode.dll software nor hardware extention like Bardimm on any laser/inkjet printer (Please Note that I haven't mentioned Zebra printers here!). To do this, you have to create a smartstyle -> character format with the desired barcode font (defined within sap). Then in the smartform, create a window, put the field and associate it the character format. That's all (I mean, that's all we do at least :-). I think, you have to consider the barcode specifications before sending the barcode value to the smartform (Just an example, if you're using 3 of 9, the code should start and end with an asterisk - '*' -) We're printing an interleaved 2 out of 5 barcode in our invoices due to a legal requirement, and we did it this way.
    3. If you have a barcode scanner, then you should not need reading the barcode into an ascii file to get the data read in an standard or custom screen field. You can read it directly to the field you want. (unless... you have complex data coded in the barcode - for example if you're using an ean-ucc 128 compliant code and you're sending several fields in a single code ... In this case, an interface is almost mandatory because you must interpret the data fields according to the ucc standard, split the code into several fields .... and .... pure programming logic ).
    To put it clear: if you have to read, for example, a barcode that holds the legal number of an invoice using a barcode scanner and this number should be sent to migo-> bktxt then you don't need an interface. The scanner itself acts like a fast operator entering the characters using a keyboard and filling in the field.
    We're reading barcodes in several places (when we finish each pallet, when we receive an invoice, and so on. Each case is a different screen. We arent using an ascii file to read these barcodes. Furthermore, we read the invoice legal number into migo bktxt field (Head Text).
    http://www.sap-img.com/abap/questions-about-bar-code-printing-in-sap.htm
    Regards
    Naren

  • How to print BAR code in SMART Form

    Hi All,
    I have the requirement to print BAR CODE in Smartforms.
    For this, I create a character format with Bar code in style forms and create a text element in Smart form and associate bar code character format with this text element.
    Now when I look the print preview for the data, then it shows me data in bar code format but not in right format i.e. its shows me all the similar block in bar code.
    If you look the bar code in SAP script, its always show you bar code with similar block, but in SMART FORM it will show you exact bar code; as in SAP Script, bar code is generated at printer end and in SMARTFORM bar code is generated as graphic in SAP and then sent to printer for print.
    PLease let me know, why in SMARTFORM its not showing BAR CODE in correct format in print preview.
    Thanks
    Piyush Mathur

    Hi,
    To Create a Bar code prefix:
    1) Go to T-code - SPAD -> Full Administration -> Click on Device Type -> Double click the device for which you wish to create the print control -> Click on Print Control tab ->Click on change mode -> Click the plus sign to add a row or prefix say SBP99 (Prefix must start with SBP) -> save you changes , it will ask for request -> create request and save
    2) Now when you go to SE73 if you enter SBP00 for you device it will add the newly created Prefix
    Create a character format C1.Assign a barcode to the character format.Check the check box for the barcode.
    The place where you are using the field value use like this
    <C1> &itab-field& </C1>.
    You will get the field value in the form of barcode.
    Which barcode printer are you using ? Can you download this file and see.
    http://www.servopack.de/Files/HB/ZPLcommands.pdf.
    It will give an idea about barcode commands.
    Check this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/d9/4a94c851ea11d189570000e829fbbd/content.htm
    Detailed information about SAP Barcodes
    A barcode solution consists of the following:
    - a barcode printer
    - a barcode reader
    - a mobile data collection application/program
    A barcode label is a special symbology to represent human readable information such as a material number or batch number
    in machine readable format.
    There are different symbologies for different applications and different industries. Luckily, you need not worry to much about that as the logistics supply chain has mostly standardized on 3 of 9 and 128 barcode symbologies - which all barcode readers support and which SAP support natively in it's printing protocols.
    You can print barcodes from SAP by modifying an existing output form.
    Behind every output form is a print program that collects all the data and then pass it to the form. The form contains the layout as well as the font, line and paragraph formats. These forms are designed using SAPScript (a very easy but frustratingly simplistic form format language) or SmartForms that is more of a graphical form design tool.
    Barcodes are nothing more than a font definition and is part of the style sheet associated with a particular SAPScript form. The most important aspect is to place a parameter in the line of the form that points to the data element that you want to represent as barcode on the form, i.e. material number. Next you need to set the font for that parameter value to one of the supported barcode symbologies.
    reward if useful
    regards,
    ANJI

  • Print Bar code in Smart form

    Hi,
      Can you pls tell me how to print bar code in smart form?

    Hi,
    You create a bar code or change a bar code in the font maintenance transaction (transaction SE73). To do this, proceed as follows:
    &#9675; Start transaction SE73, and choose System Bar Codes ® Change.
    &#9675; If you create a bar code, the system asks whether you want to use the new bar code technology or traditional system bar codes. Choose New.
    You can enter a name and a description for the bar code. Note that the name must begin with a Zto avoid conflict between your bar codes and the standard bar codes.
    2. If you have created a new bar code, you must now add this to a Smart Style as a character format. For information about this, see the section Maintenance of Styles with the Style Builder and its subsections in the Smart Forms documentation.
    If you have only changed the bar code, continue with the next step.
    3. You can now select text in Smart Forms and choose the corresponding style with the bar code as the character format for this text.
    4. You can then print the bar code.
    Refer
    https://forums.sdn.sap.com/click.jspa?searchID=10581664&messageID=3321556
    Check the pdf below..
    http://www.sap-press.com/downloads/h955_preview.pdf
    Regards
    Kiran
    Edited by: Kiran Sure(skk) on Apr 10, 2008 11:01 AM

  • How to maintain QR Code & BAR Code in SAP Script and Smart Form ?

    I want to place QR code (Quick Response Code) and Bar Code In my invoice . I searched  from many resources but i couldn't get any appropriate answer . So , Please help me  to solve this problem.

    Hello,
    SAP Note 1557674 - "Overview of bar code printing from SAP" shows the 5 possibilities how barcodes can be printed from SAPScripts and SmartForms.
    In your case the following possiblities can help:
    DIMM/SIMM module: in this solution you need to additionally purchase and install a DIMM/SIMM module to your printer. Then you can send the command sequence from the SAPScript/SmartForm to this module, and the barcode will be printed. (The command sequence should be described in the manual book of the module.)
    barcode.dll file: in this solution you need to additionally purchase and install a barcode.dll file, which will handle the barcodes. Please note: this solution only works with SAPWIN Device Types (and therefore only on Windows OS). The command sequence should be also described in the manual.
    New bar code technology: in this case R/3 creates the barcode itself, and the barcode will be forwarded as a simple image to the printer. Unfortunately QR code can not be created with this solution - according to SAP Note 1557674 the following barcodes can be created:
    Code39, Code93, Interleaved 2of5, Code128, PDF417.
    (There are 2 further solutions in the mentioned Note, but the "bar code font" solution can not be used for 2D barcodes like QR code, and the "PDF-based form" solution means that SAPScript and SmartForm can not be used).
    Alternatively, here is a document which explains how QR codes can be displayed in SmartForms with alternative solutions:
    How to create a QR code and show it in a Smartform
    Regards,
    Laszlo

  • Regarding Bar Code Printing in SMART FORMS

    Hi All,
    I need to print a Bar Code in the output for Material Field on Header Data.
    For this in smart styles:
    I have decalred a style Character Format: BM by choosing Bar Code Name: RUECKNR
    Then in Layout set code of Smartform i have decalred the same in following way:
    <b>Material No: &G_MAT_NO& <BM>&G_MAT_NO&</></b>
    But in output it is showing as below:
    <b>Material No: 60000001 <BM>60000001</></b>
    It is not showing any barcode for Material Number!
    Can anybody solve this issue!
    Thanks,
    Deep.

    Hi,
    Choose the style name in output options of the text.
    Click the field list on/off button.From the list of the fields displayed,drag G_MAT_NO[don't type manually] from there to text element. Then select Text editor and then in that go to -> change editor.
    Insert the character created in style ( Say BM) in that change editor. That will display the barcode for date.
    Material No: &G_MAT_NO& <BM>&G_MAT_NO&</>

  • Bar codes in Smart Forms

    Hello,
    Maybe anyone could provide short guidance how to create SmartForm for fixed assets barcode labeling?

    hi,
    You need to use a SMARTSTYLE and create a CHAR format and create a BAR Code there and use it in the Smartform.
    If you need more info, goto Transaction : SMARTSYLES, do an F4 and in the text area, look for Bar Codes. And see how these Styles are used in the Smartforms.
    If somehow you can't preview it properly and the printout didn't show any barcode at all..
    First try to use Standard Barcodes like TYPNR or RSNUM etc in the charcter format...
    You can preview the output at any moment IF YOU USE THE CORRECT BARCODE FORMAT.
    But printer should support barcode printing for taking printout. Otherwise in printout it will print junk values...
    If you want to print bar codes from R/3 using device type HPLJ4, HPLJ5, HPLJ5SI or HPLJ4000 on HP LaserJet 4, 5, 6 or 4000 series printers, you need what is known as a SIMM module (IC card). This SIMM module is called "JetCAPS Intelligent Barcode SIMM" and can be obtained for most HP LaserJet 4, 5, 6 and Laser Jet 4000 printers. For more detailed information regarding barcode printers refer to Notes 5196, 121305, 119471
    Hope this helps.
    PLZ reward Points if helpful.

  • How to display or generate PDF417 barcode dynamically in PDF form? I am using Acrobat XI Professional and there is a Bar Code Field in the same through which I generated the same. But I want to generate the same dynamically.

    How to display or generate PDF417 barcode dynamically in PDF form? I am using Acrobat XI Professional and there is a Bar Code Field in the same through which I generated the same. But I want to generate the same dynamically.

    What do you mean by dynamically? When yo set up a 2D bar code field you specify which field name/value pairs you want to include, along with other parameters. But be aware that they won't work with Reader unless you Reader-enable the document with LiveCycle Reader Extensions and include the bar code usage right. It will work with Acrobat Standard/Pro.

  • How to write source code in smart forms?

    hi friends,
    can anyone can help me in writing  sorcecode in smartforms r
    any materail link.
    if it is helpful points can b rewarded.Thanks in advance.

    Hi,
    Check this link for
    how to write source code in smart forms?
    http://****************/Tutorials/Smartforms/GettingStarted/SimpleText.htm
    You can write Source Code in smartforms By Choosing Program Lines.
    Check this link with Screen Shots
    http://****************/Tutorials/Smartforms/PO/page1.htm
    Reward All Helpfull Answers
    Regards
    Fareedas
    Edited by: Fareeda Tabassum S on May 21, 2008 3:09 PM

  • Writing Dynamic code in smart form

    Hi All,
       I have a issue on Smart form . the smart form is customized view of bbp_po(srm) for po(purchase order) details  in that in a secoundary window where vedor adress is displaying .In the first line of the address name1 and name2 are displaying now my need is if the name1+name2 is more than 47 chars then i need  to shift name2 to next line how can i do this dynamic code plase i need it urgently .
    Thanks
    channu sajjanar

    Hi
    Write code yto count the no of character, if it is more than 47 then display NAME2 in second line else write in first line.
    for second line put conditionin text element  NAME2 <> space.
    This will work
    Thanks
    Shiva

  • How to add a working bar cod in a pdf form?

    I am able to create a bar code using adobe acrobat. It is working perfect in acrobat viewer. But when i open the same form with adobe reader, after a filling corresponding fields, the bar code disappears and a grey box appears. Here i attached an image of the pdf form. One is before i filling the form and one is after filling the form.
    What i need to do? Please help me It's urgent.Please help me.

    http://www.adobe.com/sea/products/server/readerextensions/
    I would recommend:
    1. Check the hardware requirements. (WIndows server, probably). The cost of the server is probably insignificant, even if you have to buy a new one.
    2. Estimate total usage (forms, users per form) over a year and the lifetime of the project.
    3. Contact a sales rep and get a preliminary price quote based on your usage,

  • Generate bar codes in mail forms

    Hi,
    I know how to insert Bar codes in smartforms, but I need to print the bar codes in Mail Forms, is that possible?
    Thanks a lot,
    Nuno Moreira

    Hi Gregor,
    What I need to do is:
    I have several mail forms treated as a standard response in ICWC. We are using the e-mail view (in ICWC) mainly to print the forms, via smartforms or in “online” mode without smartforms.
    So, at the moment, I have two questions:
    1) If I use a smartform to print the mail form, even if I create the form in plain text and create the bar code into mail form, when I print the “number” it is not converted in a bar code;
    2) If I generate the bar code in a mail form and I try to print it in ICWC e-mail view the number is not printed as a bar code too;
    Thanks a lot for your help and interest,
    Best Regards,
    Nuno

  • Bar Codes printing in SAPscript form

    Hello everyone,
    Please help me with barcodes printing problem:
    We are using ECC 6.0, and printer HPLJ 2300 series PCL 6
    I have installed BARCODE.DLL, and it is located in my local PC, in folder SAPgui\SAPlpd, i.e. where SAPlpd.exe file is locating.
    I printed assets bar code labels using tc S_ALR_87010137, and using script form FIAA_0003, but in print preview there were just solid boxes and after print-out there were no boxes at all, just text! Then I created new script form and assigned new barcode type, but printed barcodes were still invisible on the paper list.
    Where is the problem?

    Just do the following check items-
    1) try to print any standard form ( PO, SO etc.) from SAP printer but not through local printer. ( Spool should not be generated; check it in sp02.)
    2) If it printed perfectly, then it is supposed to print the barcode too. You cannot print the barcodes using the local printers. Usually it required special printers
    ( zebra etc..).
    else if it is not printing properly tell the basis that they havenot configured the printer properly.
    we are doing presently printing of barcodes using both zebra & sap printers.
    Let me know, when you are through this basic check list.

  • Attaching the newly developed print smart form to T-Code COR2

    Hi,
    ABAP team developed a smartform for printout of process order which contain all the details of that process order and component list their qty and other details. Now I have to attach this smartform to the T-Code COR2. so that when the user creates the process order and save it then he goes to COR2 and enters the process order number then go to print button click and take the printout. How to attach the smart form to T-code COR2. Plz explain.
    Thanks
    Vinamrath

    Hi Kumar,
    You have to configure the print forms in the t code CB85. After you configure when you create the process order the printout will be triggered
    It will be triggered automatically if the configuration is activated immediately otherwise need to go to spool request SP01 t code and give the printout.
    In the configuration itself the printer name also have to mentioned.
    Thanks and regards,
    Satish

Maybe you are looking for

  • Migration from phpMyAdmin to SQL

    Hi Guys, I need your help, I made one website on PHP with the database of MySQL now as i want to shift the database into the MSSQL.  What should i do? as i am new to the technology. Can anyone the step by step Tutorial for that or anyone can tell me

  • Is OEM database control configured for the DBs?

    Hi I have multiple oracle (10gR2) databases running on a linux (5.8) server. How can I check that for which of the databases has the OEM Database Control been configured and on what port is it listening? Best regards

  • Scrolling text box errors in cs4

    So i have a scrolling text on a website that im remaking but its utilizing java and for some reason when i moved it over it now says "KEYCODEWRONG OR MISSING" and "NOTICE WRONG OR MISSING" after the text i add in there its not doing it on the old sit

  • Trigger the workflow when so delivery is completed

    Hi experts , I  need to  trigger the wokflow if SO  delivery is completed. could  anyone  please let me know if any event  is there to trigger the workflow whenever SO delivery is completed. Regards , Kiran.

  • Edited Photos Disappear

    I am having issues with iPhoto.  OS 10.8 operating on MacBook Pro. To edit a photo, I first duplicate the photo, then edit, crop and adjust the photo to the desired end product.  Then hit "apply" and "done."  The photo then disappears and I get the p