Order confirmation  smartform

Hi
What is the standard smart form for Order Confirmation report?
Could you please also provide me the print program.
Regards
Step
<MOVED BY MODERATOR TO THE CORRECT FORUM>
Edited by: Alvaro Tejada Galindo on Jul 9, 2008 11:50 AM

Hi Step,
Please check this
RVADOR01...............STANDARD PROGRAM
/SMB40/SDORC_A....SMARTFORM
regards,
raam

Similar Messages

  • Sales Order Confirmation SmartForm

    Hi,
    Can you help me get SAP's preconfigured SmartForm and associated print program for the Sales Order Confirmation?
    We are on ECC 5   6.4 and the SmartForm for this is NOT in our system.
    Thank you all,
    Dave...

    Hi Dave
    Check out in se71
    FORM : RVORDER01 Order confirmation

  • Smartforms - SD order confirmation (urgent)

    Hi,
    I am customizing the SD order confirmation smartform SMB40/SDORC_L. I need the following changes to make:
    1. In sold-to-party & ship-to-party window there is "Company" prinited. How can I remove this "Company".
    2. What is the database table and field to get the ship-to-number.
    3. how to add terms-of-payment.
    4. Need to add New account group = 'consignee' in Ship-to-party window.
    5. how to print delivary date in words like(jun 1st 2006).
    please try to respond to any of the above questions. full points assured even for single answer. thanks

    Raju,
    1. As you are customizing the standard form, you need to remove the company text element that need to be removed.
    2. Look at VBPA where all the partners for a give order are stored. You need to choose the right partner type for the Ship to party.
    3. Look at the INCOTERMS field at the header level and item field of the sales order tables (VBAK / VBAP)
    4. You need to change the window to add a text element where you have the text CONSIGNEE.
    5. You will have to split the date and and write the date manually using a text element. Write program lines where in you can split the date and get whatever format you want.
    Regards,
    Ravi

  • Smartform SD order confirmation(urgent)

    Hi,
    I need to develop a SD order confirmation Smartform. Do I need to use form /SMB40/SDORC_L. What about the print program associated with it. I copy the standard form customize it and do the configuration with NACE. Is it correct. But atlast which transaction I have to use inorder to send the application data to the form. I mean for example for PO we use ME9F. what abt in this case. urgent please.
    Points assured.

    Hello,
    I assume that you have installed preconfigured Smartforms package (OSS Note 595812)? For example in 4.7 version correct Smartform is /SMB40/SDORC_A and print program /SMB40/RVADOR01.
    NACE is correct transaction for customizing and you can use tc. VA01 to create some test data. Or just check table VBAK for old order confirmations.
    Br,
    Hannu
    Message was edited by: Hannu Alakangas
    Message was edited by: Hannu Alakangas

  • Email and Fax smartform for Sales Order Confirmation

    Dear friends,
    I have a reqirement to mail and fax Order Confirmation ( Smartform ) to the ship to party.
    In NACE, I have created a Output type ZAU1 in which I have considered 5 External send and assigned the driver program and routine. Also I have selected " send immediatly ". I am unable to debug the driver program. I have put breakpoint in the routine ENTRY as well. Please put some light on this.
    with regards,
    Sathar

    This is for standard t-code 'VA02'. In VA02 goto extras->header->texts->edit
    i have put ZAU1... also selected the communication strategy..
    when i save... no process log appears aslo its giving error status...
    Regards
    Sathar

  • Standard print program for order confirmation

    Hi All,
    I have created smartform for sales order confirmation,now i want to attach it to output type i need standard print program for order confirmation.Do we have any standard program for the same ?
    Thanks in advance
    Shrila

    Hi Shrila,
       refer to the thread below:
    Order confirmation  smartform
    With luck,
    Pritam.

  • Order confirmation Print Program and Smartform

    Hi,
    I found a smartform for the order confirmation.'/SMB40/SDORC_A'.I have searched the forums and found the print program to be the same.But we don't have it.We're on ECC 6.0Where can we download the program from?
    Thanks..
    Edited by: John G on Feb 4, 2008 5:19 PM

    Hi John,
    He has given some FM that is generated by that form. But that FM will vary from system to system . So thats very very wrong.
    Some times smartforms will not be there in our system . You have to request your superiors to place the forms in place.
    Reward points if useful
    Regards,
    Nageswar.

  • Smartform print program for order confirmation

    Hi experts.
    I am looking for a smartform print program for order confirmation.
    The order confirmation in standard is a script with the name RVADOR01 and I tried to copy and change but I don't know which to eliminate and whcih to keep it.
    If any body written the program already please provide me or provide the link to check.
    Thanks in advance
    Sai

    this is the processing form.
    form processing.
      data: lf_fm_name            type rs38l_fnam.
      data: ls_control_param      type ssfctrlop.
      data: ls_composer_param     type ssfcompop.
      data: ls_recipient          type swotobjid.
      data: ls_sender             type swotobjid.
      data: lf_formname           type tdsfname.
      data: ls_addr_key           like addr_key.
      data: document_output_info type  ssfcrespd,
            job_output_info type ssfcrescl,
            job_output_options type ssfcresop.
      perform get_data.
      check retcode = 0.
      perform set_print_param using      addr_key
                                changing ls_control_param
                                         ls_composer_param
                                         ls_recipient
                                         ls_sender
                                         retcode.
    *Get the Smart Form name.
      if not tnapr-sform is initial.
        lf_formname = tnapr-sform.
      else.
        message e001(/smb40/ssfcomposer).
      endif.
    determine smartform function module for invoice
      call function 'SSF_FUNCTION_MODULE_NAME'
        exporting
          formname           = lf_formname
        importing
          fm_name            = lf_fm_name
        exceptions
          no_form            = 1
          no_function_module = 2
          others             = 3.
      if sy-subrc <> 0.
      error handling
        retcode = sy-subrc.
        if sy-subrc = 1.
          message e001(/smb40/ssfcomposer).
        endif.
        if sy-subrc = 2.
          message e002(/smb40/ssfcomposer) with lf_formname.
        endif.
        perform protocol_update.
      endif.
      call function lf_fm_name
        exporting
          archive_index        = toa_dara
          archive_parameters   = arc_params
          control_parameters   = ls_control_param
          mail_recipient       = ls_recipient
          mail_sender          = ls_sender
          output_options       = ls_composer_param
          user_settings        = ' '
          is_nast              = nast
          is_vbdka             = vbdka
          is_addres            = addr_key
        importing
          document_output_info = document_output_info
          job_output_info      = job_output_info
          job_output_options   = job_output_options
        tables
          it_vbdpa             = tvbdpa    "Item information
          it_vbdpau            = tvbdpau   "Subitem numbers
          it_vedpa             = tkomservp  "Contract Item Validity
          it_vedka             = tkomservh  "Contract Header Validity
          it_vedpn             = tkomservpn "Contract Item Cancellation Data
          it_vedkn             = tkomservhn "Contract Header Cancellation DA
        exceptions
          formatting_error     = 1
          internal_error       = 2
          send_error           = 3
          user_canceled        = 4
          others               = 5.
      if sy-subrc <> 0.
        retcode = sy-subrc.
        perform protocol_update.
    get SmartForm protocoll and store it in the NAST protocoll
        perform add_smfrm_prot.
      endif.
    endform.                    "processing

  • Smartform name for Order confirmation?

    hi people,
        Can anyone tell me the <b>name of the smartform for orderconfirmation</b>
    Regards
    Rajasekaran.

    Hi
    Refer below
    http://searchsap.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid21_gci969816_tax299331,00.html?bucket=ETA&topic=299331
    Yes, there is a free preconfigured Smart Form offered by SAP Labs for the SD Order Confirmation. The precise form kit you need may vary depending on your country and your current release level, but the download location for all of the preconfigured forms is service.sap.com/smartforms (follow the "Preconfigured Forms" link).
    On a related note, you may wish to read my recent Weblog Why Bake Forms from Scratch on the SAP Developer Network.
    As for your second question, there are a few ways to access the relevant SPRO (Implementation Guide for R/3 Customizing) transaction to switch the pointer to a Smart Form instead of SAPscript. In your case, one of the simplest ways is via transaction code NACE (Conditions for Output Control). From there, the steps are as follows:
    1) Select 'V1' (Sales) 2) Click on the 'Output Types' button 3) Select the relevant output type (e.g. BA00) 4) Double-click on the 'Processing routines' folder 5) Double-click on the relevant transmission medium (e.g. 1 for printer). 6) The Smart Form entry field is near the top of the screen 7) On the same screen, you can update the print program entries and remove the obsolete SAPscript reference.
    Caution: Even though a Smart Form is client-independent, the above configuration table is client-dependent. In other words, if you make the above change in client 100, it will not affect the settings in client 200.

  • Cannot Print Order Confirmation with Smartforms

    Dear Sir/ Madam,
    I tried to print Order confirmation with Smartform but failed with the return message as "Output could not be issued".
    The followings were my settings:.
    At NACE, the Processing rouines confiugration for Application: V1,  Output Type:BA00 was
    Medium: 1 Print output
    Program:  R2RRVADOR01
    Form routine: ENTRY
    PDF/SmartForm Form: R2RBL_SDORC_L
    Type: Smartform
    At VA02, the output was added as:
    Output: BA00
    Description: Order Confirmation
    Medium: 1 Printout
    Func: SP
    Lng: EN
    Could anyone consult out?
    Cheers,
    Simon
    Cheers,
    Simon

    HI,
      In Txn. NACE... Select your "Application V1".. then choose the button "condition Record" then choose your output type then maintain the condtion..
    Doc Type: <Value>
    Function: SP
    Medium 1
    Date/Time: 4
    Language:EN...
    then choose the line and click on "Communication" button here maintain the "output Device, flag print immedieately/release After output.
    and then try again.
    If your using Smartform/Scriptform then you need to define like this:
    Medium: 1 Print output
    Program: R2RRVADOR01
    Form routine: ENTRY
    Form: R2RBL_SDORC_L
    *PDF/SmartForm Form: *******Blank
    *Type: ******Blank
    Regards
    GK.
    Edited by: Gnana Kumar on Nov 17, 2010 5:24 AM

  • Slaes order confirmation form(smartform)

    Hi,
    Can you help me get SAP's preconfigured SmartForm and associated print program for the Sales Order Confirmation?
    Thanks
    <MOVED BY MODERATOR TO THE CORRECT FORUM>
    Edited by: Alvaro Tejada Galindo on Oct 17, 2008 3:24 PM

    HI
    Agree to Shakeel because preconfigured smartforms are not available in all servers, thats because SMB40 and SMB11 packages are not installed in those servers.
    So, the option available is to convert existing script to smartform. In the smartforms tcode in menu, utilities>Migration>Import SAP script form..
    After that process you will get the layout and you have to change the code however to display.
    Also, to download preconfigured smartforms you need to have access to service.sap.com.
    Regards,

  • Standard(Smartform) Program for Sales order Confirmation

    Hi Experts,
    I have a new Requirement on Smartforms,
    It is Sales order confirmation, Can Any one say what is Revelant program for this Requirement...
    (RVORDER01) is for SAP SCript But i Required Smartform Program..???
    Thanks,,
    ksreddy.

    I Required a program for sales order confirmation ..
    Resolved..!!
    Thanks,

  • Standard smartforms for order confirmation

    Hi all
    i search the standard smartforms for order confirmation. What's the name for this form....
    i have only find for invoice LB_BIL_INVOICE and for Delivery LE_SHP_DELNOTE, but not for oder confirmation....
    thx abap_begin....

    Hi,
    For the printing of the order confirmation there is a standard script RVORDER01. You can find this in transaction NACE by choosing application as V1 then output type as BA00 and then Processing routines.
    Regards
    Dillip Sahoo

  • Sales order confirmation,standard layout set,smartforms.

    What is the standard layout set for sales order confirmation in smartforms.
    I promise to reward,than Q

    Hi,
    Check In Transaction Code NACE and
    Check table TNAPR.
    TNAPR is the table which will have all the Standard Script and Smartforms
    Regards
    Sudheer

  • Smartforms SAP-delivered form template for SD Sales Order Confirmation

    All,
    I am trying to find the SAP-delivered form template for SD Sales Order Confirmation. I looked in OSS Note 430621 and I can not see it there.
    This is the sales order likeness of what LB_BIL_INVOICE is for invoice.
    Thanks in advance, Saint Paul Pete

    Hi Balaji,
    This is your old friend damo(annamali university)!. Saw your question!. I will send you the answer.
    [email protected]
    Regards,
    Damo

Maybe you are looking for

  • File from the Application server

    Hi gurus, I am working on a scenario where I need to get a file from the application server and for this I need to ask user to enter the location and that too at the selection screen and then I need to read this location using open data set and read

  • Strange problems with Windows 7 running on Bootcamp

    Hi there. I have just installed Windows 7 using Bootcamp on my Macbook with Leopard. I have a few strange problems and just wanted to see if I could gain any help or see if anyone else is experiencing these problems. Apart from those, its running gre

  • New Air and Photoshop - Your thoughts..

    Despite all the nay sayers out there I'm still drawn to the Air, but my one concern is around running Photoshop. The Air would never be a primary machine for me and for the most part it would be used for traveling, internet use and using Photoshop wh

  • Password Protect Folder with Pics in Photoshop CS4

    I want to password protect a folder  I have JPEGS in so any one else who may access my computer cannot get into that folder and view what is inside. How do I do it?

  • I can not update my current version of itunes onto my windows computer

    I have an older version of itunes because everytime I go to update it, I get an error. Now I have installed the iOS 6 on my iphones and ipods and can no longer connect to the itunes version on my computer.  Also, when I open the itunes, I get a messa