Form for Output Type LD00

Dear Experts,
THis is regarding form for LD00.
I am from EH&S module.
For getting DG data on form, there is one std form in sap which is RVDELNOTE. The respective print program is RVADDN01
I have replaced this LE_SHP_DELNOTE with RVDELNOTE  then I am getting error: Output could not be issued
As this is script and not  the smartform, I have tried following two combinations In transaction NACE, but still error continue
Combination 1)
Medium: Print Output
Program: RVADDN01
Form Routine: ENTRY
Form:BLANK
PDF/SamartForm Form: RVDELNOTE
Type: BLANK
Combination 2)
Medium: Print Output
Program: RVADDN01
Form Routine: ENTRY
Form:RVDELNOTE
PDF/SamartForm Form: BLANK
Type: BLANK
again if I assign LE_SHP_DELNOTE, it is working fine..
on the other hand, RVDELNOTE is also Standard SAP Script. I have not done any changes in it.
Pls guide,,
Edited by: Amol Joshi on Jan 12, 2011 12:25 PM

Problem resovled at my own..
Thanks...

Similar Messages

  • Delivery Note By Email -Output type LD00

    Hi All,
    We have a requirement to send delivery note by email.
    At the moment we are using output type LD00.
    I've created a similar output type  with a transmission medium '5'.
    But it is not triggering any email.Can you pelase advice what do I need to do in order to trigger an email.
    Thanks
    Venkat

    Hi Santhosh,
    I've checked in NACE transaction ,Partner function SH is already assigned to it.
    Can you pelase give me the steps to create a new output type in NACE.
    Here is how I've created:
    1.NACE->V2 Shipping->Output types->New Entries->ZLDM(New output type)
    In processing routines:
    Transm.Medium: 5
    Program           ZVADDN00
    FORM routine      ENTRY
    Form              ZRVDELNOTE00
    Partner Functions:
    External send     SH     Ship-to party
    Then I went to Procedures:
    I've added my new output type here.
    Do I need to do anything else?Please let me know.
    Thanks
    venkat

  • Invoice list: What is the standard setting for output type LR00 ?

    Hello all,
    They have messed up our system. What are the standard settings for output type LR00 ?
    Program RVADIL01,
    Form ??
    Thanks
    Rad

    Dear Rad,
    > Program RVADIL01,
    > Form - SD_INVOICE_LIST
    Thanks,
    Raja

  • Change "SAPScript" email subject/body for External Send(5) for output type?

    Hello,
    I'm emailing a SAPscript form (converted to PDF) generated via Transmission Medium 5 (External send) for output type (EK00) and need to change email's subject and body of email created by SAP code.  Any suggestions on how to change email's subject and body?
    Thanks,
    Billy

    Also if u want to add a body to the mail.  See the below form (sub routine) which needs to be mentioned in NACE.  Either u can keep this routine in the driver program or u can put in separate report program.  All thing u need to is see the below code and mention the name of the program and form name in nace.  Double click on output type in nace. u will find a tab stripped screen in right.  In the screen u can see the first tab as 'General data'  and at the bottom a block with title 'Replacement of text symbols' can be seen.  There u need to pass this program name and form name.
    Execute ur program and test the result.
    FORM text_symbol_replace TABLES pt_lines  STRUCTURE tline
                              USING ps_thead  STRUCTURE thead
                                    ps_nast   STRUCTURE nast.
      DATA:
        lv_kunnr LIKE vbak-kunnr,          " AN0465 Add AKKUMA1 02/19/07
        lv_new_cursor_column LIKE sy-tabix," Cursor column
        lv_new_cursor_line   LIKE sy-tabix," Cursor row
        lv_changed,                        " Indicator
        lv_matnr     LIKE vbap-matnr,
        lv_vkorg     LIKE vbak-vkorg,
        lv_vtweg     LIKE vbak-vtweg,
        lv_desc(20),
        lv_name      TYPE thead-tdname,    " Name
        lt_lines     LIKE tline OCCURS 0 WITH HEADER LINE,
        lv_currentprogram LIKE sy-repid.   " Program Name
      DATA :
        ps_lines LIKE tline.               " Structure
      CONSTANTS:
        lc_int TYPE nast-nacha VALUE '5',  " External Send
        lc_comma TYPE c VALUE ','.         " Comma Separater
      DATA: BEGIN OF ls_fname,
              dsnam TYPE nast-dsnam,       " Spool Name
              dsuf1 TYPE nast-dsuf1,       " Spool Suffix1
              dsuf2 TYPE nast-dsuf2,       " Spool Suffix 2
            END OF ls_fname.
      FIELD-SYMBOLS: <lfs_nast> TYPE vnast.
      IF ps_nast-kschl EQ gc_zj17.
    Fetching vbak-kunnr.
        SELECT SINGLE kunnr                " Customer
                      vkorg
                      vtweg
                 INTO (lv_kunnr,lv_vkorg,
                       lv_vtweg)
                 FROM vbak
                WHERE vbeln EQ ps_nast-objky.
        IF sy-subrc EQ 0.
          SELECT SINGLE matnr INTO lv_matnr
           FROM vbap
             WHERE vbeln EQ ps_nast-objky.
        ELSE.
          IMPORT xvbak-kunnr TO lv_kunnr FROM MEMORY ID 'YSOLDTO'.
          IMPORT xvbak-vkorg TO lv_vkorg FROM MEMORY ID 'YSALESORG'.
          IMPORT xvbak-vtweg TO lv_vtweg FROM MEMORY ID 'YDISTCH'.
          IMPORT xvbap-matnr TO lv_matnr FROM MEMORY ID 'YMATERIAL'.
        ENDIF.
        IF sy-subrc EQ 0.
          CONCATENATE lv_matnr lv_vkorg lv_vtweg
           INTO lv_name.
          CALL FUNCTION 'READ_TEXT'
               EXPORTING
                    id                      = '0001'
                    language                = ps_nast-spras
                    name                    = lv_name
                    object                  = 'MVKE'
               TABLES
                    lines                   = lt_lines
               EXCEPTIONS
                    id                      = 1
                    language                = 2
                    name                    = 3
                    not_found               = 4
                    object                  = 5
                    reference_check         = 6
                    wrong_access_to_archive = 7
                    OTHERS                  = 8.
          IF sy-subrc = 0.
            CLEAR lv_desc.
            LOOP AT lt_lines.
              CONCATENATE lv_desc lt_lines-tdline
                     INTO lv_desc
                SEPARATED BY space.
            ENDLOOP.                       " LOOP AT lt_desc
            CONDENSE lv_desc.
          ENDIF.
        ENDIF.                            " AN0465 Add AKKUMA1 02/26/07
    Fetch Region.
        SELECT SINGLE name1 ort01               " City
          INTO (gv_name1, gv_ort01)
          FROM kna1
          WHERE kunnr EQ lv_kunnr.
        IF sy-subrc EQ 0.
          CONDENSE gv_ort01.
          CONCATENATE ':OC:'
                      gv_name1
                      gv_ort01
                      lv_desc
                 INTO ps_lines-tdline SEPARATED BY space.
          LOOP AT pt_lines.
            pt_lines-tdline =  ps_lines-tdline.
            MODIFY pt_lines.
            CLEAR pt_lines.
          ENDLOOP.
        ENDIF.                             " IF ps_nast-kschl EQ gc_z..
      ENDIF.                               " AN0465 Add AKKUMA1 02/19/07
    IF NO TEXT IS PROVIDED READ TEXT USING HEADER INFO
      IF pt_lines[] IS INITIAL AND NOT ps_thead IS INITIAL.
        CALL FUNCTION 'READ_TEXT'
             EXPORTING
                  id       = ps_thead-tdid
                  language = ps_thead-tdspras
                  name     = ps_thead-tdname
                  object   = ps_thead-tdobject
             TABLES
                  lines    = pt_lines
             EXCEPTIONS
                  OTHERS   = 1.
        IF sy-subrc NE 0.
        ENDIF.                             " IF sy-subrc NE 0.
      ENDIF.                               " IF pt_lines[] IS INITIAL
    REPLACE VARIABLES USING DATA FROM PROGRAM   YVADOR01
      IF NOT pt_lines[] IS INITIAL.
        lv_currentprogram = 'SAPMV45A'.
        CALL FUNCTION 'TEXT_SYMBOL_REPLACE'
             EXPORTING
                  endline = sy-tabix
                  header  = ps_thead
                  program = lv_currentprogram
             IMPORTING
                  changed = lv_changed
             TABLES
                  lines   = pt_lines.
    Subrc Check not required.
        CALL FUNCTION 'FORMAT_TEXTLINES'
             IMPORTING
                  new_cursor_column = lv_new_cursor_column
                  new_cursor_line   = lv_new_cursor_line
             TABLES
                  lines             = pt_lines
             EXCEPTIONS
                  OTHERS            = 2.
        IF sy-subrc NE 0.
          EXIT.
        ENDIF.                             " IF sy-subrc NE 0.
      ENDIF.                               " IF NOT pt_lines[] IS INITIAL
    SPLIT ORDER NUMBER AND PUT THEM INTO SPOOL REQUEST NAME & SUFFIX FIELD
    SAP USES THESE FIELDS TO CONSTRUCT FILENAME
    FOR THE PDF ATTACHMENT IN EMAIL
      IF ps_nast-nacha EQ lc_int OR ps_nast-nacha = '2'.
        IF ps_nast-dsnam IS INITIAL AND ps_nast-dsuf1 IS INITIAL.
          ls_fname = ps_lines-tdline.
          ps_nast-dsnam = ls_fname-dsnam.
          ps_nast-dsuf1 = ls_fname-dsuf1.
          ps_nast-dsuf2 = ls_fname-dsuf2.
        ENDIF.                             " IF ps_nast-dsnam IS INITIAL...
      ENDIF.                               " IF ps_nast-nacha EQ lc_int
    ENDFORM.                               " TEXT_SYMBOL_REPLACE
    Venkat.

  • Creation of Process code for output type

    Hi,
    Could someone help me out in defining processcodes for output types.
    Thanks in advance,
    Yaseen

    Hi Yaseen,
    The Tr.code WE41 and WE42 are also used for maintaining process codes.
    To maintain process codes in WE41 or WE42, Go to these Tr.Codes and Click on the Change button. Then click on "new entries" button to create your new process code.
    FYI, Outbound process codes are stored in SAP Table TEDE1 and inbound process codes are stored in SAP Table TEDE2.
    Hope this helps.
    Rgds,
    Sam Raju
    Message was edited by: Sam Raju

  • Maintain archiving parameter(s) for output type RD00(appl.V3)

    Hi Guys,
                 While trying to get the output for billing documents I'm facing a error : Maintain archiving parameter(s) for output type RD00 (appl.V3)
    Diagnosis
    At the time of output determination,the archiving parameters for output type RD00(application V3) were incorrectly maintained in customizing.
    Additional information:
    SAP object:
    Archiving object:
    Procedure
    Maintain the archiving parameters and repeat output determination for the required document.
    Expecting the solution.
    Regards
    Raj.

    Can you check what you have in the Storage System Tab in the fields Storage Mode and Document Type.
    It should be Print Only and SDOINVOICE respectively.
    Thanks

  • Logic for Output type determination of shipment

    Hi All,
    I have a requirement where in when a shipment is being saved (on create/change) i need to put a logic in an enhancement to identify if a particular set of output types will be generated or not for that shipment.
    Any info on how i can do this? Is there any FM that can fetch that data.
    Thanks.
    Ashiq Ali

    T. Code  VOFM
    Requirements > Output control
    Check routine 605
    Chek this where you can find some logic for Output type detremination of shipment type
    ~P

  • No processing log for outbound delivery for output type

    Dear Gurus,
    I want to see processing log for output type for outbound delivery .
    But when i click processing log push button for output type for outbound  delivey  , one error is comming as 'NO PROCESSING LOG FOR OUTPUT TYPE'.
    Could you please let me the reason ?
    Edited by: susheelkodam on Sep 9, 2010 10:33 AM

    Hi,
    What transaction are you running when you press the [Output log] button?  If you're in the create transaction, then I think the output log should be available but if you subsequently go in to VL02N and press the Log button, the I don't think the log is available.
    Regards,   Andy

  • :FRM-30085: Unable to adjust form for output.

    I have built a form on my laptop running Oracle Developer Suite 10g (10.1.2.0.2) and runs fine. I started having the message below
    :FRM-30085: Unable to adjust form for output.
    when I tried to open this form on another version of Forms running Oracle Developer Suite10g (9.0.4.2.0) on another computer.
    Could this be the reason - non-backward compatibility.
    If this is the reason, Is there a way to around it.
    Many thanks
    cube60

    Yes, you are correct - you cannot create a form in 10.1.2 then try to run it in 9.0.x. There is no way to avoid this.
    In order to go from an older version to a newer version, you must recompile the source code (FMB, MMB, PLL) in the version where you expect to run it. You cannot simply take an FMX file which was created in 9.0.4 and expect it to run in 10.1.2. This would fail. New executables would need to be created using the 10.1.2 compiler.

  • Regarding the 'Dispatch time' settings for output type...

    Hi Experts,
    May i know what 'Send with application own transaction' means when we configuring output type in SPRO for 'Dispatch time'.
    Cause i knew if we set it as 'Send immediately', then this output type will be triggered upon saving the orders.
    But i dont know what that item for..Could you kindly help me on this...
    What it means if we set the dispatch time as 'Send with application own transaction' for delivery output..??
    Thank you very much.

    Hi,
    If you choose 'Send with application own transaction'  when maintaining condition record for output type,during order,delivery and invoice saving the output type signal is yellow,that means unless you select that output and trigerred for printing it will not goto the spool.i.e in simple words the output is for manual printing.......
    Let me know if you need any clarifications on this..
    Regards,
    Chandra

  • No archive exist for output type YWNK

    Hi,
    in order to see the output message (print) I click on the print icon within contracts (T-code ME33K).
    I get the message 'No archive exist for output type YWNK'. How else can I see the output print. I have
    to preview the output. What is wrong in this case. What has to be made. Pls help.
    Regards
    Marco M.

    Hi
    Try to check if that message was uploaded in the contract you need to see else u need to create it
    Max

  • "Unable to adjust form for output" err msg

    When attempting to compile a form, using either forms builder or
    compiler, I get the following error message:
    FRM-30085: Unable to adjust form for output.
    When looking up the error code, I see:
    Cause: The LOV name referenced does not exist.
    Action: Specify another LOV name, or delete the reference.
    FRM-30085: Unable to adjust form for output.
    Any ideas out there?

    Check all LOVs. Some of LOVs return values in non-existing
    fields. Open LOV properties and go to "Column mappings" and
    check Return Items for all fields in every LOVs.

  • Form: FACTORY_ADDRESS :FRM-30085: Unable to adjust form for output.

    Hi there,
    I have Oracle Enterprise 9i and Developer 10g with Forms on my laptop. I have created a form which runs quite alright from my laptop, but on transferring this form to another computer running Oracle Enterprise 10g and Developer 10g with Forms and with exactly the same backend database schema, it gave me the following error and would not load.
    Form: FACTORY_ADDRESS
    FRM-30085: Unable to adjust form for output.
    What can be wrong?
    Many thanks in advance
    Cube60

    You need to recompile your fmb files to fmx when you redeploy your forms in a new major version. What exact version (all the 5 version digits you find when you show the About box in the builder) are running in the two installations?

  • Deletion Log for output types

    Hi all,
    Where can i find the deletion log for output types
    need to know the username and timestamp.

    Hi Mayank,
    some of the NACE settings are customizing.
    If you enabled the customizing change recordings (which should be ALWAYS enabled on dev system's client), you can browse the changes with the Change Log Browser of customizing tables
    To enable the client recording, please find
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/7e/c81ec852c511d182c50000e829fbfe/content.htm
    If recording was not enabled, no change logs are availible.
    You may reconstruct "old" values by drilling into (released) TMS customizing transports to see which values where included but that's pretty technical view of data.
    Best regards,
    Matthias

  • How to create an output condition record for output type

    For SD LE shipping...
    Create an output condition record for output type
    Thanks!
    Message was edited by:
            Hoo Laa
    Message was edited by:
            Hoo Laa

    Hi Hoo,
    Follow the path.
    SAP Easy Access -> Logistics -> Logistics Execution -> Master Data -> Output   -> Shipping - > Create.
    Tcode: VV21.
    Hope I have clarified your query. Do reward if so.
    Regards
    Nadarajah Pratheb

Maybe you are looking for

  • Formula Variable with Replacement Path - drillup ref.char and still working

    Hi all, I have a requirement, where formula variable (with replacement path) shouldn't work when I remove the reference characteristic from the rows. But this is not the case at the moment I have 'Brand' and 'Material' in the rows and there is 'Mater

  • How to tranfert application data from a ipod to another

    how can i easely transfert my game data from an ipod touch to an ipad mini. I want to play on one and next day play with the other one and continue my game without loosing my work. I don't want to restore all the configuration each time i change devi

  • What is wrong in the pl/sql block

    Hi, I am unable to pass the parameter of one cursor to other cursor. create table temp3 as select * from dept; create table temp4 as select * from emp; create or replace procedure xx_rep is cursor xx_dep_cur is select deptno from dept; cursor xx_emp_

  • Base the same block on different tables

    Hi all. I'm on devsuite 10g. This is my scenario: I have made a form in which the user can build his owner table, making a join with two tables. When the user creates this table, I insert then name of the table created into another tables, which repr

  • RAW Support for Sony

    Any idea when RAW support for the Sony Alpha 330a will be added to Aperture 3? I would have thought that most all late model SONY's use the same RAW specs, but I cannot import my RAW pictures at this point. Thanks