SRM 7.01 Central Contract: Email Notification when contract is distributed

Dear all,
I lwould like to know if it exists a standard functionality for distribution notification and how it is customizable.
The scenario:
I create my central contract in SRM and i would like to be able to send email alert to the back end user (Local Contract Manager for example) when the contract has been distributed correctly. Does the user need  to be is the SRM Organisational Structure?
Can i use the event schema like expiring contract notifications?
Thank you for your help.
Best Regards,
Jennifer

The first interface that try to get out from SRM was " PurchasingContractERPRequest_Out_V1", thus based on this interface we made the configuration on PI. So, after pressing button " create contract" on srm if we execute tx SXI_MONITOR in SRM we found the interface " PurchasingContractERPRequest_Out_V1" and in the backend system ( ECC) at tv SXI_MONITOR we found interface PurchasingContractERPRequest_In_V1 for this contract with black and white flag ( processed successfully) but no contract created in ECC not even SRM.
Anyway we have checked that inbound proxy  is executed but we dont see any contract created
Is this the right Interface? We are missing something?
Best regads and thanks again for your help!

Similar Messages

  • Why i dont get email notifications when someone uses my apple account to know my location through Find my Iphone?

    Why i dont get email notifications when someone uses my apple account to know my location through Find my Iphone?

    Try adding [email protected] as a VIP contact in your icloud mail app using the appleid used for icloud if using multiple accounts (i.e different itunes and icloud account).
    But seriously that happens really !? not getting emails for using icloud services with a valid appleid.

  • Sending an email notification when an IDOC get failed

    Hi Experts,
    Can anybody tell how i can send an email notification when my Idoc fails.
    Regards,
    Ratheesh

    report zalv10.
    type-pools: slis.
    data: g_repid like sy-repid,
    gs_print type slis_print_alv,
    gt_list_top_of_page type slis_t_listheader,
    gt_events type slis_t_event,
    gt_sort type slis_t_sortinfo_alv,
    gs_layout type slis_layout_alv,
    gt_fieldcat type slis_t_fieldcat_alv,
    fieldcat_ln like line of gt_fieldcat,
    col_pos type i.
    data: begin of itab,
    field1(5) type c,
    field2(5) type c,
    field3(5) type p decimals 2,
    end of itab.
    data: begin of itab1 occurs 0.
    include structure itab.
    data: end of itab1.
    data: begin of itab_fieldcat occurs 0.
    include structure itab.
    data: end of itab_fieldcat.
    Print Parameters
    parameters:
    p_print as checkbox default ' ', "PRINT IMMEDIATE
    p_nosinf as checkbox default 'X', "NO SELECTION INFO
    p_nocove as checkbox default ' ', "NO COVER PAGE
    p_nonewp as checkbox default ' ', "NO NEW PAGE
    p_nolinf as checkbox default 'X', "NO PRINT LIST INFO
    p_reserv type i. "NO OF FOOTER LINE
    initialization.
    g_repid = sy-repid.
    perform print_build using gs_print. "Print PARAMETERS
    start-of-selection.
    TEST DATA
    move 'TEST1' to itab1-field1.
    move 'TEST1' to itab1-field2.
    move '10.00' to itab1-field3.
    append itab1.
    move 'TEST2' to itab1-field1.
    move 'TEST2' to itab1-field2.
    move '20.00' to itab1-field3.
    append itab1.
    do 50 times.
    append itab1.
    enddo.
    end-of-selection.
    perform build.
    perform eventtab_build changing gt_events.
    perform comment_build changing gt_list_top_of_page.
    perform call_alv.
    form build.
    DATA FIELD CATALOG
    Explain Field Description to ALV
    data: fieldcat_in type slis_fieldcat_alv.
    clear fieldcat_in.
    fieldcat_ln-fieldname = 'FIELD1'.
    fieldcat_ln-tabname = 'ITAB1'.
    *FIELDCAT_LN-NO_OUT = 'X'. "FIELD NOT DISPLAY, CHOOSE FROM LAYOUT
    fieldcat_ln-key = ' '. "SUBTOTAL KEY
    fieldcat_ln-no_out = ' '.
    fieldcat_ln-seltext_l = 'HEAD1'.
    append fieldcat_ln to gt_fieldcat.
    clear fieldcat_in.
    fieldcat_ln-fieldname = 'FIELD2'.
    fieldcat_ln-tabname = 'ITAB1'.
    fieldcat_ln-no_out = 'X'.
    fieldcat_ln-seltext_l = 'HEAD2'.
    append fieldcat_ln to gt_fieldcat.
    clear fieldcat_in.
    fieldcat_ln-fieldname = 'FIELD3'.
    fieldcat_ln-tabname = 'ITAB1'.
    fieldcat_ln-ref_fieldname = 'MENGE'. "<- REF FIELD IN THE DICTIONNARY
    fieldcat_ln-ref_tabname = 'MSEG'. "<- REF TABLE IN THE DICTIONNARY
    fieldcat_ln-no_out = ' '.
    fieldcat_ln-do_sum = 'X'. "SUM UPON DISPLAY
    append fieldcat_ln to gt_fieldcat.
    DATA SORTING AND SUBTOTAL
    data: gs_sort type slis_sortinfo_alv.
    clear gs_sort.
    gs_sort-fieldname = 'FIELD1'.
    gs_sort-spos = 1.
    gs_sort-up = 'X'.
    gs_sort-subtot = 'X'. ***CRUCIAL STATEMENT****
    append gs_sort to gt_sort.
    clear gs_sort.
    gs_sort-fieldname = 'FIELD2'.
    gs_sort-spos = 2.
    gs_sort-up = 'X'.
    *GS_SORT-SUBTOT = 'X'. **THIS SHOULD NOT BE UNCOMENTED*
    append gs_sort to gt_sort.
    endform.
    form call_alv.
    ABAP List Viewer
    call function 'REUSE_ALV_LIST_DISPLAY'
    exporting
    I_INTERFACE_CHECK = ' '
    I_BYPASSING_BUFFER =
    I_BUFFER_ACTIVE = ' '
    i_callback_program = g_repid
    I_CALLBACK_PF_STATUS_SET = ' '
    I_CALLBACK_USER_COMMAND = ' '
    i_structure_name = 'ITAB1'
    is_layout = gs_layout
    it_fieldcat = gt_fieldcat[]
    IT_EXCLUDING =
    IT_SPECIAL_GROUPS =
    it_sort = gt_sort[]
    IT_FILTER =
    IS_SEL_HIDE =
    I_DEFAULT = 'X'
    I_SAVE = ' '
    IS_VARIANT =
    it_events = gt_events[]
    IT_EVENT_EXIT =
    is_print = gs_print
    IS_REPREP_ID =
    I_SCREEN_START_COLUMN = 0
    I_SCREEN_START_LINE = 0
    I_SCREEN_END_COLUMN = 0
    I_SCREEN_END_LINE = 0
    IMPORTING
    E_EXIT_CAUSED_BY_CALLER =
    ES_EXIT_CAUSED_BY_USER =
    tables
    t_outtab = itab1
    exceptions
    program_error = 1
    others = 2.
    endform.
    HEADER FORM
    form eventtab_build changing lt_events type slis_t_event.
    constants:
    gc_formname_top_of_page type slis_formname value 'TOP_OF_PAGE'.
    *GC_FORMNAME_END_OF_PAGE TYPE SLIS_FORMNAME VALUE 'END_OF_PAGE'.
    data: ls_event type slis_alv_event.
    call function 'REUSE_ALV_EVENTS_GET'
    exporting
    i_list_type = 0
    importing
    et_events = lt_events.
    read table lt_events with key name = slis_ev_top_of_page
    into ls_event.
    if sy-subrc = 0.
    move gc_formname_top_of_page to ls_event-form.
    append ls_event to lt_events.
    endif.
    define END_OF_PAGE event
    READ TABLE LT_EVENTS WITH KEY NAME = SLIS_EV_END_OF_PAGE
    INTO LS_EVENT.
    IF SY-SUBRC = 0.
    MOVE GC_FORMNAME_END_OF_PAGE TO LS_EVENT-FORM.
    APPEND LS_EVENT TO LT_EVENTS.
    ENDIF.
    endform.
    form comment_build changing gt_top_of_page type slis_t_listheader.
    data: gs_line type slis_listheader.
    clear gs_line.
    gs_line-typ = 'H'.
    gs_line-info = 'HEADER 1'.
    append gs_line to gt_top_of_page.
    clear gs_line.
    gs_line-typ = 'S'.
    gs_line-key = 'STATUS 1'.
    gs_line-info = 'INFO 1'.
    append gs_line to gt_top_of_page.
    gs_line-key = 'STATUS 2'.
    gs_line-info = 'INFO 2'.
    append gs_line to gt_top_of_page.
    CLEAR GS_LINE.
    GS_LINE-TYP = 'A'.
    GS_LINE-INFO = 'ACTION'.
    APPEND GS_LINE TO GT_TOP_OF_PAGE.
    endform.
    form top_of_page.
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
    it_list_commentary = gt_list_top_of_page.
    write: sy-datum, 'Page No', sy-pagno left-justified.
    endform.
    form end_of_page.
    write at (sy-linsz) sy-pagno centered.
    endform.
    PRINT SETTINGS
    form print_build using ls_print type slis_print_alv.
    ls_print-print = p_print. "PRINT IMMEDIATE
    ls_print-no_print_selinfos = p_nosinf. "NO SELECTION INFO
    ls_print-no_coverpage = p_nocove. "NO COVER PAGE
    ls_print-no_new_page = p_nonewp.
    ls_print-no_print_listinfos = p_nolinf. "NO PRINT LIST INFO
    ls_print-reserve_lines = p_reserv.
    endform.deepakb
    Posts: 3
    Joined: Mon Nov 17, 2003 8:18 am
    Location: Mumbai

  • Email notifications when an eQ is sent back to original sender not firing

    this is directly from a user "It’s not a big deal, but I use to get an email notification when I had a new eQ Action Item ." Was this feature depricated in 6.1? or do we need to put an SR in?
    thanks,
    David

    Nothing blocked Prodika.EmailDomainFilters           =
    is blank in EnvironmentVaribles.config
    --Trey                                                                                                                                                                                                                               

  • What is the cost to have email notification feature?  I would like email notification when someone response to my form with attachments;so I can download them asap.

    What is the cost to have email notification feature?  I would like email notification when someone response to my form with attachments;so I can download them asap.

    Email notifications and email receipts are available with any of our payed plans.
    Andrew

  • Send different email notifications when a request is rejected/completed

    Hi Friends,
    I have developed a SOA composite in OIM 11g. And I am getting the same email notification when a request is fully completed or when it is rejected by an approver. How to send diffrerent email notification when a request is completed and when it is rejected by an approver.

    There are multiple ways in which you can do it.
    1. Modify your SOA composite and change the notification properties in the .task. Here change the status of the event and configure different notifications for different events.
    2. Use the Request Status change plugin in OIM to send the notification and remove all notification from SOA composite.
    3. Use explicit notification service in the SOA composite and attach the notification service component at appropriate places in the SOA workflow. Additionally remove the notification configuration from the .task
    -Bikash

  • Send email notification when my question is answered by friends

    Send email notification when my question is answered by friends

    babowa wrote:
    This is not FaceBook.
    Thank goodness.....
    Could be worse. It could be Twitter

  • How to trigger email notification when users fail to reset your password in fim 2010 r2.

    Hi,
    how to trigger email notification when users fail to reset  your password in fim 2010 r2
    Regards
    Anil Kumar

    Hi Sylvain,
    I did all thing as you told me.First i created Criteria based Set after this we created a Workflow type Action and Actvities Type Notifcation Email template and finally i called this Workflow in MPR as Set Transition and call Set that i was created below.and
    check Advance View of Set this gives
    <Filter xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Dialect="http://schemas.microsoft.com/2006/11/XPathFilterDialect"
    xmlns="/Request[(Creator">http://schemas.xmlsoap.org/ws/2004/09/enumeration">/Request[(Creator = 'b0b36673-d43b-4cfa-a7a2-aff14fd90522') and (RequestStatus = 'Denied or PostProcessingError')]</Filter>
    But this is not working for me so please tell me where i am wrong.
    Regards
    Anil Kumar

  • How to trigger email notification when users fail to give correct answers to reset your password in fim 2010 r2

    Hi,
    How to trigger email notification when users fail to give correct answers to reset your password in fim 2010 r2
    Senario:I want put wrong answering to the Questions that i was during registration if i give wrong answers to the questions then a Email Notification should be trigger to Users.
    Regards
    Anil Kumar

    Hi Sylvain,
    I did all thing as you told me.First i created Criteria based Set after this we created a Workflow type Action and Actvities Type Notifcation Email template and finally i called this Workflow in MPR as Set Transition and call Set that i was created below.and
    check Advance View of Set this gives
    <Filter xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Dialect="http://schemas.microsoft.com/2006/11/XPathFilterDialect"
    xmlns="/Request[(Creator">http://schemas.xmlsoap.org/ws/2004/09/enumeration">/Request[(Creator = 'b0b36673-d43b-4cfa-a7a2-aff14fd90522') and (RequestStatus = 'Denied or PostProcessingError')]</Filter>
    But this is not working for me so please tell me where i am wrong.
    Regards
    Anil Kumar

  • Option to configure email notifications when designated numbers are enabled to forward all

    Hello,
    I have a general question about call forwarding.  We have a lot of sites around the country and would like to setup automatic notifications if a site forwards their main line to voicemail.  Does anyone know of an option in CUCM to configure it to send automatic email notifications when certain designated numbers enable/disable forward all to voicemail?  Or does anyone know of any alter options?
    Currently using CUCM 8.6.2
    Will be upgrading to CUCM 10.5 in the coming months.
    Thanks

    Hi,
    CUCM natively does not have such a feature. Call forward related specific events are logged in sdl traces which you can filter using some custom software to get the report generated as per desired frequency.
    HTH
    Manish

  • Email Notification When Specific In/Outbound Queue Is Blocked

    We are running an integrated environment of ECC and SRM with qRFCs to transfer data, such as a Purchase Requisition, from ECC to SRM system (no XI / PI in the landscape). Sometimes the entries in the queue would be stuck and block the queue from being further processed. We would like to have email notification sent out to responsible persons when that happens. In particular, we would like email notification to be sent out when BBP_EXTREQ_TRANS entry is blocking the queue.
    I have read the following blog and think it is a promising general approach.
    /people/aravindh.prasanna/blog/2006/02/20/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-3
    I have however two questions regarding the approach:
    1) The blog has the presumption that XI is involved. XI/PI is not part of our landscape.
    2) Can we customize the alerting mechanism further by specifying the queue name for alert to be sent out?
    Thanks.

    Hi Ashish,
    Hope you are familiar with WLST please grab ideas from the following beautiful site, which delivers you a lot.
    1.Sending Email Alert for WebLogic Servers Current State &amp;laquo; Middleware Magic
    2.http://middlewaremagic.com/weblogic/?p=5177
    3.http://middlewaremagic.com/weblogic/?p=5582
    4. http://middlewaremagic.com/weblogic/?p=7042
    First of all why do you allow your servers getting down? If it is often then you need to raise an SR with Oracle. If not tune the parameters according to your environment.
    Thanks,
    Karthik

  • I don't get email notifications when using find my iphone from another device.

    When my husband uses the app "find my iphone" to locate my where abouts, I no longer get email notifications.  He uses my user name and password.  I believe he dismantled that feature somehow.  Is that possible? 

    I think it time to change your password... or husband

  • Email notification when Document status changes in Solution Manager

    Hi,
    Is there a way to send email notification to certain people if the document status changes in Solution Manager?
    For example: A notification email should be send to business user when development is complete.
    When development is complete, document is set with status 'Build complete'. As soon as this status is set, we want to notify business user to test the object. Similarly on other document statuses as well.
    Thanks in advance.

    Hi Vikky
    Check out doco 'How to: Automatic email notification' on service.sap.com.
    SAP Support Infrastructure > SAP Solution Manager > Information for VARs ASPs and AHPs > Setup Documents (SP15+)
    Thanks
    Daniel

  • Why aren't administrators receiving email notifications when a draft is sent to them for review?

    Greetings all - thanks for taking the time to look at this and (hopefully) answer.
    First off, I'm using Adobe Contribute CS3, Version 4.
    We have a couple people that are able to edit pages that need to be sent for review.  When they send to an administrator for review, though, there is no email notification saying that there's a page awaiting review.
    I've searched around Contribute, and can't find anywhere to turn on email notifications.  Can anyone tell me where I can turn on email notifications???
    Thanks!

    I am having the same problem. Here is a website that might help you with your problem:
    http://help.adobe.com/en_US/Contribute/5.0_Using/WS5b3ccc516d4fbf351e63e3d1180fba1e59-7fec .html
    Christine Gharibian
    Marketing  Manager
    SearchMar,  Inc.
    D: (415)  362.0330 | T: (866) 885.6263 | F: (415) 362.0331
    870 Market  Street | Suite 542 | San Francisco | CA 94102
    SearchMar.com | Blog | LinkedIn |  Twitter

  • No email notification when a thread is updated

    I noticed that since weeks i am no longer receiving email notifications of thread updates.
    I checked the settings in my profile and apparently they should be delivered immediately.
    I also checked the spam folder without success, so it looks like these email notifications are nowhere.
    For instance, i created two threads in the last days and in no case i received an email when a reply was posted.
    Is anyone experiencing the same problem lately?
    Flavio
    http://oraclequirks.blogspot.com

    I am amazed by the number of replies to this thread, so it seems i am the only one on the planet, for some reason, who does not get notified even if i chose to get notified.
    Great.
    http://oraclequirks.blogspot.com

Maybe you are looking for

  • Unable to load font"^0" "Helvetica Neue" After Effects CC

    After updating After Effects CC, the warning appears: Unable to load font"^0" "Helvetica Neue" HelveticaNeue.dfont is available in my HD/System/Library/Fonts I work with: Before the CC update everything worked fine. Please help me.

  • How to dynamically display .flv files in website

    I'm using a JSP for my interface.?? In the webpage, I want to pass a java variable, which holds the url to the video that was retrieved from the database, to the flash player script to dynamically determine which video to play.?? For example, this co

  • Here's why iPhone sync is failing for so many

    One of the first things iTunes does during sync is try to connect to port 443 at iphonesubmissions.apple.com (that's the port for HTTP over SSL). Unfortunately, no server is responding on that port. So, it's nothing wrong with your phone, or your Mac

  • AS3_Function versus AS3_FunctionAsync

    These two API functions are documented as creating a "synchronous" and an "asynchronous" function callback object. What is the difference between these, and where can I read more about it? I asked our local ActionScript gurus, and they said it was no

  • Test Cluster...

    HI dev2dev           I have 2 bea box ,so i have clustered           First Machine           One Admin Server           One Managed Server           Second Machine           One Managed Server           Weblogic Console says both the machine's are in