Output for special functions

Hi
For all the output typesd I need to use transmission medium 8( Special function).Kindly let me know what is purpose of special functions and where to see output of the form.
Points will be rewarded.

Hi,
Some info, in case it helps.
I had a requirement to use two different SAPscript forms for printing sales invoices (one for normal invoice printing and the other for in a program for printing dunning letters plus their invoices).
So in the IMG (transaction V/40) I set up processing for transmission medium 8 just like what was already there for transmission medium 1, but with the other SAPscript form.
In our program, NAST-NACHA is set to 8, and a call is made to the appropiate form (e.g. einzelnachricht_ohne_update) of program rsnast00 in order to print.  This picks up and uses the config (the print program, SAPscript form etc) for transmission medium 8.
Used in this way, 8 seems to work just like 1, except 1 is used by the regular processing but 8 by our custom program.
John

Similar Messages

  • Output type - Special function 8 - ARCHIV_CONNECTION_INSERT

    Hi gurus,
    I created a new Output Type with special function 8 called ZPDF in transaction NACE with application MR (invoice verification) and I added to that Output Type ZPDF our custom program called ZXXX_ARCHIVE_LINK in order to post into the MM invoice, a PDF who cames from the SD inovoice.
    The SD invoice number is recorder into the field "Referece" in the MM invoice.
    So, the program should (through the output type and the program):
    1. Read the MM invoice number generated (NAST table into NAST-OBJKY).
    2. Enter to table RBKP with MM invoice number RBKP-BELNR and get the SD invoice number: RBKP-XBLNR.
    3. Enter with SD invoice number XBLNR to table TOA01-OBJECT_ID And get TOA01-ARC_DOC_ID.
    4. Call FM ARCHIV_CONNECTION_INSERT.
    The problem here is when I post a MM inovice in MIRO transaction the system through the condition record added the ZPDF Output Type but don´t read the program ZMIC_INVOICE_PDF_ARCHIVE_LINK added to that output type. The status of the output type is green (but without any processing log). I checked the setting for the Output Type like 100 times and everything seems to be OK.
    Please this is very urgent. Any advice?
    I don´t know why SAP don´t call the program. I think the ABAP code is wrong:
    REPORT ZXXX_ARCHIVE_LINK.
    Table Declaration
    TABLES: NAST, " Message Status
    CMFP, " Storage Structure for Errors Collected
    EDIDS, " Status Record (IDoc)
    VBRK, " Billing Document: Header Data
    TOA01. " Link table 1
    TYPES: BEGIN OF TY_RBKP,
    BELNR TYPE RE_BELNR, " Document number of an invoice document
    XBLNR TYPE XBLNR1, "SAEOBJID, " Reference Document Number
    END OF TY_RBKP.
    TYPES: BEGIN OF TY_TOA01,
    OBJECT_ID TYPE SAEOBJID, " SAP ArchiveLink: Object ID (object identifier)
    ARC_DOC_ID TYPE SAEARDOID, " SAP ArchiveLink: Document ID
    END OF TY_TOA01.
    Data Declaration
    DATA: WA_BELNR TYPE RE_BELNR ,
    WA_ARC_DOC_ID TYPE TY_TOA01 , "-ARC_DOC_ID,
    WA_SAP_OBJECT LIKE SAPB-SAPOBJID," TYPE TOAOM-SAP_OBJECT ,
    ARC_DOC_ID TYPE TOAV0-ARC_DOC_ID,
    GT_RBKP TYPE STANDARD TABLE OF TY_RBKP , "WITH HEADER LINE,
    GT1_RBKP TYPE STANDARD TABLE OF TY_RBKP, " WITH HEADER LINE,
    GT_ARC_DOC_ID TYPE STANDARD TABLE OF TY_TOA01, " -ARC_DOC_ID,
    WA1_RBKP TYPE TY_RBKP ,
    WA_RBKP TYPE TY_RBKP.
    DATA: WA1_OBJECT_ID TYPE SAEOBJID.
    DATA: WA_OBJKY TYPE NA_OBJKEY,
    WA1_OBJKY TYPE RE_BELNR.
    FORM entry USING ent_retco ent_screen.
    CLEAR ent_retco.
    PERFORM ARCHIV_CONNECTION_INSERT USING nast-objky ent_retco.
    ENDFORM. "entry
    FORM ARCHIV_CONNECTION_INSERT USING objky returncode.
    * Select Reference Document Number from RBKP table
    SELECT BELNR XBLNR
    FROM RBKP
    INTO TABLE GT_RBKP
    WHERE BELNR = objky . " .WA1_OBJKY .
    IF SY-SUBRC EQ 0 .
    LOOP AT GT_RBKP INTO WA_RBKP.
    WA1_OBJECT_ID = WA_RBKP-XBLNR .
    CONCATENATE WA1_OBJECT_ID '%' INTO WA1_OBJECT_ID .
    WA_SAP_OBJECT = WA_RBKP-BELNR .
    SELECT OBJECT_ID
    ARC_DOC_ID
    FROM TOA01
    INTO TABLE GT_ARC_DOC_ID
    WHERE OBJECT_ID LIKE WA1_OBJECT_ID.
    IF SY-SUBRC EQ 0 .
    READ TABLE GT_ARC_DOC_ID INTO WA_ARC_DOC_ID INDEX 1.
    ARC_DOC_ID = WA_ARC_DOC_ID-ARC_DOC_ID.
    WA_SAP_OBJECT = WA_ARC_DOC_ID-OBJECT_ID.
    ENDIF.
    CALL Function Module:Link table operations
    CALL FUNCTION 'ARCHIV_CONNECTION_INSERT'
    EXPORTING
    ARCHIV_ID = 'Z0'
    ARC_DOC_ID = ARC_DOC_ID
    AR_DATE = SY-DATUM
    AR_OBJECT = 'MMILOGINV'
    DEL_DATE = ' '
    MANDANT = SY-MANDT
    OBJECT_ID = WA_SAP_OBJECT
    SAP_OBJECT = 'BUS2081'
    DOC_TYPE = 'PDF'
    BARCODE = ' '
    EXCEPTIONS
    ERROR_CONNECTIONTABLE = 1
    OTHERS = 2
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CLEAR: WA_RBKP.
    ENDLOOP.
    ENDIF.
    ENDFORM.

    Hi,
    Use
    You can process a message immediately by updating the application document or you can process it at a later time. For later processing you must use the report program RSNAST00 or a corresponding application function.
    The individual possibilites are:
    Time 1: The message is processed through report program RSNAST00. This report program can be scheduled periodically or started manually.
    Time 2: As in time 1, but the message contains an earliest processing date and a requested processing time. The message is ignored by report program RSNAST00 before the requested date.
    Time 3: The message is selected and processed by application specific programs. Processing can take place online or in the background.
    Time 4: The message is processed when the application document is saved. No further processing of the message is necessary.
    Kapil

  • OUTPUT TYPE SPECIAL FUNCTION

    Hi Experts,
    I am using a custom program and a form call from output type with special function.
    This output type is for transaction VF01. I need help in how to get the data entered from VF01 when I am on the subroutine of my custom program. Can you provide what is the available data i can use? I need to determine the sales order number but I am having a hard time getting the data when I am at the custom program called by the output type.
    Thanks in advance.

    Hi Sravan Kumar,
    I wont be using any forms, the output type is special function because i only need to edit user status of the sales order connected to the billing done via VF01. What I need to determine is the sales order number but when I am at my custom program, the data available to me is limited. What I need to know is where can I get the sales order number or even the delivery number entered in VF01.

  • Is there a System Menu for special Functions, like WIPE CACHE?

    On my DX, there was a method of pressing and holding the Menu button & Power up button to get to special "Systems" functions like WIPE CACHE & FACTORY RESET. Does such a procedure exist for the Razr ?  I know about SAFE MODE and was able to see that work. (Although my finger hurt having to press the up/down Volume buttons for so ling. )

    While I have done this quite a few times (and this has made my phone a bit more responsive when it gets sluggish) you should be careful and watch what you are doing. If you select the wrong menu option you may end up having to contact Verizon for support.
    Wiping the cache partition
    Power the phone off
    Press and hold the volume down, volume up and power button until the recovery screen appears.
    Use the volume down button to select "Recovery" and then press the volume up to confirm the selection.
    The phone will do a little reboot thing, display the dual core logo thing and then an Android next to a triangle with a yellow exclamation point will appear. At this point press the volume up and volume down buttons at the same time.
    If you did everything correctly you are now at the Android System Recovery Screen. To clear the cache press the volume down button until you have selected "wipe cache partition". Press the power button to confirm the selection and it will wipe the cache partition.
    Once the cache is cleared press the volume up button to select "Reboot System Now" and press the power button to confirm the selection. If the "Reboot System Now" is already selected then just press the power button to confirm the selection and the phone will reboot.

  • Output - Transmission Medium - Special Function

    Hi
    In SD Billing output, Transmission Medium used as 8.Special Function. This is sending information to Oracle(Legacy). Now we need to make some changes in output. But, in tcode:NACE, there is no print program or form assigned to this output type.  In table:TNAPR also, no program displayed.
    Please provide info on how/where print program assign to output type for special functions.  Or which program sends output/data to legacy
    Regards
    Uma

    Hi,
    I have small idea.I hope this will help you in identifying the program you want.
    First goto VF02.Enter your billing document number.
    Click on billing document-->Issue output to.
    Selectyour output type.Goto Print preview.
    press /h.Debugging will be switched on.
    Double click on that message.
    Click on break points.Select Break point at-->Breakpoint at statement.
    Mention call function and press Enter.Press F8 and check for "CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'".
    In this check for gv_fomname.
    Get it.Goto SE16.Enter the table name as "TNAPR".
    Enter this form name here and get the program name.
    Please do this with the help of your ABAPer.
    Reagrds,
    Krishna.

  • Special function Output type failing

    Hi,
    I configured a special function output type and set the dispatch time to 4. The output includes a custom program that executes a function module to create reservation. Its created in Form entry. However its failing to output when I save my order. Am I missing something? Can we not use submit programs with special function output types or dispatch time of 4?

    No. the OSS note doesn't help. I think the issue is with using dispatch time 4 instead of 1 for special function or maybe in the program code that I have:
    FORM ENTRY USING RETURN_CODE TYPE I
                     US_SCREEN TYPE C.
      DATA: L_VBELN LIKE VBAK-VBELN,
            L_RSNUM LIKE RESB-RSNUM,
            L_SUBRC LIKE SY-SUBRC.
      CLEAR RETCODE.
      if nast-objky is not initial.
        l_vbeln = nast-objky.
        CALL FUNCTION 'ZSD_RESERVATION_CREATE'
          EXPORTING
            VBELN = L_VBELN
          IMPORTING
            RSNUM = L_RSNUM
            SUBRC = L_SUBRC.
      else.
        retcode = 1.
      endif.
      IF RETCODE NE 0.
        RETURN_CODE = 1.
      ELSE.
        RETURN_CODE = 0.
      ENDIF.
    ENDFORM.

  • Special Functions keys not working on Satellite C50 - Windows 8.1

    Hello,
    Please could someone help me out.
    I have a Toshiba Satellite C50-A0393 that I got a few months ago with Windows 8.1 already installed (64 bit). Today I got a message saying I needed to look at the PC Health, a Toshiba blue message concerning the access agreement, and I noticed that there were three upgrades that needed to be done, the only one I can remember being the Toshiba Video Player. I think that another one had to do with the charger light?
    I don't know.
    But once I restarted my laptop after the updates I noticed that the special function keys were not working (i.e. the volume, mute, pause and play, etc.). i then went onto the Toshiba Desktop Assist and into system settings and selected the keyboard tab. I then made sure the setting for special function mode was selected.
    Now, when that setting is in place, certain keys work but for F3, F5, F6, etc and when I want to use the special functions only the volume up and down work when pressing 'Fn', but special function mode is still selected? Only those two work, not the mute or flightmode or bluetooth, which was working normally before the upgrades.
    I have googled but cannot find anything specific to 8.1, or not relating to upgrading to 8.1. I cannot find the flashcard utility and do not want to try something where I do not know what I am doing. How can I get these special function keys working again normally? Sorry for the long message but I wanted to give as much info as possible.
    Many thanks,
    Melanie

    Hi
    It sounds strange to me that a Toshiba update (Toshiba Video Player, etc) would affect the function key functionality.
    Nevertheless the function key (F1-F10) can be used in combination with or without the FN button. This depends on the special function key mode.
    In case you want to use the F1-F12 functions without the pressing FN button, the function key mode should be enabled (should be set to special function mode)
    Here the full details how it works:
    https://aps2.toshiba-tro.de/kb0/HTD2503B90001R01.htm
    Now it these buttons would not work even if the FN button has been pressed, then there is some problem with the software.
    First of all I would recommend you to set the BIOS to default because this function key mode can be changed in BIOS too.
    After that, check if the key would work. If not, reinstall the
    Toshiba Function Key Utility
    And Toshiba System Driver
    You can also check if the essential service has not been disabled.
    Start the Task Manager and go to start up items. There you should enable all Toshiba apps and services and then restart.

  • Special Function in Output type for PO

    Hi Expetrs:
       Can any please tell me how to write a code for a Purchase Order in the transmission medium "8" ie., Special Function and the PO Script output is converted to PDF file and it should be send to the server path location through FTP.
    Thanks,
    Venkat

    Dear Muthukumar,
    Thanks for this.
    Could you please explain more about it. I am having similar requirement.
    I want to save document on FTP server immediately after saving invoice in PDF format. So how can I use transmission medium 8 and add program to it.
    Please help.

  • Issue with configuration of 'Special Function' to a custom output type

    Hi Experts,
    In my project we have a requirement to configure a custom output type for application V3 (billing) and assign a Special Function to it. I have assigned a custom Program Name and a custom form routine within the custom output type in Processing Routines (in NACE). But when I try to save the Billing document using VF01 / VF02 it gives me an error saying 'Processing Routine XXXXX in program ZXXXXX does not exist'. I have double checked that the Z program is activated. I have declared as follows:
    REPORT ZXXXX.
    FORM XXXX USING return_code us_screen.
    Can anyone please tell me if I am missing something?
    Thanks,
    Avi

    Hi Neil,
    Now this error is resolved. It does not give me that message anymore. But I am getting a new error while saving the billing document with the customized output type. Following is my configuration in NACE:
    Application: V3
    Output Type: ZMAM
    Program: YVRO_TOLLING
    Form Routine: F_FETCH_AND_PREPARE_DATA
    I am trying to place a break-point within the form routine F_FETCH_AND_PREPARE_DATA but it does not stop there. When go back inside the billing document, it shows an error against the ZMAM output type but has nothing in the processing log. Am I missing something?
    Avi

  • Special function 8 - Output Type

    Hi gurus,
    I created a new Output Type with special function 8 called ZPDF in transaction NACE with application MR (invoice verification) and I added to that Output Type ZPDF our custom program called ZXXX_ARCHIVE_LINK in order to post into the MM invoice, a PDF who cames from the SD inovoice.
    The SD invoice number is recorder into the field "Referece" in the MM invoice.
    So, the program should (through the output type and the program):
    1. Read the MM invoice number generated (NAST table into NAST-OBJKY).
    2. Enter to table RBKP with MM invoice number RBKP-BELNR and get the SD invoice number: RBKP-XBLNR.
    3. Enter with SD invoice number XBLNR to table TOA01-OBJECT_ID And get TOA01-ARC_DOC_ID.
    4. Call FM ARCHIV_CONNECTION_INSERT.
    The problem here is when I post a MM inovice in MIRO transaction the system through the condition record added the ZPDF Output Type but don´t read the program  ZMIC_INVOICE_PDF_ARCHIVE_LINK added to that output type. The status of the output type is green (but without any processing log). I checked the setting for the Output Type like 100 times and everything seems to be OK.
    <removed by moderator>. Any advice?
    I don´t know why SAP don´t call the program. I think the ABAP code is wrong:
    REPORT  ZXXX_ARCHIVE_LINK.
    Table Declaration
    TABLES: NAST,     " Message Status
            CMFP,     " Storage Structure for Errors Collected
            EDIDS,    " Status Record (IDoc)
            VBRK,     " Billing Document: Header Data
            TOA01.    " Link table 1
    TYPES: BEGIN OF TY_RBKP,
           BELNR TYPE RE_BELNR,   " Document number of an invoice document
           XBLNR TYPE XBLNR1, "SAEOBJID, " Reference Document Number
      END OF TY_RBKP.
    TYPES: BEGIN OF TY_TOA01,
      OBJECT_ID     TYPE SAEOBJID,    " SAP ArchiveLink: Object ID (object identifier)
      ARC_DOC_ID TYPE     SAEARDOID,  " SAP ArchiveLink: Document ID
      END OF TY_TOA01.
    Data Declaration
    DATA: WA_BELNR TYPE RE_BELNR ,
          WA_ARC_DOC_ID TYPE TY_TOA01 , "-ARC_DOC_ID,
          WA_SAP_OBJECT LIKE SAPB-SAPOBJID," TYPE TOAOM-SAP_OBJECT ,
          ARC_DOC_ID TYPE TOAV0-ARC_DOC_ID,
          GT_RBKP TYPE STANDARD TABLE OF TY_RBKP , "WITH HEADER LINE,
          GT1_RBKP TYPE STANDARD TABLE OF TY_RBKP, " WITH HEADER LINE,
          GT_ARC_DOC_ID TYPE STANDARD TABLE OF TY_TOA01, " -ARC_DOC_ID,
          WA1_RBKP TYPE TY_RBKP ,
          WA_RBKP TYPE TY_RBKP.
    DATA:  WA1_OBJECT_ID TYPE SAEOBJID.
    DATA: WA_OBJKY TYPE NA_OBJKEY,
          WA1_OBJKY TYPE RE_BELNR.
    FORM entry USING ent_retco ent_screen.
      CLEAR ent_retco.
      PERFORM ARCHIV_CONNECTION_INSERT USING nast-objky ent_retco.
    ENDFORM.                    "entry
    FORM ARCHIV_CONNECTION_INSERT USING objky  returncode.
    * Select Reference Document Number from RBKP table
    SELECT BELNR XBLNR
           FROM RBKP
           INTO TABLE GT_RBKP
           WHERE BELNR = objky . " .WA1_OBJKY .
    IF SY-SUBRC EQ 0 .
      LOOP AT GT_RBKP INTO WA_RBKP.
        WA1_OBJECT_ID = WA_RBKP-XBLNR .
        CONCATENATE WA1_OBJECT_ID '%' INTO WA1_OBJECT_ID .
        WA_SAP_OBJECT = WA_RBKP-BELNR .
        SELECT OBJECT_ID
               ARC_DOC_ID
               FROM TOA01
               INTO TABLE GT_ARC_DOC_ID
               WHERE  OBJECT_ID LIKE WA1_OBJECT_ID.
        IF SY-SUBRC EQ 0 .
          READ TABLE GT_ARC_DOC_ID INTO WA_ARC_DOC_ID INDEX 1.
          ARC_DOC_ID = WA_ARC_DOC_ID-ARC_DOC_ID.
          WA_SAP_OBJECT = WA_ARC_DOC_ID-OBJECT_ID.
        ENDIF.
    CALL Function Module:Link table operations
        CALL FUNCTION 'ARCHIV_CONNECTION_INSERT'
               EXPORTING
                ARCHIV_ID                   = 'Z0'
                 ARC_DOC_ID                 = ARC_DOC_ID
               AR_DATE                     = SY-DATUM
                 AR_OBJECT                  = 'MMILOGINV'
            DEL_DATE                   = ' '
                MANDANT                     = SY-MANDT
                 OBJECT_ID                  = WA_SAP_OBJECT
                 SAP_OBJECT                 = 'BUS2081'
                DOC_TYPE                    = 'PDF'
            BARCODE                    = ' '
             EXCEPTIONS
             ERROR_CONNECTIONTABLE      = 1
             OTHERS                     = 2
        IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        CLEAR: WA_RBKP.
      ENDLOOP.
    ENDIF.
    ENDFORM.
    Edited by: Thomas Zloch on Oct 26, 2011 10:52 AM

    ok, if you set for your output type NAST-VSZTP=3 you can add code in your print program to display popup window in which
    user specify own path for storing PDF...
    but if output type will be created in background ( VSZTP ne 3) then
    you must save PDF in server path...and user may download it by
    cg3y...
    regards, darek

  • Trigger special function output type through a custom program

    Hi,
    I have to trigger the special function output type from a custom program.
    This custom program contains a BAPI and the output parameters of this BAPI are required as input to the second BAPI which is contained in the form routine of the special function output type.
    I am not able to understand how to trigger the special function as I dont know how the nast-objky will be updated
    and how the BAPI parameters will be passed.
    Is this has to be done through a Idoc
    Can anyone guide me on how to handle the above functionality.

    Hello,
    I am not able to understand your requirement completely...
    agree with above post....addition-
    1. Transport medium would be '8 - Special Function' where one program would fire and that can be used for further processing.
    2. If condition record are maintained and it is matching with parameters then output type with all transport medium would be called
    Thanks

  • Pro forma invoice from a Delivery Output using "8 - Special Function"

    SAP Gurus
    I am interested to create a proforma invoice for a delivery that is created in the system using VL01N. I am using an option to use the Delivery output to be allow creation  of the pro forma invoice. I created a new output type and assigned 8 - Special function as the medium of the output.
    I managed to find a BAPI that serves this purpose perfectly. Please look at BAPI_BILLINGDOC_CREATEFROMDATA. Enter the following Parameters.
    In table BILLINGDATAIN insert one line with the following data:
    ORDBILLTYP = ZFDP
    REF_DOC = Delivery number
    REF_DOC_CA = 'J'
    The BAPI when it runs on own, creates the required pro forma invoice. But when it is attached to the output type to be triggered as a special function, does not work. What kind of routine should I enter in the processing routine.
    Program on output screen is ZFDP_BAPI
    Form Routine is ENTRY
    there is a routine maintained inside the program ZFDP_BAPI called "ENTRY"
    Inside the subroutine ENTRY, the BAPI_BILLINGDOC_CREATEFROMDATA is invoked.
    Please advice.
    Thank you.

    Hello
    Thanks for the reply. Earlier when I was using the BAPI BAPI_BILLINGDOC_CREATEFROMDATA, The BAPI used for the output type did not work as it uses u2018Commit Worku2019 statement and it interferes with the u2018commitu2019 of standard program. Due to this reason the transaction dumps every time.
    Are you performing the output with dispatch time '4' ? - the answer is yes, I am.
    Just double -checking with you that if you decide to use Use BAPI BAPI_BILLINGDOC_CREATEMULTIPLE and call it in background task, do you think that the we can get past this issue short dump issue? 
    Thanks

  • Special functions in output type

    Hi
    For all the output types I need to use transmission medium 8( Special function).Kindly let me know what is purpose of special functions and where to see output of the form .
    Points will be rewarded.

    Hi,
      Usually Special Function Output types are used if you are not using the standard outputs like IDOC, Print for which SAP standard programs and mehtods/Forms(SAP SCRIPTS) are available. If you want to create an output other than those or if you need some other functionality then you can maintain Special Function Output types and need to maintain the program to process that output type.
    Thanks
    vinod.

  • Output - Transmission Medium 8 - Special Function Issue

    Hi Experts,
    I have created a Z-program and smartform fro Invoice print. This smartform should print based on the Output Type ZPDF. We have configured the program and the smartform in NACE for the Output type.
    In Billing Header Output, Transmission Medium used as 8.Special Function is maintained for the Output type ZPDF.
    But this Output type (ZPDF) is not getting reflected when i try to select it from the billing Tcode : VF03.
    VF03-> Billing Document -> Issue Output to
    Kindly guide.
    Regards
    Gopa

    Hi Deepti,
    Thanks a lot for you reply.
    In my case the dispatch time(NAST-VSZTP) is getting updated as 1. And this value is getting updted into NAST table from Transparent Table  T685B.
    SAPDV70A                       / DV70AI0D
    MODULE (PAI)    / D0100_PRUEFEN
    MODULE D0100_PRUEFEN.
      IF NAST-VSZTP = SPACE.
        NAST-VSZTP = T685B-VSZTP.
      ENDIF.
    How to proceed in this case. Can you plz suggest.
    Regards
    Gopa

  • Special function in output type

    Hi Sap Gurus,
    I am using special function ( 8 ) as medium of sending in my output which is defined for delivery.
    If i try to process this output with dispatch time 3 ( Send application with own transaction ) its getting processed.
    But if i try with option 4  ( Send immediately --at time of saving ) its giving an error.
    Is there any standard SAP note or any pointer to solve this error
    Thanks and Regards,
    Abhijeet

    Hi,
    Use
    You can process a message immediately by updating the application document or you can process it at a later time. For later processing you must use the report program RSNAST00 or a corresponding application function.
    The individual possibilites are:
    Time 1: The message is processed through report program RSNAST00. This report program can be scheduled periodically or started manually.
    Time 2: As in time 1, but the message contains an earliest processing date and a requested processing time. The message is ignored by report program RSNAST00 before the requested date.
    Time 3: The message is selected and processed by application specific programs. Processing can take place online or in the background.
    Time 4: The message is processed when the application document is saved. No further processing of the message is necessary.
    Kapil

Maybe you are looking for

  • Dynadock w. DVI, phase 2

    Hello, looking through the dynadock manual (available online for download on the Toshiba homepage) I could not quite figure out whether Dynadock will be able to transmit the resolution of 1400 x 1050 (SXGA+) to an external monitor. Our Notebook would

  • My app store doesn't work

    i have an imac iMac   Model Identifier:          iMac11,2   Processor Name:          Intel Core i3   Processor Speed:          3.06 GHz My soft ware is OS 10.6.8 my app store on Apple Menu doesn't work so can't upgrade to LIon. I also have an ipad so

  • :new and old operator.

    hi, Using : jdev 11.1.1.5.0 adfbc In forms 10g we use query like this: SELECT DISTINCT ITEM_CLS                  FROM stocks, items                 WHERE STOCK_BE = ITEM_BE                   AND STOCK_ITEM = ITEM_ITEM                   AND STOCK_ITEM

  • Closed caption & subtitles trouble on ipod

    I have two problems with my 16G ipod. 1. When I download movies it plays great but I spend more time reading the subtitles than watching the movie. I don't have the closed caption on or subtitles. How can I get rid of this problem. 2. My ipod gets ho

  • Problems with embedded Video in Safari

    I have an issue when I try to open an embedded video within either safari. I can not open anything, and if the embedded video is Quicktime based, I just get the large 'Q' (Quicktime) sitting in the middle and no video. Can anyone help or tell me how