Event not getting triggered for a few users in production

Hi Experts!!
We have a workflow that gets triggered on the event REQUESTCREATED of BUS2089. In production, we see that for a few users the event is getting triggered and even the workflow is. But for a few users, the workflow is not getting triggered. However, we didn't check SWEQADM yet and are waiting to get auth to check the same. But before that, I need your valuable suggestions on this.
When I check SWEL, I cannot see any entries at all. Not even for the successfully processed ones.
Auth objects cannot be a reason, as all the users have same auth. Please suggest me on what else can be the reasons.
Your help is highly appreciable.

Hello Srinivas !
              Check in SWEQADM to know whether the event is on queue.If so, redeliver it.
              If there is no event on queue, check the RFC queue( transaction SWU2 ) and ST22 for possible ABAP dumps.
              Call work item list report (transaction SWI1) and check event linkages (transaction SWETYPV )of the users for whom the event is not triggered.Are you using BAdI or user- exit to trigger the workflow ? If so, check whether those are in active state.
             Refresh the workflow buffers(transaction SWU_OBUF).Check either of the workflow versions are in active state.
Regards,
S.Suresh

Similar Messages

  • Event not getting triggered for PR generated through MRP run

    Hi All,
    Could anyone let me know how to get a workflow triggered for the ReleaseStepCreated event (obj - bus2105) when the PR is created through MRP run. The MD02 control paramters have the value '1'.
    Interstingly the workflow triggers when the value is set to '2' or '3'.
    Thanks,
    Ameekar

    Thanks Aman,
    I checked field restrictions but there are none there. Actually i checked them for other object 'AOOMARA' which is being thrown as an exception when i am creating the PR through MRP run.
    Exception says -> field not maintained.
    So i guess, i need to maintain the field for Change Document but i am not sure how. COuld you please aid me with that.
    Thanks A lot !!

  • Plugin events not getting triggered

    Hello,
    APEX version 4.1.0.00.32 and 4.2.3.00.08
    Browser: latest version of Chrome browser
    I'm trying to include plugin events for the Select2 APEX plugin but facing one rather annoying issue; the dynamic actions based on the plugin events are not getting triggered. These are the steps I have taken:
    1. Registered several events with the plugin (e.g. slctchange, slctopen, slcthighlight, etc.). These events are based on the official Select2 documentation.
    2. Modified the render function to include event handlers that trigger the appropriate Select2 event.
    $("' || l_item_jq || '").on("change", function(e) {
      apex.jQuery(this).trigger("slctchange", { val:e.val, added:e.added, removed:e.removed });
    $("' || l_item_jq || '").on("select2-opening", function(e) {
      apex.jQuery(this).trigger("slctopening");
    $("' || l_item_jq || '").on("select2-open", function(e) {
      apex.jQuery(this).trigger("slctopen");
    $("' || l_item_jq || '").on("select2-highlight", function(e) {
      apex.jQuery(this).trigger("slcthighlight", { val:e.val, choice:e.choice });
    $("' || l_item_jq || '").on("select2-selecting", function(e) {
      apex.jQuery(this).trigger("slctselecting", { val:e.val, choice:e.choice });
    $("' || l_item_jq || '").on("select2-clearing", function(e) {
      apex.jQuery(this).trigger("slctclearing");
    $("' || l_item_jq || '").on("select2-removed", function(e) {
      apex.jQuery(this).trigger("slctremoved", { val:e.val, choice:e.choice });
    $("' || l_item_jq || '").on("select2-focus", function(e) {
      apex.jQuery(this).trigger("slctfocus");
    $("' || l_item_jq || '").on("select2-blur", function(e) {
      apex.jQuery(this).trigger("slctblur");
    I can confirm that the slctchange event (the first event in the list) is working properly both in APEX 4.1 and 4.2. Please note that I had to use apex.jQuery instead of $ to get it to work in 4.1. Might be because I overloaded jQuery in 4.1. Anyway, all others events are not getting triggered for some reason. The event handlers are getting executed for the appropriate event; that's not the problem. I guess the source of the problem lies with the trigger function. It simply doesn't trigger any of my dynamic actions.
    To make things even more complicated, it is possible to trigger the events manually in console. So if I execute this statement:
    apex.jQuery("#P20_SINGLE_VALUE_NEW").trigger("slctopen");
    Then I get back the result from the dynamic action.
    I tried a lot of different ways to trigger the plugin event. For example:
    $("' || l_item_jq || '").on("select2-open", function(e) {
      apex.jQuery(this).trigger("slctopen");
      $(this).trigger("slctopen");
      apex.jQuery(this).trigger("slctopen.BE_CTB_SELECT2");
      $(this).trigger("slctopen.BE_CTB_SELECT2");
      apex.jQuery("' || l_item_jq || '").trigger("slctopen");
      $("' || l_item_jq || '").trigger("slctopen");
      apex.jQuery("' || l_item_jq || '").trigger("slctopen.BE_CTB_SELECT2");
      $("' || l_item_jq || '").trigger("slctopen.BE_CTB_SELECT2");
    Nothing gets triggered...
    Can anyone tell me what the problem is here? Thanks in advance.
    Best regards,
    Nick

    Hello,
    APEX version 4.1.0.00.32 and 4.2.3.00.08
    Browser: latest version of Chrome browser
    I'm trying to include plugin events for the Select2 APEX plugin but facing one rather annoying issue; the dynamic actions based on the plugin events are not getting triggered. These are the steps I have taken:
    1. Registered several events with the plugin (e.g. slctchange, slctopen, slcthighlight, etc.). These events are based on the official Select2 documentation.
    2. Modified the render function to include event handlers that trigger the appropriate Select2 event.
    $("' || l_item_jq || '").on("change", function(e) {
      apex.jQuery(this).trigger("slctchange", { val:e.val, added:e.added, removed:e.removed });
    $("' || l_item_jq || '").on("select2-opening", function(e) {
      apex.jQuery(this).trigger("slctopening");
    $("' || l_item_jq || '").on("select2-open", function(e) {
      apex.jQuery(this).trigger("slctopen");
    $("' || l_item_jq || '").on("select2-highlight", function(e) {
      apex.jQuery(this).trigger("slcthighlight", { val:e.val, choice:e.choice });
    $("' || l_item_jq || '").on("select2-selecting", function(e) {
      apex.jQuery(this).trigger("slctselecting", { val:e.val, choice:e.choice });
    $("' || l_item_jq || '").on("select2-clearing", function(e) {
      apex.jQuery(this).trigger("slctclearing");
    $("' || l_item_jq || '").on("select2-removed", function(e) {
      apex.jQuery(this).trigger("slctremoved", { val:e.val, choice:e.choice });
    $("' || l_item_jq || '").on("select2-focus", function(e) {
      apex.jQuery(this).trigger("slctfocus");
    $("' || l_item_jq || '").on("select2-blur", function(e) {
      apex.jQuery(this).trigger("slctblur");
    I can confirm that the slctchange event (the first event in the list) is working properly both in APEX 4.1 and 4.2. Please note that I had to use apex.jQuery instead of $ to get it to work in 4.1. Might be because I overloaded jQuery in 4.1. Anyway, all others events are not getting triggered for some reason. The event handlers are getting executed for the appropriate event; that's not the problem. I guess the source of the problem lies with the trigger function. It simply doesn't trigger any of my dynamic actions.
    To make things even more complicated, it is possible to trigger the events manually in console. So if I execute this statement:
    apex.jQuery("#P20_SINGLE_VALUE_NEW").trigger("slctopen");
    Then I get back the result from the dynamic action.
    I tried a lot of different ways to trigger the plugin event. For example:
    $("' || l_item_jq || '").on("select2-open", function(e) {
      apex.jQuery(this).trigger("slctopen");
      $(this).trigger("slctopen");
      apex.jQuery(this).trigger("slctopen.BE_CTB_SELECT2");
      $(this).trigger("slctopen.BE_CTB_SELECT2");
      apex.jQuery("' || l_item_jq || '").trigger("slctopen");
      $("' || l_item_jq || '").trigger("slctopen");
      apex.jQuery("' || l_item_jq || '").trigger("slctopen.BE_CTB_SELECT2");
      $("' || l_item_jq || '").trigger("slctopen.BE_CTB_SELECT2");
    Nothing gets triggered...
    Can anyone tell me what the problem is here? Thanks in advance.
    Best regards,
    Nick

  • Userexit not getting triggered for  0CFM_CLASS_MASTER_DATA_ATTR

    Hi Experts,
    I have made enhancements to  0CFM_CLASS_MASTER_DATA_ATTR & 0CFM_FI_TRA_ATTR in RSAP0001(EXIT_SAPLRSAP_001). I have set the flag to New Data entry logic(Switch for Datasource feed) to populate the Timedependent attributes in  0CFM_CLASS_MASTER_DATA_ATTR .
    I kept the break point in the Userexit and ran RSA3 for the above 2 datasources but the user exit is not getting triggered.
    Can you please help why the userexit is not getting triggered?
    Thanks,
    bwuswer14.

    Hi,
    Thanks for ur post.issue resolved.im keeping the breakpoint in 1st user exit.After keeping the breakpoint in EXIT_SAPLRSAP_002 it got triggered.Closing the thread.
    Thanks,
    bwuser14

  • Output type is not getting triggered for ship to party in shippment output

    Hi,
    we have maintained output determination procedure for shipments. It was working fine.
    We have just added new condition table to access sequence, and maintained the condition records also for condition type ZABC. I have checked in NACE, Application V7, I am able to find the condition type. checked in VV73, condition records displayed. But in VT02N/VT03N, we are unable to get print for  the output type.
    Why this is happening? we are able to see the procedure, condition type, access sequence, condition records in place ...why condition type ZABC is not getting triggered in the shipment output.
    Please advise and let me know if you need more details....thanks in advance.
    Thanks,
    SS

    Hi Noel,
    Thanks for your time and reply.
    We have output determination procedure for shipments, condition type ZABC, Access sequence ZABC, Condition tables 550,600,650,700 already maintained. output is working fine.we have a new requirement and created new condition table 700 with the fields" Ship to party and transportation planing point "(Condition table 700 ). we assigned the condition table 700 to access sequence ZABC. Condition type  ZABC already placed in Output determination procedure.
    We test the output, new condition record is not triggering in the output, even in output determination analysis also, we are unable to see the record 700 for the condition type ZABC. we are not sure what is the reason for the condition table that  is not picking up ? Why condition type ZABC with condition record 700 not visible in output determination analysis.
    I have checked condition records, output determination procedure. Please advise and let me know you need more details.
    Thanks,
    SS

  • Events not getting triggered

    in the code my event subtot_text is not getting triggered .... any solution plz
    REPORT  zver_alv_basic.
    TYPE-POOLS slis.
    DATA: BEGIN OF itab OCCURS 0,
              vbeln LIKE vbap-vbeln,
              posnr LIKE vbap-posnr,
              matnr LIKE vbap-matnr,
              netwr LIKE vbap-netwr,
           END OF itab.
    DATA: fcat TYPE slis_t_fieldcat_alv,
          wa_fcat  TYPE slis_fieldcat_alv,
          i_sort TYPE  slis_t_sortinfo_alv WITH HEADER LINE,
          i_event TYPE slis_t_event.
    SELECT vbeln
           posnr
           matnr
           netwr
      FROM vbap
      INTO TABLE itab
      UP TO 30 ROWS.
    I_SORT-FIELDNAME = 'POSNR'.
    I_SORT-TABNAME = 'ITAB'.
    I_SORT-UP = 'X'.
    I_SORT-SUBTOT = 'X'.
    APPEND I_SORT.
    Perform to populate ALV event
      PERFORM sub_get_event.
    To prepare field catalog
    PERFORM sub_field_catalog.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program = sy-cprog
        it_fieldcat        = fcat
        it_events         = i_event
        it_sort = i_sort[]
      TABLES
        t_outtab           = itab.
    *&      Form  SUB_FIELD_CATALOG
    FORM sub_field_catalog .
      PERFORM sub_fill_alv_field_catalog USING:
         '01' 'VBELN' 'ITAB' 'VBELN' 'VBAP' ,
         '02' 'POSNR' 'ITAB' 'POSNR' 'VBAP' ,
         '03' 'MATNR' 'ITAB' 'MATNR' 'VBAP' ,
         '04' 'NETWR' 'ITAB' 'NETWR' 'VBAP' .
    ENDFORM.                    " SUB_FIELD_CATALOG
    *&      Form  SUB_FILL_ALV_FIELD_CATALOG
    FORM sub_fill_alv_field_catalog  USING    p_rowpos
                                              p_fldnam p_tabnam   p_ref_fieldname p_ref_tabname  .
      wa_fcat-col_pos = p_rowpos.
      wa_fcat-fieldname = p_fldnam .
      wa_fcat-tabname = p_tabnam .
      wa_fcat-ref_fieldname = p_ref_fieldname .
      wa_fcat-ref_tabname = p_ref_tabname.
      IF P_FLDNAM = 'NETWR'.
        wa_fcat-do_sum  = 'X'.
      ENDIF.
      APPEND wa_fcat TO fcat.
      CLEAR wa_fcat.
    ENDFORM.                    " SUB_FILL_ALV_FIELD_CATALOG
    *&      Form  SUB_GET_EVENT
    FORM sub_get_event .
    DATA: wa_event TYPE slis_alv_event.
        CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 4
        IMPORTING
          et_events       = i_event.
      READ TABLE i_event INTO wa_event
                        WITH KEY name = 'SUBTOTAL_TEXT'.
    IF sy-subrc = 0.
        MOVE 'SUBTOT_TEXT ' TO wa_event-form.
        MODIFY i_event FROM wa_event INDEX sy-tabix.
      ENDIF.
    ENDFORM.                    " SUB_GET_EVENT
    *&      Form  subtotal_text
          Build subtotal text
          P_total  Total
          p_subtot_text Subtotal text info
    FORM subtot_text CHANGING
                   p_total TYPE any
                   p_subtot_text TYPE slis_subtot_text.
    Material level sub total
      IF p_subtot_text-criteria = 'VBELN'.
        p_subtot_text-display_text_for_subtotal
        = 'VENDOR level total'(009).
      ENDIF.
    Plant level sub total
      IF p_subtot_text-criteria = 'POSNR'.
        p_subtot_text-display_text_for_subtotal = 'POSNR level total'(010).
      ENDIF.
    ENDFORM.                    "subtotal_text

    *& Report  ZVER_ALV_BASIC
    REPORT  zver_alv_basic.
    TYPE-POOLS slis.
    DATA: BEGIN OF itab OCCURS 0,
              vbeln LIKE vbap-vbeln,
              posnr LIKE vbap-posnr,
              matnr LIKE vbap-matnr,
              netwr LIKE vbap-netwr,
           END OF itab.
    DATA: fcat TYPE slis_t_fieldcat_alv,
          wa_fcat  TYPE slis_fieldcat_alv,
          i_sort TYPE  slis_t_sortinfo_alv ,
          wa_sort TYPE slis_sortinfo_alv,
          i_event TYPE slis_t_event.
    START-OF-SELECTION.
    SELECT vbeln
           posnr
           matnr
           netwr
      FROM vbap
      INTO TABLE itab
      UP TO 30 ROWS.
    wa_sort-spos = '01' .
    wa_sort-fieldname = 'VBELN'.
    wa_sort-tabname = 'ITAB'.
    wa_sort-up = 'X'.
    wa_sort-subtot = 'X'.
    APPEND wa_sort TO i_sort .
    CLEAR wa_sort.
    Wa_sort-spos = '02' .
    wa_sort-fieldname = 'POSNR'.
    wa_sort-tabname = 'ITAB'.
    wa_sort-up = 'X'.
    wa_sort-subtot = 'X'.
    APPEND wa_sort TO i_sort .
    CLEAR wa_sort.
    Perform to populate ALV event
    PERFORM sub_get_event.
    To prepare field catalog
    PERFORM sub_field_catalog.
    END-OF-SELECTION.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program = sy-cprog
        it_fieldcat        = fcat
        it_events         = i_event
        it_sort = i_sort[]
      TABLES
        t_outtab           = itab.
    *&      Form  SUB_FIELD_CATALOG
    FORM sub_field_catalog .
      PERFORM sub_fill_alv_field_catalog USING:
         '01' 'VBELN' 'ITAB' 'VBELN' 'VBAP' ,
         '02' 'POSNR' 'ITAB' 'POSNR' 'VBAP' ,
         '03' 'MATNR' 'ITAB' 'MATNR' 'VBAP' ,
         '04' 'NETWR' 'ITAB' 'NETWR' 'VBAP' .
    ENDFORM.                    " SUB_FIELD_CATALOG
    *&      Form  SUB_FILL_ALV_FIELD_CATALOG
    FORM sub_fill_alv_field_catalog  USING    p_rowpos
                                              p_fldnam p_tabnam   p_ref_fieldname p_ref_tabname  .
      wa_fcat-col_pos = p_rowpos.
      wa_fcat-fieldname = p_fldnam .
      wa_fcat-tabname = p_tabnam .
      wa_fcat-ref_fieldname = p_ref_fieldname .
      wa_fcat-ref_tabname = p_ref_tabname.
      IF p_fldnam = 'NETWR'.
        wa_fcat-do_sum  = 'X'.
      ENDIF.
      APPEND wa_fcat TO fcat.
      CLEAR wa_fcat.
    ENDFORM.                    " SUB_FILL_ALV_FIELD_CATALOG
    *&      Form  SUB_GET_EVENT
    FORM sub_get_event .
    DATA: wa_event TYPE slis_alv_event.
        CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 4
        IMPORTING
          et_events       = i_event.
      READ TABLE i_event INTO wa_event
                        WITH KEY name = 'SUBTOTAL_TEXT'.
    IF sy-subrc = 0.
        MOVE 'SUBTOT_TEXT ' TO wa_event-form.
        MODIFY i_event FROM wa_event INDEX sy-tabix.
      ENDIF.
    ENDFORM.                    " SUB_GET_EVENT
    *&      Form  subtotal_text
          Build subtotal text
          P_total  Total
          p_subtot_text Subtotal text info
    FORM subtot_text CHANGING
                   p_total TYPE any
                   p_subtot_text TYPE slis_subtot_text.
    Material level sub total
      IF p_subtot_text-criteria = 'VBELN'.
        p_subtot_text-display_text_for_subtotal
        = 'VENDOR level total'(009).
      ENDIF.
    Plant level sub total
      IF p_subtot_text-criteria = 'POSNR'.
        p_subtot_text-display_text_for_subtotal = 'POSNR level total'(010).
      ENDIF.
      WRITE :/ 'cow'.
    ENDFORM.                    "subtotal_text }

  • Job not getting triggered for Multiple Scheduler Events

    hi,
    I would like a job to be triggered for multiple scheduler events, subscribing to a single event works fine. But, when I set multiple event condition, nothing works.
    My objective is to run a job, whenever job starts or restarts or exceeds max run duration.
    Note : Is it possible to trigger a job, when a job RESTARTS by subscribing to JOB_START ????????
    procedure sniffer_proc(p_message in sys.scheduler$_event_info)
    is
    --Code
    end sniffer_proc
    dbms_scheduler.create_program(program_name => 'PROG',
    program_action => 'sniffer_proc',
    program_type => 'stored_procedure',
    number_of_arguments => 1,
    enabled => false);
    -- Define the meta data on scheduler event to be passed.
    dbms_scheduler.define_metadata_argument('PROG',
    'event_message',1);
    dbms_scheduler.enable('PROG');
    dbms_scheduler.create_job
    ('JOB',
    program_name => 'PROG',
    * event_condition => 'tab.user_data.event_type = ''JOB_OVER_MAX_DUR''' ||*
    *' or tab.user_data.event_type = ''JOB_START''',*
    queue_spec => 'sys.scheduler$_event_queue,auagent',
    enabled => true);
    I tried this too...
    dbms_scheduler.create_job
    ('JOB',
    program_name => 'PROG',
    * event_condition => 'tab.user_data.event_type = ''JOB_OVER_MAX_DUR''' ||*
    *' and tab.user_data.event_type = ''JOB_START''',*
    queue_spec => 'sys.scheduler$_event_queue,auagent',
    enabled => true);
    Need help
    Thanks...
    Edited by: user602200 on Dec 28, 2009 3:00 AM
    Edited by: user602200 on Dec 28, 2009 3:03 AM

    Hi,
    Here is complete code which I tested on 10.2.0.4 which shows a second job that runs after a first job starts and also when it has exceeded its max run duration. It doesn't have the condition but just runs on every event raised, but the job only raises the 2 events.
    Hope this helps,
    Ravi.
    -- run a job when another starts and exceeds its max_run_duration
    set pagesize 200
    -- create a user just for this test
    drop user test_user cascade;
    grant connect, create job, create session, resource,
      create table to test_user identified by test_user ;
    connect test_user/test_user
    -- create a table for output
    create table job_output (log_date timestamp with time zone,
            output varchar2(4000));
    -- add an event queue subscriber for this user's messages
    exec dbms_scheduler.add_event_queue_subscriber('myagent')
    -- create the first job and have it raise an event whenever it completes
    -- (succeeds, fails or stops)
    begin
    dbms_scheduler.create_job
       ( 'first_job', job_action =>
         'insert into job_output values(systimestamp, ''first job runs'');'||
         'commit; dbms_lock.sleep(70);',
        job_type => 'plsql_block',
        enabled => false, repeat_interval=>'freq=secondly;interval=90' ) ;
    dbms_scheduler.set_attribute ( 'first_job' , 'max_runs' , 2);
    dbms_scheduler.set_attribute
        ( 'first_job' , 'raise_events' , dbms_scheduler.job_started);
    dbms_scheduler.set_attribute ( 'first_job' , 'max_run_duration' ,
        interval '60' second);
    end;
    -- create a simple second job that runs when the first starts and after
    -- it has exceeded its max_run_duration
    begin
      dbms_scheduler.create_job('second_job',
                                job_type=>'plsql_block',
                                job_action=>
        'insert into job_output values(systimestamp, ''second job runs'');',
                                event_condition =>
       'tab.user_data.object_name = ''FIRST_JOB''',
                                queue_spec =>'sys.scheduler$_event_queue,myagent',
                                enabled=>true);
    end;
    -- this allows multiple simultaneous runs of the second job on 11g and up
    begin
      $IF DBMS_DB_VERSION.VER_LE_10 $THEN
        null;
      $ELSE
        dbms_scheduler.set_attribute('second_job', 'parallel_instances',true);
      $END
    end;
    -- enable the first job so it starts running
    exec dbms_scheduler.enable('first_job')
    -- wait until the first job has run twice
    exec dbms_lock.sleep(180)
    select * from job_output;

  • 'Releasestepcreated' not getting triggered for PR generated through MRP run

    Hi,
    I have PR Release strategy workflow configured, working well when i try to create PR manually, triggers workflow.
    PR's created thorugh MRP run, triggers release strategy but not workflow.
    I checked the event trace 'releasestepcreated' event not triggered through MRP run.
    Please respond ASAP.
    Your inputs will be highly appreciated.

    Short Text 
    Workflow with multiple workitems 
    Long Text 
    Refering SAP notes that i came to know that workflow is not supported
    through MRP run (md03/md04).we are not using Planned orders.
    To trigger workflow for Purchase requisitions created by MRP run, we
    have developed a custom report to trigger workflow explicitly.
    1.MRP batch job runs every night. After MRP job,planned to schedule
    another job to trigger workflow for PR's created MRP run.
    2. Used FM 'SAP_WAPI_CREATE_EVENT' to trigger workflow.
    3. PR requires 5 levels of approvals based on release strategy
    configuration.
    4. The issue is PR 'XXX' created and waiting for approval in agent's
    inbox.When 2nd day MPR runs same PR 'XXX' effected, another
    workitem for the same PR in agent's inbox.
    We have multiple workitems for the same PR in agent's Inbox.
    If i execute one of the workitem,releases PR, multiple workitems are
    getting generated for 2nd level approval for the same PR.
    Please give your inputs to resolve this issue.

  • Alerts not getting triggered for invalid receiver receiver

    Hello,
    My scenario is IDoc to HTTP.I have defined alert rules for my scenario.
    I have condition mentioned in receiver determination.Depending on vendor number data is sent to corresponding receiver.
    But when i send IDoc is sent with invalid vendor number,it is failing in XI system with error as :No receiver could be determined but not alert is being thrown or triggered.
    Same situation is working in Dev and quality but not in production.
    I ahve checked the alert rules thorughly in all the 3 environments and they are all perfe

    does the error"RCVR_DETERMINATION.NO_RECEIVER_CASE_ASYNC" gets triggered only when reciever service is not
    mentioned in alert rule condition?
    This error gets triggered when no receiver matching with the mentioned Condition is found.....the Condition in Receiver Determination OR if no receiver service exists.
    I hope you have created a rule in Alert Rule section of RWB and have unchecked the Suppress Multiple Alerts options.
    When you get the above error in SXMB_MONI you should get an alert
    Regards,
    Abhishek.

  • Events not getting fired for templated controls.

    Hi,
    I have an asp.net custom server control, in which I have given template support. The template controls render fine. But, the events of template controls are not getting fired. For example, If I added an asp dropdownlist as a template in my custom control
    and select any item from dropdownlist and raised the postback, the selected item did not get updated in dropdownlist ( i.e selectedIndex, selectedText of the control remains the same as like initial rendering.), also I am not able to trigger the SelectedIndexChanged
    server side event of dropdownlist.
    I have used NamingContainer for rendering the template controls. The codes are as follows,
    <code>
    This is my source:
         private
    ITemplate fileTemplate =
    null;
     [TemplateContainer(typeof(ContentContainer)),
    PersistenceMode(PersistenceMode.InnerProperty),
    DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
    TemplateInstance(TemplateInstance.Single)]
    public ITemplate FileTemplate
    get
       return fileTemplate;
    set
    fileTemplate = value;
    public class
    ContentContainer :
    WebControl, INamingContainer
    internal ContentContainer()
    protected override
    void CreateChildControls()
    this.Controls.Clear();
    ContentContainer container =
    new ContentContainer();
    this.FileTemplate.InstantiateIn(container);
    this.Controls.Add(container);
    base.CreateChildControls();
          public
    override ControlCollection Controls
    get
    this.EnsureChildControls();
           return
    base.Controls;
    Whereas in my application, I have rendered the custom control with template as below,
    [ASPX]
    <mycustom control>
    <FileTemplate>
    <asp:DropDownList
    ID="ddc1"
    runat="server"
    AutoPostBack="true"
    OnSelectedIndexChanged="ddc1_SelectedIndexChanged"
    >
    <asp:ListItem
    Text="Item1"
    Value="one"></asp:ListItem>
    <asp:ListItem
    Text="Item2"
    Value="two"></asp:ListItem>
    <asp:ListItem
    Text="Item3"
    Value="three"></asp:ListItem>
    <asp:ListItem
    Text="Item4"
    Value="four"></asp:ListItem>
    </asp:DropDownList>
    </FileTemplate>
    </mycustom control>
    [Code Behind]
    This event is not getting raised.
    protected
    void ddc1_SelectedIndexChanged(object sender,
    EventArgs e)
     I can get the template control's details here using "FindControl("templateID")". But not able to get the updated details.
    protected void btn_Click1(object sender,
    EventArgs e)
    var template= this.CustomControl.Controls[0].FindControl("ddc1");
    </code>
    Where I am going wrong? Kindly help me on this.
    Thanks in advance.
    Regards,
    Meena

    This is a Windows Phone forum, not a web development forum. Please ask this question at the forums at
    http://asp.net.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Ship-To Address not getting picked for one particular user

    Hi SRM Gurus,
    I am working on SRM5.0 system with ECC6.0 as backend.
    For one particular SRM user, the Ship-To address number which has been maintained in his attributes through transaction PPOMA_BBP, as default delivery address, is not populated when he creates a SC.
    This default ship-to address is not seen while creating the cart even though the address can be found via the F4 search help in the same SC.
    Can anyone tell me why this is happening for one particular user?
    Please note that this problem is occuring even when the user is shopping for self and creating a new SC (no copying from template). So SAP note 1055203 is not valid in my case.
    I have checked the ADRC table, and this address number exists. Infact, when I assign this address number to some other user's Ship-To attribute, this default delivery address is picked in the SC.
    So, I understand that the problem is not with the address, but with the linking of this address number to this user. I even tried deleting and re-assigning the address number in the attribute to this user. But, it doesnot work still.
    Can anyone help me out?
    Thanks n Regards,
    Ancy

    Ship to address not being picked from attributes for any user it was being picked from Org address data , and I had reset the value
    now , when I am trying to create a SC and I have tried to add delivery address  bby 2 types .
    1. By adding through the portal
    2> i have tried to add the same throgh ppomabbp in user attributes "Delivery address"
    I have also made it default however when I raise the SC it again shows me as blank :
    I am not too sure how do I populate the value that I need . Please see below still the delivery address is blank !!

  • Alerts not getting Triggered for Integration Engine Error

    Hi,
    We are configuring Alert Framework in our project. Here when the scenario fails at communication channel we receive alerts but when it fails in message mapping we aren't getting any alerts.
    Below are the settings:
    Alert rule created with no restrictions (Sender: * Receiver: *)
    Where did error occur ? No restriction
    Suppress multiple alerts of this Rule : Not set
    It would be great if some would help us on this.
    Regards,
    Tejas

    If you have created separate alert categories then test you alert as described later in this post. Else create a new alert category for your IE level exceptions. Give a description, long text, add your sap id in the fixed recipient list. Make sure you have ur email id configured for ur sap id in SU01. Create a rule in RWB. Make sure that you click on the "Add rule" tab once done. Keep all the entries as default. Give a description, remove suppress multiple alerts ,for now, keep rule active checkbox as checked, where did error occur- choose IE both stars.
    Now we need to test if this alert category is working fine. Go to se38 and execute RSALERTTEST. There give the name of your alert category. Execute. Now check in the ALRTDISP, if you get an entry there. Let me know....

  • Bar graph click event not getting triggered

    i specified methods in bean for bar graph's clickListener and clickAction.
    graph data is getting rendered properly.
    graph is based on SQL based read only VO which uses bind variables as well which are set on a button click to generate report
    but on clicking on graph, control is not going to bean method which handles clickEvent
    i have wasted lots of time for this
    initially bean scope was backing, i tried with request and session as well nothing is getting control to bean
    jdev 11 1 1 5

    Hi,
    +"i have wasted lots of time for this ..."+
    And you wasted more time by not giving enough information about the graph configuration and the click listener signature. Note that we need a way to reproduce a behavior to give you some hints.
    Frank

  • ALERT not getting triggered for messages in error in adapter engine

    Hi All,
    I am doing the same scenario where I have created two Alert category Alert_cat1 and Alert_cat2, both are similar but one i have created for error in integration engine(Alert_cat1 ) and other for adapter engine(Alert_cat2).
    Now for Alert_cat1 i have created a rule and in the setting "where did the error occur" I have given no restriction.
    Now for Alert_cat2,as discussed in the above blog I have created many rule each for various adapter.
    I have tested it, above mentioned configuration is working for message mapping error (sxmb_moni)
    but not for any error in adapter engine for messages in waiting or system erroe status.
    Kindly suggest where I am going wrong.
    Regards
    Shefali S

    HI,
    please refer this below blog:
    Does Alerts work for Integrated configurations scenario??
    thanks,

  • Keychain not getting triggered for ssh after 10.5.6?

    I've had passwordless SSH going for some time now using these instructions
    http://www.mactips.org/archives/2007/12/20/using-passwordless-ssh-the-easy-guide -leopard-only/
    but it stopped working today. Here are some details I think might be important:
    1) Both machines (iMac and MacBook) were upgraded to 10.5.6 today from 10.5.5
    2) I have repaired permissions on both machines.
    3) I have repaired the keychain on both machines.
    4) I have re-created the keys using the instructions above and a clean ~/.ssh/
    5) Deleted the old 'ssh' entry in Keychain Access.
    From all I can gather, whatever program is supposed to jump in and ask to save my passphrase into the Keychain isn't doing so.
    I have an instance of '/usr/bin/ssh-agent -l' showing in 'ps' after doing:
    $ ssh-add -l
    The agent has no identities.
    I'm stumped.
    This worked so easily before, and now it isn't.
    I saw in the 10.5.6 release notes that ssh was updated, and I wondered if it had anything to do with that.
    Any help appreciated.

    One last thing:
    SSHAUTHSOCK is reporting back that it has been set.
    And I'm using zsh (don't know if that matters).
    (OK, two last things

Maybe you are looking for

  • How to install Premiere CC (not 2014) on a new machine?

    Just added a new machine to the studio, and am looking for a way to install Premiere Pro CC 7.2.x. The rest of the studio still hasn't upgraded to 2014 (and, no offence Adobe, but your track record means there's a few good months of forum-watching st

  • Good for the skid rest their house is good for

    good for the skid rest their house is good for our ears inner hours so you might want to look into I'll Leif you're someone who doesn't want to go to the medical grade skin care line at you Finesse Face Serum with much rather have medium and lime pri

  • Planning in EC-PCA with material number

    We have a requirement to enter Revenue plan data in PCA by using Profit Center & Account number & Material number.    However, I do not see 'material' as a characteristic that can be added to the plan layout.    The only available field is 'Represent

  • Multiple effects as one single preset?

    This would be incredibly useful- having one preset that contains multiple effects in it. This cannot be done, can it?

  • How to update infotype 0712 in the background

    I amd working on a web dynpro applicaiton for PA action request and process action in the background. We have manu concurrent employees. When the main assignemnt is terminated, I need to switch the main pernr to another pernr. I sue HR_INFOTYPE_OPERA