Configuring PO release Internal SAP mail

Dear friends,
I have already configured PO release strategy. But client requirement is when PO will be released internal E Mail to be sent through SAP Mail Inbox.Pl tell me how to configure this.
Regards,
ASK

It can be done by workflow.
Just create a workflow using SWDD for the business object BUS2012 and then
send mail to the respective mail id according to your condition ,it happens
for every PO.
Edited by: Prabhaharan SAP MM on Jul 21, 2011 3:29 PM

Similar Messages

  • Release blocked orders using sap mail

    Hi Gurus,
    How can I configure SAP that will forward all blocked orders (due to credit management) to sap mail without using workflow functionality?  At the same time, the approver can release the block in sap mail.
    Thanks,
    Paul

    Hi john paul
    Assign KRML output type and maintain conditon record VV11 and use Internal mail (if internal mail is used) or External mail(If it is external mail is used) But the system will ask for personnel number while creating conditon record.If you have integrated with HR module then you tell them to create a personnel in your company code and while maintaining condition record VV11 assign that Personnel number (Internal or external mail), So once the sales order exceeds credit limit and gets blocked a mail will go to the Personnel number you assigned in the KRML condition record.The Personnel number you assigned in the KRML condition record  will reply back and then you can release the order and do delivery and billing
    Regards
    Srinath

  • How Internal table data send to sap mail as a attachment?

    Hi,
    Can any one please let me know , how we will send internal table data to sap mail.
    In my internal table my data output length is more than 255 characters.
    Thanks in advance.

    Hi
    Try out the below code:
    DATA: ld_mtitle LIKE sodocchgi1-obj_descr,
            ld_format TYPE  so_obj_tp ,
            ld_attdescription TYPE  so_obj_nam ,
            ld_attfilename TYPE  so_obj_des .
    *        ld_receiver LIKE  sy-subrc.
      DATA:   it_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
              it_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
              it_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
              w_cnt TYPE i,
              w_sent_all(1) TYPE c,                             "#EC NEEDED
              w_doc_data LIKE sodocchgi1.
      REFRESH it_receivers . CLEAR it_receivers .
      IF v_trip_send = 'X'.
        it_receivers-receiver = it_trip_dload-approver_email .
      ELSE .
        it_receivers-receiver = it_adv_dload-approver_email .
      ENDIF.
      it_receivers-rec_type = c_u .
      APPEND it_receivers. CLEAR it_receivers.
    *  it_receivers-receiver =            '  <Email ID>               '              "Email address.
      IF v_trip_send = 'X' .
        it_receivers-receiver = it_trip_dload-requester_email .
      ELSE .
        it_receivers-receiver = it_adv_dload-requester_email .
      ENDIF .
      it_receivers-rec_type = c_u .
      it_receivers-copy     = 'X' .
      APPEND it_receivers. CLEAR it_receivers.
      ld_mtitle = p_mtitle.
      ld_format              = p_format.
      ld_attdescription      = p_attdescription.
      ld_attfilename         = p_filename.
    * Fill the document data.
      w_doc_data-doc_size = 1.
    * Populate the subject/generic message attributes
      w_doc_data-obj_langu = sy-langu.
      w_doc_data-obj_name  = c_saprpt.
      w_doc_data-obj_descr = ld_mtitle .
      w_doc_data-sensitivty = 'F'.
    * Fill the document data and get size of attachment
      CLEAR w_doc_data.
      READ TABLE it_attach INDEX w_cnt.
      w_doc_data-doc_size =
         ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
      w_doc_data-obj_langu  = sy-langu.
      w_doc_data-obj_name   = c_saprpt.
      w_doc_data-obj_descr  = ld_mtitle.
      w_doc_data-sensitivty = c_f.
      CLEAR it_attachment.
      REFRESH it_attachment.
      it_attachment[] = it_attach[].
    * Describe the body of the message
      CLEAR it_packing_list.
      REFRESH it_packing_list.
      it_packing_list-transf_bin = space.
      it_packing_list-head_start = 1.
      it_packing_list-head_num = 0.
      it_packing_list-body_start = 1.
      DESCRIBE TABLE it_message LINES it_packing_list-body_num.
      it_packing_list-doc_type = c_raw.
      APPEND it_packing_list.
    * Create attachment notification
      it_packing_list-transf_bin = c_x.
      it_packing_list-head_start = 1.
      it_packing_list-head_num   = 1.
      it_packing_list-body_start = 1.
      DESCRIBE TABLE it_attachment LINES it_packing_list-body_num.
      it_packing_list-doc_type   =  ld_format.
      it_packing_list-obj_descr  =  ld_attdescription.
      it_packing_list-obj_name   =  ld_attfilename.
      it_packing_list-doc_size   =  it_packing_list-body_num * 255.
      APPEND it_packing_list.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          document_data = w_doc_data
          put_in_outbox = c_x
          commit_work   = c_x
        IMPORTING
          sent_to_all   = w_sent_all
        TABLES
          packing_list  = it_packing_list
          contents_bin  = it_attachment
          contents_txt  = it_message
          receivers     = it_receivers.
    &*********<removed_by_moderator_together_with_6_unmentionables>************&
    Edited by: Julius Bussche on Jun 23, 2008 11:04 PM

  • Wlc 5508 : guest users to be configured only give access for internal SAP application

    Hi,
    I have one new requirement with one of the client.
    I have wlc 5508 with 6.0 firmware. I need to have one guest wlan which will have access only for internal SAP application.
    I have gone through cisco document for internet guest users , where web page will be redirected with user name and password once it is authenticated , we can access internet.
    Provided if we have access list configured in wlc ...  for internet access only /
    what about this mentioned scenario ?
    can anybody suggest on the same ?

    Hi Vinod,
    Go for the ACL on any Router or the switch.. i prefer not on the WLC..
    http://www.cisco.com/en/US/products/sw/secursw/ps1018/products_tech_note09186a00800a5b9a.shtml
    Here is the link as well to do it on the WLC
    http://www.cisco.com/en/US/tech/tk722/tk809/technologies_configuration_example09186a00807810d1.shtml
    Lemme know if this answered ur question..
    Regards
    Surendra

  • How to send URL (of length 500 Characters) in SAP Mail??

    Hi Everybody,
    I need to send the URL in SAP mail  using FM SO_NEW_DOCUMENT_ATT_SEND_API1.
    The URL is of length 500 characters. Is there anyway I can send this URL in mail, even as attachment will do.
    The Mail is accepting 255 characters in one line. In my case I need to split it in to two lines.
    But in mail only firstline is coming as URL and next line is truncating.
    Thanks in advance.
    Praveen.

    hi prashant,
    using this function module.... when sending the url into attachement it will not take any text beyound 255 caharacters.
    so u need to split your url and add the remain to the next line of the internal table that ur passing to this FM.
    in the form where u build the table for the attachment
    FORM f_build_datatable.
    DATA: lwa_excel TYPE gty_excel,
            lwa_attach_list TYPE solisti1,
            lv_attach TYPE string,
            lv_xcnt        TYPE i.
         loop at gt_url into lwa_url
    CONCATENATE lwa_url INTO lv_attach SEPARATED BY gc_con_tab .
        CONCATENATE lv_attach gc_con_cret INTO lv_attach.
        DO.
          lwa_attach_list-line = lv_attach.
          APPEND lwa_attach_list TO gt_attach_list.
          lv_xcnt = STRLEN( lv_attach ).
          IF lv_xcnt > 255.
            lv_attach = lv_attach+255.
          ELSE.
            EXIT.
          ENDIF.
        ENDDO.
        CLEAR: lwa_url, lwa_attach_list.
      ENDLOOP.
    ENDFORM.                    " f_build_display_file
    Code Formatted by: Alvaro Tejada Galindo on Jan 8, 2009 2:48 PM

  • Send an SAP object (BUS****) as attachment with SAP Mail

    Hi all,
    I'd like to send a internal SAP(express)-mail
    with a purchase order as business object (BO) attached. (here BO = BUS2012).
    It's the same thing you can do with generic object services, GOS, to send a SAP business object as mail notification
    attachment.
    Can I use the function 'SO_DOCUMENT_SEND_API1' or
    do I have to use the BCS-functions?
    All the reports BCS_EXAMPLE* don't send a
    business object.
    Thanks in advance,
    Markus

    Hi Markus,
    Seems as if FM 'SO_DYNP_DOCUMENT_TRANSFER_API1' may popup a window. Below is a working program. Have fun!!
    Cheers,
    Ramki.
    REPORT  zramki_send_mail_bor                    .
    *& Report  ZRAMKI_SEND_MAIL_BOR
    *&  Send document with BOR Object as attachment
    DATA: docdata    LIKE sodocchgi1,
          objpack    LIKE sopcklsti1 OCCURS 10 WITH HEADER LINE,
          objhead    LIKE solisti1   OCCURS 10 WITH HEADER LINE,
          objtxt     LIKE solisti1   OCCURS 10 WITH HEADER LINE,
          objbin     LIKE solisti1   OCCURS 10 WITH HEADER LINE,
          objhex     LIKE solix      OCCURS 10 WITH HEADER LINE,
          reclist    LIKE somlreci1  OCCURS  1 WITH HEADER LINE.
    DATA: tab_lines  TYPE i,
          doc_size   TYPE i,
          objdes(100).
    * For the BOR attachment
    CONSTANTS:
      c_object_describe LIKE swotobjid-describe VALUE '*<OBJECT>*'.
    DATA:
      l_object      TYPE swotobjid,
      l_objheader   LIKE soxobj.
    PARAMETERS:
      p_objtyp TYPE swo_objtyp OBLIGATORY,
      p_objkey TYPE swo_typeid OBLIGATORY.
    * Create Message Body
    *   Main Text
    objtxt = 'Test Document.'.
    APPEND objtxt.
    objtxt = 'You will find a BOR object attachment in message.'.
    APPEND objtxt.
    objtxt = 'Have a nice day.'.
    APPEND objtxt.
    *   Title and Description
    DESCRIBE TABLE objtxt LINES tab_lines.
    READ     TABLE objtxt INDEX tab_lines.
    docdata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objtxt ).
    docdata-obj_name  = 'BOR Object'.
    Concatenate p_objtyp '-' p_objkey into objdes.
    Concatenate 'BOR Object' objdes 'as Attachment'
           into docdata-obj_descr separated by space.
    condense docdata-obj_descr.
    *   Write Packing List (Main)
    CLEAR objpack-transf_bin.
    objpack-head_start = 0.
    objpack-head_num   = 0.
    objpack-body_start = 1.
    objpack-body_num   = tab_lines.
    objpack-doc_type   = 'RAW'.
    APPEND objpack.
    * Create OBJ attachment
    l_object-describe = c_object_describe.
    l_object-objtype  = p_objtyp.
    l_object-objkey   = p_objkey.
    CALL FUNCTION 'OWN_LOGICAL_SYSTEM_GET'
      IMPORTING
        own_logical_system             = l_object-logsys
      EXCEPTIONS
        own_logical_system_not_defined = 1
        OTHERS                         = 2.
    IF sy-subrc <> 0.
      MESSAGE e398(00) WITH 'No Log Sys Found'.
    ENDIF.
    MOVE-CORRESPONDING l_object TO l_objheader.
    APPEND l_objheader TO objhead.
    *   Write Packing List (Attachment)
    CLEAR objpack.
    objpack-head_start = 1.
    objpack-head_num   = 1.
    objpack-body_start = 0.
    objpack-body_num   = 0.
    objpack-doc_type   = 'OBJ'.
    objpack-obj_name   = p_objtyp.
    objpack-obj_descr  = Objdes.
    APPEND objpack.
    * Create receiver list
    reclist-receiver = sy-uname.
    reclist-rec_type = 'B'.
    APPEND reclist.
    * Send Message
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        document_data              = docdata
        put_in_outbox              = 'X'
        commit_work                = 'X'   
      TABLES
        packing_list               = objpack
        object_header              = objhead
        contents_bin               = objbin
        contents_txt               = objtxt
        receivers                  = reclist
      EXCEPTIONS
        too_many_receivers         = 1
        document_not_sent          = 2
        document_type_not_exist    = 3
        operation_no_authorization = 4
        parameter_error            = 5
        x_error                    = 6
        enqueue_error              = 7
        OTHERS                     = 8.
    IF sy-subrc <> 0.
      MESSAGE ID 'SO' TYPE 'S' NUMBER '023'
              WITH docdata-obj_name.
    ENDIF.
    WRITE: / 'End of Program'.

  • Configuring Outgoing Email in SAP Basis Services

    Hi gurus
    Can any body tell me the step by step procedure for how to configure outgoing Email in SAP basis services
    Thanks and regards
    S.Satyanarayana Raju

    Hi Satya,
    U can configure out going mails from your SAP system by using SMTP.
    have a look on the below link.. u can get complete picture of the mail configuration.
    http://help.sap.com/saphelp_nw04s/helpdata/EN/af/73563c1e734f0fe10000000a114084/content.htm
    they have explained every thing clearly there and also have a look on the below note.
    SAP Note 1205132 - Configure SMTP Destination to use multiple email servers
    Cheers and have fun.
    -Srini

  • .PUB file in SAP mail forms

    Hi,
    currently newsletter is created in Microsoft Publisher (works great with Outlook and has internal hyperlinks that continue to work properly, even when forwarded from one recipient to the next).
    Is it possible in the SAP Mail Form functionality to use a Publisher file (.pub) to push this through?

    Hi,
    currently newsletter is created in Microsoft Publisher (works great with Outlook and has internal hyperlinks that continue to work properly, even when forwarded from one recipient to the next).
    Is it possible in the SAP Mail Form functionality to use a Publisher file (.pub) to push this through?

  • Problem in receiving the internal domain mail through windowsmail, Outlook, Outlook Express

    Hi,
    Am not able to receive the internal domain mails in Windows mail,Outlook Express, Outlook. I can able to send and receive the mail for external domains. For Eg. My domain name is example.com & my email id is [email protected], i am sending a email to
    one of my manager email id [email protected], the mail successfully sent there is no error while sending, in the [email protected] the mail is not receiving. If i send any mail to external domain eg. test.com ( [email protected] )  the mail sent
    successfully and the mail also received from their end through the Outlook express, outlook or windows mail. I check with the mail service provider that was hosted by the web hosting vendor, they said there is a problem with microsoft. May I know whats the
    problem and how can i resolve this issue...
    Regards,
    Rajesh P

    This is what is coming in the mail:
    Job Name
    Released By
    =
    ZBCR_BACKGROUNDJOBMONITOR
    BSHASTRY
    ZBCR_BACKGROUNDJOBMONITOR
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY
    ZCANCEL_JOB   =20=
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY
    =20=
    ZCANCEL_JOB
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY
    The correct format which i am expecting is:
    Job Name
    Released By
    ZBCR_BACKGROUNDJOBMONITOR
    BSHASTRY
    ZBCR_BACKGROUNDJOBMONITOR
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY
    ZCANCEL_JOB
    BSHASTRY

  • How to configure alert to send a mail

    Hi,
      I want to trigger an email when ever a particulare alert rule is ok. I have to send the internet mail. Can anybody help me in this regard. Thanks in advance.
    Thanks,
    Mallikarjun.M

    Hi,
    If you have already configured the alert rules then you
    just need to configure SAP connect and maintain the e-mail address for all the users attached to your alert category. You can go to transaction SU01 and maintain e-mail address for the each user attached to the alert category and the e-mails will automatically be sent if SAP connect is configured.
    Refere the link below for SAP connect configuration..
    http://help.sap.com/saphelp_nw04/helpdata/en/2b/d925bf4b8a11d1894c0000e8323c4f/frameset.htm
    Regards
    Anand

  • Release strategy E-mail Aleart

    HI All
    I need to set the Release Strategy E- mail alert to Temporary assign Release Code.....
    Case:
    Chairman  release Code    01
    MD           release Code    02
    When Chairman is on leave, we are assign the chairman 's user roll to the MD for particulate time period.
    at that time period i need to send release strategy E mail alert to the MD......
    Is this scenario possible to do in SAP....
    Rgds
    PP

    Hi
    If I get what you are saying correctly this is very possible but you need to talk to your workflow consultant on how to set this up. Generally the workflow consultant can set up time to forward the release to the MD if no authorization is done after a certain period by the Chairman. So for example when he is on leave he can set up so that it forwards immediately.
    Regards
    T.C

  • Configuration of EAN - International Article Numbers

    Hi,
    I have the requeriment to create the configuration of EAN - International Article Numbers (EANs).
    The assumption is:
    EAN = 7891798XXXXXY
    1 - 789 - Standard SAP - Country Brazil
    2 - 1789 -Company Cody
    3 - XXXXX - Sequencial number
    4 - Y - International Article Numbers (EANs)
    To create this confinguration I access the SPRO - Logistics - General - Material Master Settings for Key Fields - International Article Numbers (EANs)
    My problem is, how I can associate this logical to the creation of my materials? Whe I'm creating an material the EAN that appears is 2850052000000
    Thanks in advance,
    Guiza

    If you enter ABCD, the system will interpret your entry as                          
    ABCD______________. However, if you want the system to interpret your               
    entry as right-justified, you must enter 00000000000000ABCD.                                                                               
    Note                                                                               
    After defining the individual number range intervals, you must assign an            
    EAN category to each interval in the IMG activity Define attributes of              
    EANs.                                                                               
    Each time a number is assigned, the system automatically updates the                
    number level. You can use this IMG activity to correct the number level             
    manually.                                                                               
    If you want to assign a number range interval to an EAN whose last digit            
    is a check digit (for example, to conform with CCG standards for all EAN            
    categories), you do NOT have to enter the last digit.                                                                               
    Example                                                                               
    You want to create an interval for 13-figure instore EANs which start               
    with 200. You enter only the first 12 figures, leaving the 13th figure              
    blank:                                                                               
    From number             To number                                                                               
    200000000000_           200999999999_                                                                               
    In your case
    enter the tamplate in config as 7891798_____Y. try by adding this

  • Configure SSO Connection from SAP Enterprise Portal to BOE Server

    Hi Guys,
    We recently installed a BOE Server and want to connect it to our SAP Enterprise Portal. What we need is just to display the Crystal Reports via Enterprise Portal. We have set up the following:
    SAP EP with AD Authentication
    SAP EP configured with SNC to SAP BI7 system
    SAP BOE XI 3.1 - SAP Integration Kit
    BOE Server configured with SAP Authentication via SAP BI7 System
    We've also set up BOE IK iviews and URL iviews pointing to existing reports in BOE. However, when we access it from EP, it prompts for a username and login to BOE. Is there a way to configure these so that there is no prompt for login to BOE server and SSO is used? Is it also possible to have a service account (e.g. domain/crystal) that will run the reports in BOE everytime a user accesses a report from SAP EP?
    Let me know if this is at all possible

    Hi,
    You should configure InfoView for SSO first, which required infoview.xml file modification, using windows AD default authentication. If you want to utilize the OpenDocument URL for iView then you also need to configure OpenDocument.xml file for SSO also. The SAP portal must have trust relation with the SAP BW server so the Windows AD token can be authenticate with SAP BW server.
    If you want crystal user to run all the report then you will lose data security. It can be done by hard coding user name and password in the report properties and database logon but the SSO capability can be accomplished only by windows AD, SAP or LDAP.
    For more details check BOXI Admin guide and SAP Integration Guide.
    Thanks,
    Muhammad

  • How to find out workflow in various releases of SAP

    Hi Experts,
    I would like to know as to how we can find out in which release of SAP was a given workflow introduced.
    For eg. if we take WS04200009(WF for leave request). I want to know if this was incorporated in ECC 6.0 or ECC 5.0 or older versions.
    Also if we take WS04200009, there is a  list of related WF's to it.....i.e. WS12400005 and WS12400007(These are for leave request cancellation).
    I would like to know similarly as to how to find out for a specific workflow, the list of related WF to it.
    I would also like to know as to how we can find out what is the latest WF that SAP has incorporated in the given release.
    Thanks in advance for all the help.

    Hello,
    What do you mean by workflows "related" to another workflow? if you mean calls and called-by you can get it out of the underlying tables, is that what you want? Same for the latest version, but only in the current system, I wouldn't know how to do it for different SAP versions.
    For a particular workflow you can see which other workflow(s) (and tasks) it calls in tx SWDM.
    regards
    Rick Bakker
    hanabi technology

  • Dynamic configuration of Adpater in SAP PI

    Hi,
    I have a requirement where in I have to dynamically configure connection adpater in SAP PI 7.1 EHP 1,  the configuration data will be pulled form database on the bases of the message content.
    Thanks in advance.
    Gautam

    Not sure if you are lookingg for dynamic configuration as mention in the below blog..
    <a href="/people/william.li/blog/2006/04/18/dynamic-configuration-of-some-communication-channel-parameters-using-message-mapping Configuration of Some Communication Channel Parameters using Message Mapping</a>
    <a href="/people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14: The same filename from a sender to a receiver file adapter - SP14</a>
    <a href="/people/daniel.graversen/blog/2006/10/05/dynamic-configuration-in-adapter-modules Configuration In Adapter Modules</a> <a href="/people/michal.krawczyk2/blog/2006/10/09/xi-dynamic-configuration-in-adapter-modules--one-step-further Configuration In Adapter Modules</a>
    ~SaNv...

Maybe you are looking for