Print parameters in output settings(T-CODE: V/30)

Who can give me the presentations of usage about "change output" and "replacement of text symbols"?

This is a quick how-to on using replaceable symbols in spool and mail titles in invoice printing.  Knowledge of output configuration is a pre-requisite.
1.  Under Mail title and texts, create a title with symbols.  In the example above there are three symbols, &IV&, &CLT& and &DAT&.  Symbols need not be bracketed in ampersand symbols, but it makes for easy readability and maintenance.  Keep in mind that there is a length limitation on the title.  ITCPO-TDTITLE is 50 characters long.  That is a few bytes short of War and Peace.
[Image - Mail Title|https://weblogs.sdn.sap.com/weblogs/images/251736236/MailTitle.JPG]
2. Next, specify a program name and subroutine name.  This subroutine will perform the replacement of symbols.
[Image Replacement |https://weblogs.sdn.sap.com/weblogs/images/251736236/Replace.JPG]
3.  This is the code that performs replacement of symbols:
REPORT ZESD_EMAIL_TITLE .
FORM ENTRY TABLES IO_TLINES STRUCTURE TLINE
           USING  I_THEAD   TYPE THEAD
                       I_NAST    TYPE NAST.
DATA: L_DATE(10),
      L_INV(10).
  WRITE: SY-DATUM TO L_DATE MM/DD/YYYY.
  LOOP AT IO_TLINES.
    WRITE I_NAST-OBJKY(10) TO L_INV NO-ZERO.
    REPLACE '&IV&' WITH L_INV INTO IO_TLINES.
    CONDENSE IO_TLINES.
    REPLACE '&CLT&' WITH I_NAST-PARNR INTO IO_TLINES.
    CONDENSE IO_TLINES.
    REPLACE '&DAT&' WITH  L_DATE INTO IO_TLINES.
    MODIFY IO_TLINES.
  ENDLOOP.
ENDFORM.

Similar Messages

  • What is the actual use of the background print parameters

    Hello all,
    When we are scheduling a job it asks for print parameters like output device:
    Can any one please let me know what is the actual meaning of print parameters and what it does when we set spool parameters.
    Thanks, kumar.

    Hi Bharani,
    Normally when you execute a job in the back ground say like time taking reports or daily Scheduled background jobs, system will create a spool request for that so that you would be able to view the output of the report later and further take the printout etc. Hence, it is asking for print parameters.
    Print parameters are those where you specify the output device, print preview, spool retention period etc, Basically those are the settings required for the way a print job needs to be triggered.
    Regards,
    Ravi Kiran

  • T.code FBL5N: a problem with the print of the output list

    Hi All,
    with reference to the t.code FBL5N, I have  a problem with the print of the output list of the report.
    When I execute the print, I obtain one customer for each page printed.
    I wonder if is possible to obtain more customers for each page printed.
    Could anyone help me?
    Thanks
    Gandalf
    Edited by: Umberto Gandalf on Dec 21, 2008 10:36 PM

    Hi,
    Though personally i havent tried this option, check the same
    Go to Menu: Settings >> Switch List
    This will make the value displayed in ALV format and then try taking print outs.
    Regards,
    Sridevi

  • Smartform output with Print Parameters Tab

    Hi ,
    When a smartform layout output is generated , I need the "Print Parameters"( or the "Spool Parameters" tab open , besides the "Print" button and "Print Preview" button . How do I get this ?
    Regards,
    Sujata

    For Japanese characters to dispaly use the font JPMINCHO
    For printing use the device type as JPSAPWIN.
    Regards
    Yogesh
    P.s.: Reward points is problem is solved .

  • New Message output properties - Print parameters

    This is reg output message determination
    When configuring new message type, in properties there is a tab called 'Print', where print parameter field need to be populated with 'Purchasing Group'
    When i mistakenly put blank, messages were generating, green, but not able to transmit
    When Purchase group is give, it working fine
    Can some one please suggest why it is very important and what it exactly do
    Thanks in advance

    Hi,
    In standard SAP,  the print parameters can be defined for:
    Sales organization/distribution channel/division
    Sales organization
    Purchasing group (this is MM related)
    and User
    If you assign print parameters to a purchasing group, you maintain output device for each Purchase group (transmission medium)
    when you keep it blank, system fails to determine output devices and message does not transmit.
    in simple words, assigning purchase group to print parameter in 'Print' tab enables the output devices to assign to purchasing group.
    Regards,
    Pravin

  • Printing the list output.

    Hi All,
    I want to print the output of the report. I am printing it using NEW-PAGE PRINT ON . and concluded by NEW-PAGE PRINT OFF. I am doing this under the usercommand.  The problem is,, when I say print,(user command), I can print the output but the it is leading to the previous screen. I want to be in the same screen after my printing. I am pasting the code also. Can any one suggest me, where I am doing the mistake.
    <b><REMOVED BY MODERATOR></b>
    CASE P_UCOMM1.
        WHEN 'PRINT11'.
          CALL FUNCTION 'GET_PRINT_PARAMETERS'
            EXPORTING
              COPIES         = '1'
              DESTINATION    = 'LOCL'
              IMMEDIATELY    = 'X'
              LINE_COUNT     = 25
              LINE_SIZE      = 132
              NO_DIALOG      = 'X'
              USER           = SY-UNAME
              ABAP_LIST      = 'X'
            IMPORTING
              OUT_PARAMETERS = L_PARAMS
              VALID          = L_VALID.
    &--'REUSE_ALV_HIERSEQ_LIST_DISPLAY'--
          DATA:FLAG(1).
          CLEAR FLAG.
          IF L_VALID <> SPACE.
            NEW-PAGE PRINT ON PARAMETERS L_PARAMS NO DIALOG.
            CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
              EXPORTING
                I_CALLBACK_PROGRAM       = GD_REPID
               I_CALLBACK_PF_STATUS_SET = 'PF_STATUS_SET1'
               I_CALLBACK_USER_COMMAND  = 'EXEC'
                IS_LAYOUT                = M_LAYOUT
                IT_FIELDCAT              = I_FLDCATALOG
                IT_EVENTS                = I_EVENTS
                I_TABNAME_HEADER         = 'I_MHEAD'
                I_TABNAME_ITEM           = 'I_MITEM'
                IS_KEYINFO               = M_KEYINFO
              TABLES
                T_OUTTAB_HEADER          = I_MHEAD
                T_OUTTAB_ITEM            = I_MITEM.
            REFRESH I_FLDCATALOG.
            CLEAR M_LAYOUT.
            CLEAR M_KEYINFO.
            NEW-PAGE PRINT OFF.
            CLEAR L_PARAMS.
            CLEAR L_VALID.
          ENDIF.
          LOOP AT I_HITEM INTO W_HITEM.
            IF W_HITEM-CHECK = 'X'.
              W_HITEM-PFLAG = 'PRINTED'.
              MODIFY I_HITEM FROM W_HITEM INDEX SY-TABIX TRANSPORTING PFLAG
            ENDIF.
          ENDLOOP.
          IF SY-SUBRC = 0.
            LOOP AT I_PFLAG INTO W_PFLAG.
              UPDATE RESB SET WEMPF = 'X'
                          WHERE AUFNR = W_PFLAG-AUFNR
                            AND MATNR = W_PFLAG-MATNR
                            AND DUMPS = 'X'.
              COMMIT WORK.
              WAIT UP TO 1 SECONDS.
            ENDLOOP.
          ENDIF.
      ENDCASE.
    Thanks
    Ramesh.
    Message was edited by:
            Alvaro Tejada Galindo

    Hi,
    When you get the list output .
    click on print button to print it. A dialog box will come.
    In that dialog box, there will be settings button . when you click on this button, you will get many options and the value of those options that can be set defualt for that report output.
    In that there is s option of printer , select that option  and enter a value and then set that as default.
    I hope this will solve your problem.
    For any more help, please revert back.
    Thanks and regards
    Gurpreet Singh

  • Print parameters in Excel sheet

    Hi,
    I have a question regarding print parameters of an excelsheet.
    we have a report program which downloads the data into Excelsheet. The users run the program online, and once the excel is downloaded, they will take a print out.
    This excel has different tabs. The users need to change the print parameters like changing from lanscape to potrait, setting the margins etc.... and then take a print output. can we avoid this manual process programatically.
    our developer has used classes to download the excel.
    any help would be greatly appreciated.
    Thanks.

    So it is downloaded, then the user opens the document manually and prints it.  Have you looked into OLE.
    /people/rich.heilman2/blog/2005/09/12/manipulate-excel-with-ole-abap
    Using OLE, you can automatically print out the excel documents.  I would also assume that you can change the parameter as needed. 
    Here is a sample code showing the OLE code that will print the excel sheet.
    report zrich_0003.
    include ole2incl.
    data: e_sheet type ole2_object.
    data: e_appl  type ole2_object.
    data: e_work  type ole2_object.
    data: e_col1  type ole2_object.
    data: e_col2  type ole2_object.
    data: e_cols  type ole2_object.
    data: e_cell  type ole2_object.
    data: e_wind  type ole2_object.
    data: field_value(30) type c.
    parameters: p_file type localfile default 'C:RichTest.xls'.
    start-of-selection.
    * Start the application
      create object e_appl 'EXCEL.APPLICATION'.
      set property of e_appl 'VISIBLE' = 1.
    * Open the file
      call method of e_appl 'WORKBOOKS' = e_work.
      call method of e_work 'OPEN'
              exporting
                   #1 = p_file.
    <b>  get property of e_appl 'ACTIVEWORKBOOK' = e_work.
      call method of e_work 'PRINTOUT'.</b>
    * Close the file
      call method of e_work 'close'.
    * Quit the file
      call method of  e_appl  'QUIT'.
      free object e_appl.
    Regards,
    Rich Heilman

  • Print parameters as per the user selection in ALV

    Hi All,
    We have a requriment for getting the print parametrs to print dialog as per the user selection in ALV list display.
    When the user click on 'Print' button In ALV list output screen, we need to capture the print parameters from a Z table and put those on the print parameters dialog box.
    I tried this , by calling the function GET_PRINT_PARAMETERS and SET_PRINT_PARAMETERS before the alv function is called. Unforutnately this is not working. Same code works for the simple list display.
    Have anyone worked with this kind of requriment ?
    Regards,
    Mithun

    What kind of ALV are you using, FM or OO?
    Regards,
    Rich Heilman

  • How can I change the values for print parameters

    Hi all,
    There is a program which prints the documents every time the t.code is executed. I want the output to be stored in spool and NEVER wants it to be printed.
    A spreadsheet which has the details of articles is uploaded and a background job is created through ABAP SUBMIT statement to upload the article numbers to the table.
    GET_PRINT_PARAMETERS function module is used. Is there any way to pass the print parameters so that output will not be printed and only stored in the spool?
    Help me out and points will be rewarded.

    Hi Rathi,
    I am more or less giving as you mentioned. Here is the piece of code. 
    Y_XXXX is my report.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          MODE                   = 'BATCH'
          NO_DIALOG              = 'X'
          REPORT                 = 'Y_XXXX'
        IMPORTING
          OUT_ARCHIVE_PARAMETERS = ls_ArchivePrintParms
          OUT_PARAMETERS         = ls_PrintParms.
      SUBMIT Y_XXXX
       AND RETURN
        USER                sy-Uname
        VIA JOB             lw_JobName
            NUMBER          lw_JobNumber
        TO SAP-SPOOL
        WITHOUT SPOOL DYNPRO
        SPOOL PARAMETERS    ls_PrintParms
        ARCHIVE PARAMETERS  ls_ArchivePrintParms   
        WITH p_Matnr     =  ps_CreateArticleDatum-Article
        WITH p_MrchCt    =  ps_CreateArticleDatum-MerchCat
        WITH p_ArtTyp    =  ps_CreateArticleDatum-ArticleType
        WITH p_ArtCat    =  ps_CreateArticleDatum-ArticleCat
        WITH p_UOM       =  ps_CreateArticleDatum-UOM
        WITH p_ArtDsc    =  ps_CreateArticleDatum-ArticleDesc
        WITH p_ValCls    =  ps_CreateArticleDatum-ValueClass
        WITH p_PurGrp    =  ps_CreateArticleDatum-PurchGrp
        WITH p_StLsPr    =  ps_CreateArticleDatum-StoreListProc
        WITH p_DCLsPr    =  ps_CreateArticleDatum-DCListProc
        WITH s_RefStr    IN lr_RefStoresRange
        WITH p_BackGd    =  yartc_BooleanFalse
        WITH p_Test      =  yartc_BooleanFalse.
    But the o/p gets printed everytime I run the t.code.

  • SAP SD: Define print parameters

    Hello,
    Under SPRO > SD > Basic Functions > Output Control you can define print parameters.
    I can for example define print parameters for condition type order conf. BA00 in combination for a specific sales organisation.
    Where exactly are these settings used?
    Because if I want to have my BA00 printed out on a specific printer I do this through the conditon records in VV12.
    What is the relation between these two setting or isn't there any relation at all?
    Thanks.

    What is the relation between these two setting or isn't there any relation at all?
    Yes both are related.
    Output condition type BA00 is part of config and TCode VV11/VV12/VV13 are master data for BA00.
    For understanding refer the following link :
    [Output Determination|http://wiki.sdn.sap.com/wiki/display/ERPLO/outputdeterminationusingconditiontechnique]
    Hope this can assist you in understanding.
    Thanks & Regards
    JP

  • Text element is not getting printed in the output

    Hi all,
    I'm trying to print address from table KNA1in address window through a text element.
    The corresponding code being :
    In Delivery Prg,
    Data : lv_kna1 type STANDARD TABLE OF kna1,
              lv_adr6 type STANDARD TABLE OF adr6.
    DATA : WA_ADR6 TYPE ADR6.
      SELECT SINGLE * FROM KNA1 WHERE KUNNR = VBPA-KUNNR.
      SELECT SINGLE * FROM ADR6 INTO WA_ADR6 where ADDRNUMBER = kna1-adrnr.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'DELIVERY_ADDRESS'
       WINDOW                         = 'DELIVADR'
    and calling the same text element 'DELIVERY_ADDRESS' as follows in the Script:
    /E           DELIVERY_ADDRESS
    /:           IF &LV_KNA1-TELF1& <> &SPACE&
    IL           Tel.: &LV_KNA1-TELF1&
    /:           ENDIF
    /:           IF &LV_KNA1-TELFX& <> &SPACE&
    IL           Fax : &LV_KNA1-TELFX&
    /:           ENDIF
    /:           IF &LV_ADR6-SMTP_ADDR& <> &SPACE&
    IL           E-mail : &LV_ADR6-SMTP_ADDR&
    /:           ENDIF
    But,this text element is not printing in the output.
    Any pointer on this would be of great help.
    Regards,
    Vamsee Priya.

    yes, it is.
    I'm trying to get the e-mail address from adr6 table with the corresponding address number  from table kna1.
    so I created two tables as below:
      Data : lv_kna1 type STANDARD TABLE OF kna1,
             lv_adr6 type STANDARD TABLE OF adr6.
    DATA : WA_ADR6 TYPE ADR6.
      SELECT SINGLE * FROM KNA1 WHERE KUNNR = VBPA-KUNNR.
      SELECT SINGLE * FROM ADR6 INTO WA_ADR6 where ADDRNUMBER = kna1-adrnr.
    now, I'm trying to fill e-mail adress from lv_adr6. but the problem is lv_adr6 is not getting filled.
    data is coming to work area wa_adr6.
    SAP is not allowing me to write the below statement:
    SELECT SINGLE * FROM ADR6 INTO LV_ADR6 where ADDRNUMBER = kna1-adrnr.
    Now, will any move-corresponding statement from work area to its table works?? Is that logically correct??

  • Supress Background Print parameters when user executes ALV report by F9

    Hi friends,
         How can we Supress Background Print parameters pop-up, when user executes ALV report by F9
    or by navigation from selection screen -i.e;  Program ->>Execute in Background.
    Please guide me
    Thanks in Advance,
    Ganesh

    Sorry,
    i need to supress the POP-UP which asks for background Print Parameters in the ALV report. when i press F9 in a selection - screen of a Tcode
    as we supress Pop-up for a smartform or script by passing the Print Parameters
    This 'RS_SET_SELSCREEN_STATUS' excludes the commands(say F9 function code) in report
    I think we need to set the Print paramters in the Program
    please guide me
    Thanks,
    Ganesh

  • Printing with SDK 1.4 - native code exc. this time

    Hello,
    We are trying send printer control codes to a printer. Actually we are able to send them and get the output. The code snippet is:
    // sanity checks are stripped
    DocFlavor doc_flavor = DocFlavor.BYTE_ARRAY.AUTOSENSE;
    PrintService print_services[] = PrintServiceLookup.lookupPrintServices(doc_flavor, null);
    HashPrintRequestAttributeSet attr = new HashPrintRequestAttributeSet();
    attr.add(MediaSizeName.ISO_A9);
    PrintService default_service = PrintServiceLookup.lookupDefaultPrintService();
    PrintService selected_service = ServiceUI.printDialog(
         null,
         100,
         100,
         print_services,
         default_service,
         doc_flavor,
         (PrintRequestAttributeSet) attr);
    DocPrintJob print_job = selected_service.createPrintJob();
    byte data[] = // filled with control codes
    Doc doc = new SimpleDoc(data, doc_flavor, null);
    try {
          print_job.print(doc, attr);
    catch(Exception e) {
          e.printStackTrace();
    }The problem is after [bold]print()[bold] is called. The process hangs there for a while (a couple of minutes) and gives an exception. Exception description is below.
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6D063636
    Function=Java_sun_print_Win32PrintJob_printRawData+0x1BB9
    Library=F:\jdk\j2sdk1.4.0\jre\bin\awt.dll
    Current Java thread:
         at sun.awt.windows.Win32SurfaceData.initOps(Native Method)
         at sun.awt.windows.Win32SurfaceData.<init>(Win32SurfaceData.java:335)
         at sun.awt.windows.Win32SurfaceData.createData(Win32SurfaceData.java:218)
         at sun.awt.windows.WComponentPeer.replaceSurfaceData(WComponentPeer.java:321)
         - locked <02FD86E8> (a sun.awt.windows.WFramePeer)
         at sun.awt.windows.WComponentPeer.displayChanged(WComponentPeer.java:350)
         at sun.awt.windows.WCanvasPeer.displayChanged(WCanvasPeer.java:42)
         at sun.awt.windows.WPanelPeer.displayChanged(WPanelPeer.java:118)
         at sun.awt.windows.WWindowPeer.displayChanged(WWindowPeer.java:175)
         at sun.awt.SunDisplayChanger.notifyListeners(SunDisplayChanger.java:102)
         at sun.awt.Win32GraphicsDevice.displayChanged(Win32GraphicsDevice.java:333)
         at sun.awt.Win32GraphicsEnvironment.displayChanged(Win32GraphicsEnvironment.java:90)
         at sun.awt.windows.WToolkit$4.run(WToolkit.java:717)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:443)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:190)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:130)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:98)
    Dynamic libraries:
    0x00400000 - 0x00406000      F:\jdk\j2sdk1.4.0\bin\javaw.exe
    0x77F80000 - 0x77FFB000      C:\WINNT\System32\ntdll.dll
    0x77DB0000 - 0x77E0C000      C:\WINNT\system32\ADVAPI32.dll
    0x77E80000 - 0x77F35000      C:\WINNT\system32\KERNEL32.DLL
    0x77D40000 - 0x77DB0000      C:\WINNT\system32\RPCRT4.DLL
    0x77E10000 - 0x77E74000      C:\WINNT\system32\USER32.dll
    0x77F40000 - 0x77F7C000      C:\WINNT\system32\GDI32.DLL
    0x78000000 - 0x78046000      C:\WINNT\system32\MSVCRT.dll
    0x6D330000 - 0x6D442000      F:\jdk\j2sdk1.4.0\jre\bin\client\jvm.dll
    0x77570000 - 0x775A0000      C:\WINNT\System32\WINMM.dll
    0x6D1D0000 - 0x6D1D7000      F:\jdk\j2sdk1.4.0\jre\bin\hpi.dll
    0x6D300000 - 0x6D30D000      F:\jdk\j2sdk1.4.0\jre\bin\verify.dll
    0x6D210000 - 0x6D228000      F:\jdk\j2sdk1.4.0\jre\bin\java.dll
    0x6D320000 - 0x6D32D000      F:\jdk\j2sdk1.4.0\jre\bin\zip.dll
    0x6D000000 - 0x6D0F6000      F:\jdk\j2sdk1.4.0\jre\bin\awt.dll
    0x77800000 - 0x7781D000      C:\WINNT\System32\WINSPOOL.DRV
    0x75E60000 - 0x75E7A000      C:\WINNT\System32\IMM32.dll
    0x77A50000 - 0x77B46000      C:\WINNT\system32\ole32.dll
    0x76020000 - 0x76053000      C:\WINNT\System32\spool\DRIVERS\W32X86\3\UNIDRVUI.DLL
    0x76EF0000 - 0x76F1B000      C:\WINNT\System32\spool\DRIVERS\W32X86\3\UNIDRV.DLL
    0x7A900000 - 0x7A92B000      C:\WINNT\System32\spool\DRIVERS\W32X86\3\tec32u.dll
    0x782F0000 - 0x7852F000      C:\WINNT\system32\SHELL32.dll
    0x70BD0000 - 0x70C34000      C:\WINNT\system32\SHLWAPI.dll
    0x71780000 - 0x7180A000      C:\WINNT\system32\COMCTL32.dll
    0x76B30000 - 0x76B6E000      C:\WINNT\system32\comdlg32.dll
    0x77820000 - 0x77827000      C:\WINNT\system32\VERSION.dll
    0x759B0000 - 0x759B6000      C:\WINNT\system32\LZ32.DLL
    0x0B290000 - 0x0B2AC000      C:\WINNT\System32\spool\DRIVERS\W32X86\3\tec32g.dll
    0x4F500000 - 0x4F521000      C:\WINNT\System32\spool\DRIVERS\W32X86\3\ps5UI.dll
    0x4CE00000 - 0x4CE75000      C:\WINNT\System32\spool\DRIVERS\W32X86\3\PSCRIPT5.DLL
    0x6B770000 - 0x6B783000      C:\WINNT\System32\mscms.dll
    0x6D180000 - 0x6D1D0000      F:\jdk\j2sdk1.4.0\jre\bin\fontmanager.dll
    0x6E420000 - 0x6E426000      C:\WINNT\System32\INDICDLL.dll
    0x10000000 - 0x1000A000      F:\ORACLE\9ids\jdev\lib\jdevwheel.dll
    0x72800000 - 0x72846000      C:\WINNT\System32\ddraw.dll
    0x728A0000 - 0x728A6000      C:\WINNT\System32\DCIMAN32.dll
    0x779B0000 - 0x77A4B000      C:\WINNT\system32\OLEAUT32.DLL
    0x77920000 - 0x77943000      C:\WINNT\system32\imagehlp.dll
    0x72A00000 - 0x72A2D000      C:\WINNT\system32\DBGHELP.dll
    0x690A0000 - 0x690AB000      C:\WINNT\System32\PSAPI.DLL
    Local Time = Wed Aug 28 17:03:33 2002
    Elapsed Time = 1071
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.0-b92 mixed mode)
    #Is there any idea why this error occurs. Thanks.
    Muzaffer Ozakca

    Let me jump into the fray :-)
    I am getting the same exception while I am printing TIF images. I am not exactly sure what causes it, maybe I need to have a listener for this specific event. In this particular instance I am getting the error immediately after a java.lang.OutOfMemoryError (which might be the reason I am getting this exception). My printing code is very similar (identical) to the one posted above.
    java.lang.NullPointerException
    at sun.awt.Win32GraphicsEnvironment.displayChanged(Win32GraphicsEnvironm
    ent.java:88)
    at sun.awt.windows.WToolkit$4.run(WToolkit.java:717)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:443)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:190)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:144)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:130)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:98)

  • F110 Program RFFOGB_T - Can we achieve both Printed and Email Outputs??

    HI Experts,
    SAP Provides standard Program RFFOGB_T  for processing automatic bank direct debits and bank collections in domestic payment transactions for Great Britain and Ireland. This program is run as part of F110 Payment run. The standard program prints  the Payment advice notes.  We have used the Business Transaction Event 00002040 as per the documentation of the Program, to generate EMAILS instead of Printed Advice notes.
    With the changes made, we have met our requirements. However, now the Client desires to have both Email and Printed Advice Notes, If any of you have worked on this BTE, could you please suggest whether this is possible.
    My Understanding is, it could be either print or email as the input parameter to this BTE, finaa-nacha carries a value '1' which is for Printed output, the custom code in the BTE changes the value to 'I' for Email Output. How can we possibly achieve both.
    I am a developer, so pardon me if the description of the problem sounded too technical.
    Any suggestion would be highly appreciated.
    Thanks and Regards,
    Subhrangsu

    Hi,
    We found the same requirement but for F.27, which doesn't have any posting action. As pointed out by you, I think there can only be one output, either going to spool or mail and can't both. So in our case, we make two correspondence with each for spool and another one for mail. I think you might want to ask for SAP notes on your requirement.
    Regards,
    Teddy Kurniawan

  • EDI/ALE-Output type-Process code relation?

    Hi.
    In EDI preocessing the relation between the Message type and the process code is know.
    But where is the realtion of either of these two to the output type?
    When we hit a F4 in the message control in WE20 for process codes it gives us a list.
    How is this linkages established.
    Output type-process code-message type-output routines?
    Please dont answer in vague terms.

    Dear experts,
    I am a little further now.
    I used output condition WA01 which is already set up in NACE and in MN23 I set up:
    In SP01 I can see the created Spool entries after creating the Good issue with ME2O. So the print out would work. But I need an EDI output....
    I created a new output condition ZWA1 in NACE and set "Processing routines" to EDI.
    I set "Partner functions" to EDI and LS - logical system.
    In MN23 I have:
    I set Event Type to "WA" because when I look at a material document in MB03 it also shows WA:
    In WE20 I have my LS - logicals system and set up the output for MBGMCR03:
    What confuses me is: I have to send the EDI output to a LS - logical system. But in MN23 I can't set the LS - it gives error: "You cannot enter a partner function for output ZWA1"
    No IDoc is created so far - please help. Thank you.
    Best regarsd,
    Peter

Maybe you are looking for