To SET -UP message type 5 External Send to the purchase order approver

Hi All
Please help me to To SET -UP message type 5 External Send to the purchase order approver
Susan

Susan,
This to me sounds like a release strategy setup using workflow. Could you please set up Release strategies initially and and then the workflow part couldd  be handled by a workflow personnel.
Else, Setup teh message type with medium 7, and partner function MP, put the user name in the partner field. Go to communication method, choose the recipient type and fiull other required parameters and you should be set.
Edited by: Pavan Kumar on Apr 6, 2010 12:27 PM

Similar Messages

  • Stock Type "Quality Inspection" on the Purchase Order

    We would like to use the quality inspection stock type in the purchase order; so when are users go to receive the materials it would automatically post them to quality inspection stock.  We are trying to do this without using alot of the functionality in QM.  My question is, in transaction MIGO it normally uses movement type 101.  When we try to receive the materials we get this message:
    "Account determination for entry 0010 BSX ____ ___ 7920 not possible"
    My questions is, are we using the correct process/movement type.  We have been researching this but have not found much detail on the movement type 101 for this process.
    We realize we can use movement types 321 and 322 in MB1B to move the product.
    Any suggestions would be helpful.
    Thanks,
    Mark

    Hi,
    The message you are getting is in no way related to the Quality inspection stock. You can check this by changing the Quality Inspection stock type. The message is related to valuation class entered in the mateiral master. Pl. check your system configuration for valuation class indicated (7920) in transaction OBYC (for GBB - BSX). This setting automatically determines the G/L account to which the FI entry should be posted at the time of posting GRN.
    If you maintain correct G/L account entry for valuation class 7920 in transaction OBYC for GBB - BSX, your message will disappear & you will be able to post GRN.
    Regards,
    Prashant Kolhatkar

  • Output message type External send - Suppress spool number in SOST title

    Dear all,
    Using an external send output type, we send order confirmation from by mail.
    Depending of printer we use, we have different behaviors :
    With a normal printer, the mail title we get in SOST is exactly the content of field <NAST-TDTITLE>.
    This field can be changed in the print program, so we can set exactly the title we want.
    With a PDF2MAIL printer (printer defined in SPAD with property host spool access method : M (Email to Receiver/Owner), the mail title we get in SOST is the following : <SystemID><Spool Number><NAST-TDCOVTITLE>.
    Do you know whether it is possible to suppress standard information <SystemID><Spool Number>
    and therefore have only <NAST-TDCOVTITLE>.
    Setting both fields <NAST-TDCOVTITLE> and <NAST-TDTITLE> using print program, the goal is to have allways same title in SOST ...
    Can you help me ?
    J.C.

    Hi,
    I am not got your reuirement clearly, but i feel your reuirement is close to this thread:
    RLB_INVOICE program for sending mail to muliple mail's Id's
    I have used the Cl_BCS class to send mail to muliplte vendor mail id's
    If needed code will be send.
    Hope this will help.

  • Set player / CD / DVD external (USB) in the "boot order" BIOS

    Greetings to all! A short buy an external burner ... I "studied" the items in the BIOS of my pc in regard to boot ...
    that's how I set
    boot options
    CD-ROM BOOT <enabled>
    BOOT FLOPPY <enabled>
    Internal Network Adaptor Boot <disabled>
    BOOT ORDER
    USB FLOPPY
    INTERNAL CD7DVD ROM DRIVE
    LAPTOP HARD DRIVE
    DISKETTE KEY ON USB / USB HARD DRIVE
    ! NETWORK ADAPTER
    With all these "items" listed according to you, you can connect an external burner and if so, which item should be inserted as "primary"? Boot Options section remains unchanged? Consequently cambiarà only section. Boot Order?
    Thanks in advance!

    Hello ettore88. I understand that you're wanting to boot from this external (USB) CD drive. Is this correct?
    Most notebooks do not support this functionality so it is unlikely that you can boot from this external CD drive.
    I suggest leaving the boot order as it is. That way if you ever need to boot from CD/Floppy the option is already there. As long as you do not have a bootable disc in either drive when trying to turn your notebook on you shouldn't see any problems.
    If I misunderstood your question or if you have more questions just let me know. Have a great day!
    Please click the white star under my name to give me Kudos as a way to say "Thanks!"
    Click the "Accept as Solution" button if I resolve your issue.

  • How to define output types email or external send in the report program

    Hi all,
    now we are using a zprogram for output type printer and standard program RVADOR01 for output type external send. Now i want to modify my zprogram itself to support external send email as well as printer also. What modifications should I have to make in my zprogram. My form is a script.
    Thank you,
    Mallik

    hi all,
    i made the following changes in my code and it worked well.
    thank you for all who tried to share my pain.
    thanks one and all.
    hope this code will help anybode.
    thanks & regards
    FORM OPEN_FORM_EMAIL.
    TABLES: TNAPR,                         "Programs & Forms
            ITCPO,                         "Communicationarea for Spool
            ARC_PARAMS,                    "Archive parameters
            TOA_DARA,                      "Archive parameters
            ADDR_KEY.                      "Adressnumber for ADDRESS
    TYPE-POOLS SZADR.
    DATA: LVF_DEVICE LIKE ITCPP-TDDEVICE,
          LVF_DIALOG(1)     TYPE   C   VALUE ' ',
          LVS_RECIPIENT     LIKE   SWOTOBJID,
          LVS_SENDER        LIKE   SWOTOBJID,
          LVS_SNAST         TYPE   SNAST,
          LVF_PROGRAM       LIKE   SY-REPID,
          LVS_COMM_TYPE     TYPE   AD_COMM,
          LVS_COMM_VALUES   TYPE   SZADR_COMM_VALUES,
          LVS_TITLE LIKE SNAST-TDCOVTITLE.
    reset return code
      RETCODE = 0.
    if there is a communication strategy used ...
    IF NOT NAST-TCODE IS INITIAL AND NAST-NACHA EQ '5'.
      ... use stratagy to get communication type
        CALL FUNCTION 'ADDR_GET_NEXT_COMM_TYPE'
             EXPORTING
                  STRATEGY           = NAST-TCODE
                ADDRESS_TYPE       =
                 ADDRESS_NUMBER     = KNA1-ADRNR
                PERSON_NUMBER      = VBDKA-ADRNP
                  PERSON_NUMBER      = ADDR_KEY-PERSNUMBER
             IMPORTING
                  COMM_TYPE          = LVS_COMM_TYPE
                  COMM_VALUES        = LVS_COMM_VALUES
           TABLES
                STRATEGY_TABLE     =
             EXCEPTIONS
                  ADDRESS_NOT_EXIST  = 1
                  PERSON_NOT_EXIST   = 2
                  NO_COMM_TYPE_FOUND = 3
                  INTERNAL_ERROR     = 4
                  PARAMETER_ERROR    = 5
                  OTHERS             = 6.
        IF SY-SUBRC <> 0.
          RETCODE = SY-SUBRC.
          SYST-MSGTY = 'E'.
          PERFORM PROTOCOL_UPDATE.
        ENDIF.
    ENDIF.
       LVS_COMM_TYPE = 'INT'.
      CLEAR LVS_COMM_VALUES-ADSMTP-SMTP_ADDR.
      CLEAR LVS_SNAST.
            LVS_COMM_VALUES-ADSMTP-SMTP_ADDR = V_CUST_EMAIL.
    convert communication data
       MOVE-CORRESPONDING NAST TO LVS_SNAST.
            LVS_SNAST-ANZAL = 1.
            LVS_TITLE = 'Mail Header Title'.
      MOVE LVS_TITLE TO LVS_SNAST-TDCOVTITLE.
       MOVE SY-REPID TO LVF_PROGRAM.
      CALL FUNCTION 'CONVERT_COMM_TYPE_DATA'
           EXPORTING
                PI_COMM_TYPE              = 'INT'
                PI_COMM_VALUES            = LVS_COMM_VALUES
                PI_SCREEN                 = XSCREEN
              PI_NEWID                  =
                PI_COUNTRY                = ADRC-COUNTRY
                PI_REPID                  = SY-REPID
                PI_SNAST                  = LVS_SNAST
                PI_MAIL_SENDER            = SY-UNAME
           IMPORTING
                PE_ITCPO                  = ITCPO_LS
                PE_DEVICE                 = LVF_DEVICE
                PE_MAIL_RECIPIENT         = LVS_RECIPIENT
                PE_MAIL_SENDER            = LVS_SENDER
           EXCEPTIONS
                COMM_TYPE_NOT_SUPPORTED   = 1
                RECIPIENT_CREATION_FAILED = 2
                SENDER_CREATION_FAILED    = 3
                OTHERS                    = 4.
      IF SY-SUBRC <> 0.
        RETCODE = SY-SUBRC.
        SYST-MSGTY = 'E'.
        PERFORM PROTOCOL_UPDATE.
      ENDIF.
      CHECK RETCODE EQ 0.
    fill structure itcpo
      ITCPO = ITCPO_LS.
    open form
      CALL FUNCTION 'OPEN_FORM'
           EXPORTING
              APPLICATION        = 'TX'
               ARCHIVE_INDEX      = TOA_DARA
               ARCHIVE_PARAMS     = ARC_PARAMS
                DEVICE             = 'MAIL'
                DIALOG             = 'X'
                FORM               = 'ZSDLS003'
                LANGUAGE           = SY-LANGU
                OPTIONS            = ITCPO_LS
                MAIL_SENDER        = LVS_SENDER
                MAIL_RECIPIENT     = LVS_RECIPIENT
              MAIL_APPL_OBJECT   = ' '
              RAW_DATA_INTERFACE = '*'
         IMPORTING
              LANGUAGE           =
              NEW_ARCHIVE_PARAMS =
              RESULT             =
           EXCEPTIONS
                CANCELED           = 1
                DEVICE             = 2
                FORM               = 3
                OPTIONS            = 4
                UNCLOSED           = 5
                MAIL_OPTIONS       = 6
                ARCHIVE_ERROR      = 7
                OTHERS             = 8.
      IF SY-SUBRC NE 0.
        CASE SY-SUBRC.
          WHEN 7.
            RETCODE = SY-SUBRC.
            SYST-MSGID = 'VN'.
            SYST-MSGNO = '096'.
            SYST-MSGTY = 'E'.
            SYST-MSGV1 = NAST-KSCHL.
            SYST-MSGV2 = NAST-KAPPL.
            PERFORM PROTOCOL_UPDATE.
          WHEN OTHERS.
            RETCODE = SY-SUBRC.
            PERFORM PROTOCOL_UPDATE.
        ENDCASE.
      ENDIF.
      SET COUNTRY ADRC-COUNTRY.
    ENDFORM.

  • ALE message type WMTORD sending ST meins

    good morning/afternoon to all,
    we are in the process of setting up a 3rd party warehouse/miniload system and they connect using ALE. the 3rd party system is not a SAP system. our system is 4.7C. we are being asked to use this message type (WMTORD - standard) to send transport orders. they receive the idoc successfully with correct information, except for the unit of measure field meins. they receive the untranslated unit of measure ST, instead of EA.
    is there a fix for this? can this be changed with standard code, or is a user exit needed. and, if the user exit is needed, why does for example the message type MATMAS send a EA and not the ST? i do have the global unit or measure ST setup to send EA in spro.
    thanks in advance.

    it looks like no one knows the answer...
    here is what i found (for future reference)
    enhancement MWMIDO01
    component(fm) - EXIT_SAPLLIDO_001
    include - ZXLIDU01
    code example
    tables: e1ltori.
    loop at t_idoc_data.
      if t_idoc_data-segnam = 'E1LTORI'.
        move t_idoc_data-sdata to e1ltori.
        if e1ltori-meins = 'ST'.
          move 'EA' to e1ltori-meins.
        endif.
        move e1ltori to t_idoc_data-sdata.
        modify t_idoc_data.
      endif.
    endloop.
    *****solved*****

  • Smartforms PO - output type external send - for purchase order

    Dear
    I want to define a specific output type  for example ZPOM, with medium 'External Send'. The communication Strategy is SMTP (MAIL).
    The configuration of the Processing Routine is the following:
    Program: - FM06P
    Form Routine: ENTRY_MEU
    SMARTFORM: Z_MM_PURCHASEORDER.
    When we create this mesage in the PO, no mail is send. There is also no processing log available.
    Is it possible to use the same smartform with print program that is used for Medium 'Print Output' for medium 'External Send'?
    Best regards
    Luc

    What you need to do is to create in SPAD Output device for E-mail ( in the Host Spool Access Method define M:E-Mail to Receiver/Owner) and then in the 'Print Output' assign this device.
    Hope this helps.
    Thanks,
    Naveed

  • Configuration setting for Message type to take OA print out put

    Hi All,
    Please let us know how to configure setting for Message type  for OA in SD to take print or to get print preview.
    Pls let me know .
    Regards,
    Nagaraj S

    hhv

  • How to change P.O. duplication message type from warning to error for Order

    Hi Experts,
    I have a requirment to change P.O. duplication message type from warning to error for Order only not OrderTemplate.  I can easily change message type in BAdI ISA_BASKET_MSGS, but I can't find the parameter to know if it's Order or OrderTemplate (DocType).   If this BAdI is not good way,  is there other way? and how to please?
    Please advise / help..
    Thanks, Jin

    Thanks Easwer for your help. 
    The info for getting status from function is very clear and I followed you instruction and completed the coding in BAdI and tested it successfully .... Thank you very much.  I need to learn where I can see the system status of the template,  i.e.  I1034 (Order Template) or Order or Quotation .....?  if I need to filter out Quotation, I can easily do it in the BAdI.   Could you please provide me more details?
    Thanks again, Jin
    Thanks again, Jin

  • Setting for Sending the purchase order via EDI

    Hi,
    I have no knowledge on the Sending the Purchase Order via EDI.
    What is the setting that need to do in MM side?
    Anyone has any idea?

    Hello Janice,
    Please refer the below LINKs which would provide you clear approach for configurational task of sending PO through EDI.
    [LINK|http://help.sap.com/saphelp_46c/helpdata/en/dc/6b7c9f43d711d1893e0000e8323c4f/frameset.htm]
    [LINK 2|http://www.erpgenie.com/sapgenie/docs/advanced_guide_to_edi_configuration.doc]
    Regards,
    SARTHAK

  • I cannot erase my emails definitevely show me a message "file cannot send to the papelera"

    I cannot erase my emails definitevely show me a message "file cannot send to the papelera"

    How about in your Applications folder?

  • How to set up automatic payment for the purchase order

    Hi, All,
    I have one question how to set up automatically payment for the Rent Office purchase Order?
    There is the requirement from the client. They want to create one kind of purchase order for the Office Rent, then pay the fees in the certain time of every month to the vendor for the rent fees without any invoice. Whatu2019s the normal solution for this kind of purchase order? Is it ERS? Or something else?
    Please give me the details and business flow. Also please tell me how to setup in the SAP and T-code.
    Thanks in advance

    Either you can set up ERS or you can pay directly from the FI side.
    Prerequisites
    Evaluated receipt settlement must be flagged in the purchase order item.
    The vendor must be flagged as being subject to ERS in the vendor master record.
    The goods receipt must refer to a purchase order.
    Goods-receipt-based Invoice Verification must be defined for the purchase order item.
    A tax code must have been maintained in the purchase order item.
    The order price of the materials may not be an estimated price.
    If you flag a vendor as being subject to ERS, the system sets the ERS indicator as a default in each item when you create a purchase order for the vendor. You can prevent this happening for certain vendors by flagging the info record for the material and the vendor as not being subject to ERS.
    In Purchasing, you can delete the default ERS indicator in a purchase order item.
    Choose Logistics Invoice Verification ® Automatic Settlement ® Evaluated Receipt Settlement (ERS).
    The selection screen appears.
    You can use the following criteria to narrow down selection of the transactions to be settled:
    Company code
    Plant
    Goods receipt posting date
    Goods receipt document
    Fiscal year of the goods receipt
    Vendor
    Purchase order and order item
    You can define the selection criteria for the invoice documents by:
    Delivery
    Purchase order
    Purchase order item
    Goods receipt document
    Credit memo
    Invoice
    Currency
    Choose  Execute.
    The system issues a log for Evaluated Receipt Settlement, which displays the following:
    Settled
    In line with your selection criteria, the system displays all the order items that were settled (or if you are working in test mode, which would have been settled).
    Could not be settled
    In line with your selection criteria, the system displays all order items for which ERS is defined but could not be settled. It also lists the reasons.
    If the system reports being unable to invoice a transaction, you should exclude the transaction from ERS to avoid it being included in the log the next time ERS is run.
    Select the item and choose Exclude from ERS.
    The system also generates and possibly sends a message to inform the vendor(s) about the transaction settled, depending on the settings in Customizing.
    You can display the following environment information for the order items selected. To do this, choose Goto ®:
    Display purchase order
    Display invoice
    Display material document
    Display long text

  • How to send a Mail purchase order automaticaly from ME22N

    How to send a Mail purchase order automaticaly from ME22N

    Hi,
    First create an entry via NACE with medium =   5 ( External send ) with all other details same as normal print option. Now ensure that vendor master of the po has got the external e-mail id of the vendor. Now go to ME22n in mesages create a message with medium = 5 ( External Send ). Go to communication method, key in Communication strategy.Go to Further date & against Despatch time pick up option 4 viz. Send immeidately while saving an application. Now once you press the save button it will be sent to the address maintained in the vendor master of the vendor of the PO. Please note you require some basic settings from BASIS side as well.
    I hope this helps,
    You may also refer to the SAP note 191470.
    Regards
    Raju Chitale

  • Error message in down payment on asset purchase order

    Hello,,
    While i am trying to make down payment request with reference to PO have asset number it is return an error message
    *Store a cost element for credit down payments
        Message no. KI165
    Diagnosis
        You posted a payment to a CO-relevant object (cost center, order, and so
        on). The payment is therefore recorded in CO.
        If a payment has no order reference, no consumption account can be
        derived. Therefore, CO posts the payment under a default cost element
        created and stored during Customizing.
        You have not yet maintained this default in the system.
    Procedure
        Maintain the default cost and revenue elements in the Implementation
        Guide under "Project System" for controlling area CA00.*
    I don`t know what is the reason for using this cost element and which type of cost elements that i can use in this issue....
    We are not use Down payment clearing account, because Our customer don`t need this account..
    Please help me ASAP
    Thanks for your cooperation
    Hussein

    Hello Hussein,
    For error message KI165,please maintanin default cost  element in OKEP.Down payments have to be posted in CO with cost   elements. In case of purchase orders (or open items in CO), the cost  element for consumption can be derived from the purchase order. Thus the  down payment in CO is posted with the consumption cost element.                                                                               
    If the  down payment does not have any reference to a purchase order, then the cost element for which the consumption will be posted is not known.  In this case, the cost element maintained with OKEP is used.                     
    The error message KI165 will occur if no cost element is maintained with  OKEP - not regarding whether the actual down payment has a reference to  a purchase order and thus will update in CO under the consumption cost element derived from the purchase order.  This is always a  source of  misunderstanding - but I hope it is clear now.                                                                               
    OKEP configuration is absolutely necessary if you do not have  a cost element assigned at the time of downpayment request creation.                                                                               
    If after maintaining the default cost element you get some other error  then please note that you would need to check the following :                                                                               
    1.Compare the configuration settings for the GL accounts that are  used for posting the cash call in EHP4 system with the system without the EHP4 support pack.               
    2.Check the controlling area settings in both the systems.        
    Regards Bernhard

  • How to set default value for Price Change Indicator in Purchase order

    Hi,
    While creating the service purchase order with item category "D" the price change indicator in the services tab of the purchase order is getting checked by default. I want to uncheck this by default.Where can we set the default property for this.
    Thanks in Advance!
    Surya

    My plsql parameter is p_arr which is of "TYPE vc2_255_arr IS TABLE OF VARCHAR2(255) INDEX BY BINARY_INTEGER"You need to declare it in a package specification and initialize in the package body:
    SQL> create or replace package pmp_lib
    as
       type vc2_255_arr is table of varchar2 (255)
                              index by binary_integer;
       vc2_255_arr_default   vc2_255_arr;
    end pmp_lib;
    Package created.
    SQL> create or replace package body pmp_lib
    as
    begin
       vc2_255_arr_default (1) := 'abc';
       vc2_255_arr_default (2) := 'def';
    end pmp_lib;
    Package body created.
    SQL> declare
       arr   pmp_lib.vc2_255_arr := pmp_lib.vc2_255_arr_default;
    begin
       for i in 1 .. arr.count
       loop
          dbms_output.put_line (arr (i));
       end loop;
    end;
    abc
    def
    PL/SQL procedure successfully completed.so in your case it would probably be sth like (assuming pmp_lib is a package):
    <%@ plsql parameter="p_arr" type="PMP_LIB.VC2_255_ARR" default = "PMP_LIB.vc2_255_arr_default" %>

Maybe you are looking for