AWE Transaction Configuration Event Notification Setup issue

AWE Transaction Configuration > Event > Notification Setup issue
On Final Denial Event has Notifications Option set to "Requester" "Both".
The Email URL is redirecting to the correct Approval Component mentioned under Approval Component in On Final Denial Event
But the Worklist URL is redirecting to another Component unlike the email URL, it is sending to a different component.
Why the same notifications via the same Event (On Final Denial) have two different URL's??

Hi,
The worklist/notification component is defined on several places, where the "lowest" definition applies for the action being triggered.
1 AWE Transaction Configuration> Transaction Registry > Default Approval Component
2 AWE Transaction Configuration > Event
3 AWE Transaction Configuration > Event > Notification > Template Detail tab
Be aware that the Notification section in the Transaction Configuration shows 1 row in the grid, where more than 1 row can be defined. Click on the View all to expand the grid and see all notification defined for this event.
See if above configurations differ in menu, component, page ...
Regards,
Hakan

Similar Messages

  • Issue Configuring Push Notifications Proxying for OWA for Devices

    I have been attempting to configure Push Notifications per http://technet.microsoft.com/library/jj151815.aspx#bkmk_installmodule
    When running the second PowerShell script I get the error 
    "New-MsolServicePrincipalCredential : Invalid value for parameter. Parameter name: Credential.EndDate.
    At c:\Users\User\Desktop\script2.ps1:25 char:5
    * New-MsolServicePrincipalCredential -AppPrincipalId $p,AppPricipalId -Type a"
    I do currently have another Federation Trust configured for this account with our test environment. Might this be causing this error? Any help would be appreciated.

    Hi,
    As far as I know, the issue can be caused by time difference between local timezone and server timezone. Please firstly check with this point.
    Thanks,
    Simon Wu
    TechNet Community Support

  • Windows 8.1 - Windows Couldn't connect to the System Event Notification Service service

    I have an issue that has been bothering me for a while on new 8.1 computers. Standard users are not able to log into the computer on the first try consistently. They receive the error message: Group Policy client service failed the sign-in access is
    denied. They are stuck at the logon screen.
    If an administrator logs in (local or domain), they can log in but get a black desktop with two error messages. The first is Location is Not available - C:\Windows\system32\config\systemprofile\Desktop is unavailable. The second error message is a popup
    balloon. It states "Failed to Connect to a Windows service. Windows couldn't connect to the System Event Notification Service service."
    When a standard user attempts to log in, event viewer records three warnings. They are listed in order from oldest to newest
    The winlogon notification subscriber <Profiles> was unavailable to handle a critical notification event. -Logged 9:14:44
    The winlogon notification subscriber <GPClient> failed a critical notification event. - Logged 9:14:44
    The winlogon notification subscriber <Profiles> was unavailable to handle a notification event. - Logged 9:14:49
    After a reboot, users still have the issue. I noticed that the user profile services and system event notification service are not running though their startup type is automatic. They start after a minute or two.

    Hi Joseph__Moody,
    Based on your description ,I assume it is a domain environment .First of all ,I would suggest you to try to update all the machine .
    "I have an issue that has been bothering me for a while on new 8.1 computers"
    Do you mean all the Windows 8.1 machine share the same symptom or just a specific one ?Did the machine work correctly before ?When did the issue start to occur ?Have you installed any third party software before ?Can we operate the machine when we login with
    an administrator account ?
    If the issue occurred with the specific machine :
    "The first is Location is Not available - C:\Windows\system32\config\systemprofile\Desktop is unavailable."
    Please try the following suggestions if we can operate the machine when we login with the administrator account :
    Open Windows Explorer and navigate to: C:\Windows\system32\config\systemprofile and verify if it has the Desktop folder there.If the folder doesn`t exit, we can copy from C:\users\Default\Desktop location(This folder is hidden by default).
    We also can try the following suggestions to have a troubleshoot :
    1.Run "sfc /scannow"or "dism /online /cleanup-image /restorehealth" to check the health of the system files.
    2.Perform a full scan with an antivirus software.
    3."They start after a minute or two."
    I suspect there is a third party service confilct here. Please perform a clean boot to verify whether there is a third party conflict here .
    How to perform a clean boot in Windows
    https://support.microsoft.com/en-us/kb/929135
    If the issue occurred with multiple machines in the domian ,I would suggest you to check whether you have configured any logon scripts and logon group policy .We can remove the machine from the domain to have  a troubleshoot .
    If the issue occurred recently ,we can perform a system restore to recover the machine to a previous normal point.
    Best regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected].

  • Event Notifications for Deadlock Graphs

    So, I was trying to setup emailing of deadlock graphs using event notifications. I followed the information I found in Jonathon Kehayias PASS information, but it appears (and maybe I am wrong) that event notifications and queues only work on
    the database you create them under??? I see it says in BOL: http://msdn.microsoft.com/en-us/library/ms189453.aspx that it applies to the instance, but when I manually create a deadlock,
    the queue only gets an entry if the deadlock was created accessing an object in the database where the queue was created. If I switch to another database, it does not add to the queue at all. Is that right? Or did I possibly configure something wrong? I can't
    believe that events would be restricted to only fire in the database scope of the queue. That just sounds like it would essentially make this tool kind of useless for broader scoping work, like, anything actually instance related. Does anyone know? 
    John M. Couch

    Wow, I have a bunch of other stuff in there that maybe I don't need. I actually created a separate database. I am guessing that because you used MSDB that you did not have to enable the service broker using the code below:
    -- Enable Service Broker
    alter database [SysAdm]
    set enable_broker;
    go
    I also noticed you did not create a route ? 
    create route [CaptureDeadlockRoute] with service_name = 'CaptureDeadlockService', address = 'LOCAL';
    go
    And this appears to be where I screwed up. I did not pull the GUID and use it in the Event Notification creation, I simply used Current Database. 
    -- Now query the sys.databases for the service_broker_guid of the msdb database.
    SELECT service_broker_guid FROM sys.databases WHERE name = 'msdb';
    In MSDB, create event notification using the GUID from above:
    CREATE EVENT NOTIFICATION evnDeadLock_Graph
    ON SERVER
    WITH FAN_IN
    FOR DEADLOCK_GRAPH
    TO SERVICE 'svcDeadLock_Graph'
    , '8D785814-2D75-490C-B07D-7303363A9B6B'; -- the GUID for msdb goes here
    And I noticed you did not use the mail cert as in his code. Did it not work, or did you just skip it?
    -- Create a certificate to sign stored procedures with
    create certificate [dbaMailCert] encryption by password = 'dhsfosjf' with subject = 'Certificate for Sending Email via Stored Procedure';
    go
    -- Backup certificate so it can be create in master database
    backup certificate [dbaMailCert] to file = 'R:\Path\dbaMailCert.CER';
    go
    -- Add Certificate to Master Database
    use [master]
    go
    create certificate [dbaMailCert] from file = 'R:\Path\dbaMailCert.CER';
    go
    -- Create a login from the certificate
    create login [dbaMailLogin] from certificate [dbaMailCert];
    go
    -- The Login must have Authenticate Sever to access server scoped system tables
    -- per http://msdn.microsoft.com/en-us/library/ms190785.aspx
    grant authenticate server to [dbaMailLogin]
    go
    -- Create a MSDB User for the Login
    use [msdb]
    go
    create user [dbaMailLogin] from login [dbaMailLogin]
    go
    -- Add msdb login/user to the DatabaseMailUserRole
    exec msdb.dbo.sp_addrolemember @rolename = 'DatabaseMailUserRole', @membername = 'dbaMailLogin';
    go
    John M. Couch

  • Event Notifications: insufficient system memory

    I'm looking for a sanity check.  Service broker and Event Notifications are new to me, so it is possible I'm either abusing or incorrectly using the technology.  I'm experimenting with using Event Notifications and Server Broker to log error messages.  The process works pretty well as long as I don't do something stupid such as stressing the process by calling raiserror in a loop of a 100000 - twice.  It processed for a while, but eventual either SQL Server terminates (sev 25) or I had to force the SQL service to stop by killing it's process via task manager.  I could not connect to SQL Server or stop the service normally.  
    I have several general questions.  I think they are good questions.  Any thoughts or suggestions would be appreciated. 
    1) I'm looking into generating deadlock and blocking email alerts.  It appears that Event Notification is the way to go since there are very few events and I can respond to the event with an email.  Is there a better method to automate blocking and deadlock email alerts that include event details? 
    2) If I wanted to retain some history of errors for the developers, should Event Notifications be avoided if a high number of errors can be generated by a badly formed T-SQL?  Avoid TRC_ERRORS_AND_WARNINGS and USER_ERROR_MESSAGE?  (I could tell the developers not to be stupid, but why would that stop them if it does not stop me?)
    3) Is there a way to efficiently filter a Event Notification from entering the queue before the Receive statement is called?  I get some events that I throw away after receiving them.  For example, perhaps I want all events from all non-system databases without having to add a notification for each single non-system database.  Or I want all errors with severity 11-17 only? 
    4) Is there a trick to filter out events from the procedure activated by the event.  I tried using raiserror to debug a procedure without thinking.  The result was that the queue never was empty because the processing produced more events to process.  As a result, I don't use raiserror and use a try-catch to avoid raising errors in the procedure activated. 
    5) I can receive one message at a time using local variables or receive a batch of messages using a local table.  Is a small batch the best way even if there is memory pressure? 
    6) In the activated procedure I continue processing in a loop until there are no more messages.  This seems to be the most efficient.  Is this always the case?  Should I exit the procedure after a set number (large) of messages have been received?  The procedure would activate again to continue processing? 
    7) Is there any point to using the MAX_QUEUE_READERS setting when processing event notifications?  Should it be 1? 
    8) I currently get the next conversation group id and process its messages within a transaction.  Is this a bad idea with event notifications?  Should I just call Receive and get the next batch?  I don't really care if I lose some messages if things are going badly.  Should I avoid wrapping the receive in a transaction? 
    9) I could run a trace that starts with SQL Server; however, I think my only choice is to log to a file.  Is there a way to trace to a table using SQLTrace without running profiler?  I would like to automate the process and have the data in a table so that it can be easily queried and parsed for each database/team. 
    10) Is there a way to fix my process and handle 100000 messages a minute?  Is there a way to skip messages when it gets to busy?  Can the query generating the messages get throttled - perhaps along with the query designer - before the server gets into trouble?  Query the memory used by a queue and drop/create the queue with a delay if there is an issue? 
    I'm using a single CPU test machine with only 1 GB and 2 GB pagefile and a single disk.  OS: Windows 2003 R2 SP2.  SQL: 9.0.3054 and on 9.0.3228 (update package 6 just came out today).  I could add memory, but I think that would just permit me to queue more message before running into trouble. 
     I'll add code shortly - length limit.

    Here is the activation procedure to "receive" the messages.  I won't bother including the scripts for the two tables.  The 50000 char limit is trouble. 
    CREATE PROCEDURE [monitor].[prReceiveEventNotificationQueue]
    AS
    SET XACT_ABORT ON;
    BEGIN TRY
    WHILE 1=1
    BEGIN
    BEGIN TRANSACTION;
    WAITFOR(GET CONVERSATION GROUP @conversation_group_id
    FROM DBA.monitor.EventNotificationQueue), timeout 10000;
    IF @conversation_group_id IS NULL
    BEGIN
    ROLLBACK;
    BREAK;
    END;
    DELETE FROM @EventNotification;
    RECEIVE TOP (100)
    queuing_order,
    [conversation_group_id],
    message_sequence_number,
    NULLIF([service_name], @service_name_expected),
    service_id,
    NULLIF(service_contract_name, @service_contract_name_expected),
    service_contract_id,
    NULLIF(message_type_name, @message_type_name_expected),
    message_type_id,
    validation,
    CASE WHEN validation = 'X' THEN CAST(message_body AS XML)
    WHEN validation = 'E' THEN CAST('<empty />' AS XML)
    WHEN validation = 'N' THEN CAST('<binary><![CDATA['
    + CAST(message_body as varchar(MAX)) + ']]></binary>' AS XML)
    END,
    NULL,
    --NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    0
    FROM DBA.monitor.EventNotificationQueue
    INTO @EventNotification
    WHERE conversation_group_id = @conversation_group_id;
    SELECT @rowcount = @@ROWCOUNT
    IF @rowcount = 0
    BEGIN
    ROLLBACK;
    BREAK;
    END;
    -- preprocess some fields in the XML used in filtering and statistics
    -- insert new messages into the EventNotification table
    INSERT INTO monitor.EventNotification (
    queuing_order,
    [conversation_group_id],
    message_sequence_number,
    [service_name],
    service_id,
    service_contract_name,
    service_contract_id,
    message_type_name,
    message_type_id,
    validation,
    message_body,
    post_time,
    database_name,
    event_type,
    severity,
    error
    SELECT
    queuing_order,
    [conversation_group_id],
    message_sequence_number,
    [service_name],
    service_id,
    service_contract_name,
    service_contract_id,
    message_type_name,
    message_type_id,
    validation,
    message_body,
    post_time,
    database_name,
    event_type,
    severity,
    error
    FROM @EventNotification
    WHERE ignore = 0;
    COMMIT
    -- Gather statistics
    WAITFOR DELAY '0:00:00:01'
    END;
    END TRY
    BEGIN CATCH
    IF NOT(XACT_STATE() = 0)
    ROLLBACK;
    INSERT INTO DBA.monitor.ErrorLog (
    [number],
    error_message()
    END CATCH;
    RETURN 0;

  • DCNM LAN EVENT NOTIFICATION FORWARDING.

    hi all,
    I am working at a client site on DCNM LAN v5.1.
    the issue i am currently facing is i am unable to configure forwarding notifications of events in email to the sys admin.
    can anybody please tell me how to configure DCNM LAN 5.1 to forward all events generated to the NOC (without the call home).
    the interface i use does not have SAN functions in it so i only have limited tabs to work with.
    thanx in advance.

    Hi,
    Perhaps you could use Syslogs?
    Sending Log Files

  • DFM email notification setup

    Hi All,
    I have LMS 2.6 and DFM 2.0.10, configured email notification for one Subscription "INL" as sender address [email protected] to [email protected]
    Recently I have configured another Subscription "POY" for another bunch of devices as sender "[email protected]" only to [email protected]
    I am receiving mails to [email protected] but not to [email protected]
    Can someone look into this issue and tell me what needs to be done.
    Regards,
    Jopeti

    Hi,
    First thing I'd check is if you are generating alarms for "POY" in the Alerts and Activities. If they are present then I'd verify I can send email to [email protected] from the LMS server. If you can then we will need to examine some files.
    You can start troubleshooting by verifying the configuration of your second group.
    Creating a Notification Subscription
    To create a notification subscription, perform the following steps:
    1.  If you want to monitor a specific set of events, create an event set that contains the events you want to monitor. Otherwise, all events and alerts will be monitored.
    2.  Create a notification group that specifies the criteria DFM should use when generating notifications:
    One or more event sets (if no event set is specified, all events and alerts are monitored)
    Devices, alert severity and status, and event severity and status
    You can specify the notification group name, along with entering identifying information (using the Customer ID and Customer Revision fields).
    3.  Create a subscription by doing the following:
        a.  Select the notification type (SNMP Trap, E-Mail, or Syslog).
        b.  Name the subscription and apply a notification group to it.
        c.  Specify the recipients (hostname, e-mail address).
        d.  Save the subscription. It will automatically start running.
    Troubleshooting SMTP
    From the LMS server, telnet to your SMTP server on TCP port 25, and make sure you can:
    1.  Connect to the server
    2.  Issue the following command:
        HELO IP
    Where IP is the IP address of the LMS server. The mailserver should grant you access to send email.
    If that works, start a sniffer trace filtering on all tcp/25 traffic between the LMS server and the SMTP server. Generate new DFM events which should trigger email notifications, then check the sniffer trace to see what is happening.
    Thanks.

  • JComboBox event notification when select first entry in pop-up menu JDK 6

    I recently began testing a Java GUI, I originally developed with JDK 1.5.0_11, with JDK 1.6.0_3. I have used the JComboBox in several applications developed using JDK 1.3.x and 1.4.x over the years. In every one of these earlier JDKs the JComboBox widgets all behaved the same. When you select the JComboBox widget, the pop-up menu appears and you can select any of the items from the menu list. Having made the selection with either a mouse click or a key press, an event notification is sent. Typically, an ActionEvent as well as either a mouse click event or a keypressed event may be sent. When testing with 1.6.0_x versions of the JDK and JRE, I can't account for any event notification being sent when selecting the first item at the top of the pop-up menu as the initial selection. If I select some other item on the list and then the first item, it works as it is supposed to work, but only after selecting another item first.
    I've placed the JComboBox in a JDialog and a JPanel. There are NO AWT widgets in any containers of the application. The same behavior seems to exist regardless of what other containing Swing component I place the JComboBox in. I'm running these applications on Windows XP, service pack 2. The system is an AMD 64 bit dual processor with 4Gb of RAM. The essential code follows:
    private JComboBox getJcboAlias()
        /* Note here that I am using a defaultComboModel as I have always done */
       jcboAliases = new JComboBox(urls);
       *jcboAliases.setEditable(false);*                               // Note here that the JComboBox is NOT editable
       jcboAliases.addActionListener(new ActionListener()   // ActionListener only receives a notification if the second or
       {                                                                            // another item in the pop-menu list is selected...but never the
          public void actionPerformed(ActionEvent ae)           // first item in the list
             String s = (String) jcboAliases.getSelectedItem();
             for (int i = 0; i < connections.size(); i++)
                conAlias = (String[]) connections.get(i);
                if (s.equals(conAlias))
    isSelected = true;
    break;
    jlblName.setVisible(true);
    jlblAlias.setVisible(true);
    jlblUID.setVisible(true);
    jlblPWD.setVisible(true);
    jtxtName.setText(conAlias[0]);
    jtxtName.setVisible(true);
    jtxtAddress.setText(conAlias[1]);
    jtxtAddress.setVisible(true);
    jtxtUID.setText(conAlias[2]);
    jtxtUID.setVisible(true);
    jtxtPWD.setVisible(true);
    jtxtPWD.setText("");
    jtxtPWD.requestFocus();
    return jcboAliases;
    }    I'm using a non-editable JComboBox because there is a pop-up menu with this and not with the JList widget.  JComboBox behaves more like the JList MicroSoft counterpart.  Another code snippet follows in which the JComboBox is editable.  The same errant behavior occurs when selecting the first item from the pop-up menu: private JComboBox getJcboPCMember()
    jcboPCMember = new JComboBox(PCViewerCustom.getCurrentMembers());
    jcboPCMember.setBounds(250, 103, 180, 20);
    jcboPCMember.setToolTipText("PATHCHECK(ER) member name - Example: CKPPTHCK");
    jcboPCMember.setSelectedIndex(Integer.valueOf(PCViewerCustom.getCurrentHost(3)));
    jcboPCMember.setEditable(true); // Note here that this JComboBox IS editable
    jcboPCMember.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent ae)
    if (ae.getActionCommand().equals("comboBoxEdited"))
    boolean copy = false;
    for (int i = 0; i < jcboPCMember.getItemCount(); i++)
    if (jcboPCMember.getSelectedItem().equals(jcboPCMember.getItemAt(i)))
    copy = true;
    break;
    if (!copy)
    if (jcboPCMember.getItemCount() > 0)
    if (jcboPCMember.getItemAt(0).equals("No Entries"))
    jcboPCMember.removeItem("");
    jcboPCMember.removeItem("No Entries");
    jcboPCMember.insertItemAt((String) jcboPCMember.getSelectedItem(), 0);
    else
    jcboPCMember.removeItem("");
    jcboPCMember.addItem((String) jcboPCMember.getSelectedItem());
    enableJbtnOK();
    else
    if (jcboPCMember.getSelectedIndex() >= 0)
    PCViewerCustom.setCurrentHost(3, Integer.toString(jcboPCMember.getSelectedIndex()));
    enableJbtnOK();
    else
    JOptionPane.showMessageDialog(null, "Name not selected", "Error", JOptionPane.ERROR_MESSAGE);
    return jcboPCMember;
         I am able to add a new entry to the JComboBox, however, I am still unable to select the first item from the pop-up menu and fire any kind of notification event.  I have not seen this behavior before in any earlier versions of the JDK and it's playing havoc with my ability to deploy the application into a JDK or JRE V6 environment, without adding a bunch of additional code to pre-select the first item on the list, which pretty much defeats the purpose of the JComboBox.  I'll be the first to admit I've done something wrong, but i've built a number of test scenarios now on two systems runing Win XP SP2 and I get the same errant behavior.  I've also added in event listeners for a MouseListerner, a KeyListener and an ItemListener.  Still no event notification on this first item in the list.  Again, however, if I select one of the other items from the pop-up menu list and then select the first item, all is well.  Imagine selling that method of operation to a user....  It occurs to me that this must be a bug in the V6 JComboBox.  I wanted to post this here first, however, in order to determine if this is, in fact, a bug - in other words, am I the only one seeing this, or is this a more widespread issue?  Any assistance in making this determination is greatly appreciated.
    David Baker
    Edited by: Galstuk on Nov 27, 2007 12:21 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    here is the other file as well:
    Harold Timmis
    [email protected]
    Orlando,Fl
    *Kudos always welcome
    Attachments:
    VI2.vi ‏5 KB

  • Need Help in configuring workflow Notification Mailer with IMAP

    Hi,
    i've configured the notification mailer successfully with SMTP and it's working fine , users can receive mail notifications but the INBOUND processing doesn't work.
    i've created a new mail account on the IMAP server (Outlook 2007), but when configure the Notification mailer from OAM it gives me the following error:
    Unable to connect to the mail account. Check the host, user name and password.
    i tried many documents from the web but till know i can't have a solution for this issue.
    EBS version : 11.5.10.2
    Please note that i don't have access to MetaLink.
    please help if you have any suggestions.
    Thanks..
    Edited by: Smarteng on Mar 13, 2012 6:53 AM

    i've configured the notification mailer successfully with SMTP and it's working fine , users can receive mail notifications but the INBOUND processing doesn't work.
    i've created a new mail account on the IMAP server (Outlook 2007), but when configure the Notification mailer from OAM it gives me the following error:
    Unable to connect to the mail account. Check the host, user name and password.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=%22Unable+to+connect+to+the+mail+account%22&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Extended Notification - Attachment issue

    Hi Experts,
    I configured Extended notification and its working is fine.
    But the issue is attachment is not coming with the notification.
    Actually the work item has the two attachments and in Portal UWL i can able to see the attachments.
    But the notification triggered by Extended notification, there is no attachment.
    The notification should have the attachments as like work item.
    Can any one help me on this?
    Thanks in Advance,
    Nandini.

    Hi Sriram,
    "The job for the SWN_SELSEN report checks whether there is a schedule that needs to be executed. If this is the case, the report selects work items or delivers notifications and sets a time stamp. If the schedule was not executed at the intended time, this is indicated in the time stamp. The schedule is executed the next time the job is started."
    Take a look at this link.
    [Link|http://help.sap.com/saphelp_nw70/helpdata/En/17/8d5c6ccd0a9a4498901ae5c3b5bac7/content.htm]
    Regards
    Anik

  • Touchsmart 9100; error 0x80072ee4; troubleshooting wizard error; system event notif. svc. error

    HP Touchsmart 9100 all-in-one
    Windows 7 professional
    First I get a window that says
    failed to connect to a window service --windows could not connect to the system event notification svc. This problem prevents standard user from logging into the system. as an administrator you can review the system event log for details about why the service didn't respond.
    Windows help and support cant start.  There is a problem with Windows Help and support.  To view our online help content visit windows website;
    The Internet is not available and the troubleshooter does not work.  I get this error when I try to connect to Internet;
    ERROR 137 (net::ERR-NAME-RESOLUTION_FAILED) unknown error
    I cannot run any diagnostics. I get this:  
    An error occurred while troubleshooting. Then it says Diagnostics troubleshooting wizard has stopped working. A prooblem has caused the system to stop working correctly.  Windows will close the program and nootify you if a solution is available.
    I get this window:
    Package ID: Performance Diagnostic
    Path;  Unknown
    Error Code; 0x80072ee4
    User;  
    Context: Restricted
    I restarted with the same result.
    I tried to do a startup repair and it said no problem was detected.
    Yesterday I had a problem where the cursor moved but nothing was clickable. I could not detect a problem, so I did a system restore to oct. 1 and it seemed to work.  The only thing added yesterday was malwarebytes. I scanned with that program and removed one item, but I cannot remember what it was.  
    I ran an AVG virus scan and it detected no viruses.
    I have the same issues in safe mode.
     When I go to services.msc it says it is "starting" and I cannot restart it.

    Hello sallatticum:
              Welcome to Hp's forum .  This link is how to correct  your error. How it works on a business computer that I do not because you have a total different operating  system then home users computers do. http://answers.microsoft.com/en-us/windows/forum/windows_7-performance/error-code-0x80072ee4-and-the... 
           You need to goto the HP's Business Support Forum with your computer issues. Next time or if this fix did not work for your issue. http://h30499.www3.hp.com/t5/Business-PCs-Compaq-Elite-Pro/bd-p/bsc-271 Please click on Kudos if this resolved your issue. Thank you frrw. 

  • Configure Events in the Workbench

    Hallo,
    since two years I was using toplink 9.0.4.8. In this Version i was able to configure Events on the Domain class which where inherited methods from an AbstractClass. Now i've migrated to toplink 10.1.3.3.0 - the migration was really easy and without any problems - a good job.
    Also all the configured events on the domainclass are correct and it works all correctly.
    But now i've some new domainclasses which also inherits from the AbstractEventClass but in the workbench i can't select the methods from this AbstractEventClass.
    I'm starting the workbench with java1.4.2_15 it is the same jave wich i've used for toplink 9.0.4.8.
    Maybe it is a problem with the new workbench - if i modify the descriptor by hand and copy the event-policy the workbench shows it correctly:
    <events-policy>
    <post-insert-method-handle>
    <method-declaring-type-name>ch.sbb.polar.persistence.history.AbstractHistoryEventsImpl</method-declaring-type-name>
    <method-signature>eventInsert(oracle.toplink.publicinterface.DescriptorEvent)</method-signature>
    </post-insert-method-handle>
    <about-to-update-method-handle>
    <method-declaring-type-name>ch.sbb.polar.persistence.history.AbstractHistoryEventsImpl</method-declaring-type-name>
    <method-signature>eventUpdate(oracle.toplink.publicinterface.DescriptorEvent)</method-signature>
    </about-to-update-method-handle>
    <post-delete-method-handle>
    <method-declaring-type-name>ch.sbb.polar.persistence.history.AbstractHistoryEventsImpl</method-declaring-type-name>
    <method-signature>eventDelete(oracle.toplink.publicinterface.DescriptorEvent)</method-signature>
    </post-delete-method-handle>
    </events-policy>

    I am setup the subscription on the oracle.apps.inv.itemUpdate event and it's not firing while updating the item, is there any profile option need to setup? We use Business events heavily in our TCA and those work fine and coming to inventory it's not firing.
    I would highly appreicate your help on this.
    Thanks,
    Srini C

  • Calendar Event Notifications

    hi:
    Has anyone taken a look at the Instant Messaging server with regards to Calendar Server event notification pop ups. (Event pop-ups are the number one user request here.)
    I have the instant messaging server running and configured as well as the calendar server but get the following java errors.
    I have a Sun case open for this but it seems that I may be the first customer to call. . .
    Any assistance is greatly appreciated.
    ==================
    Getting following error in server.log of Instant Messaging Server 6.0
    [16/Jun/2003:10:43:06 -0500] INFO: Loaded realm: com.iplanet.im.server.LDAPRealm
    [16/Jun/2003:10:43:06 -0500] ERROR: Failed to initialize JMS
    java.lang.NullPointerException
    at com.iplanet.im.server.JMSManager.initialize(JMSManager.java:283)
    at com.iplanet.im.server.NMS.<init>(NMS.java:487)
    at com.iplanet.im.server.NMS.create(NMS.java:364)
    at com.iplanet.im.server.NMS.main(NMS.java:1603)
    [16/Jun/2003:10:43:06 -0500] WARNING: Failed to open storage.properties file: java.io.FileNotFoundException: /Volumes/web/apps/iim/var/opt/SUNWiim/default/db/storage.properties (No such file or directory)
    [16/Jun/2003:10:43:06 -0500] NOTICE: IM Server (6.0, RESOURCE:3.0, NET:6.0)
    [16/Jun/2003:10:43:06 -0500] NOTICE: starting normal server: 0.0.0.0:49919
    Instant Messaging is installed in standalone mode on solaris 9
    ==================================

    I finally got this working. There was a typo in the iim.conf file on the instant messaging server.
    Fixed the typo and all is well.

  • How do you disable all-day event notifications?

    I've already read the various threads about the issues with all-day events disappearing from the Today view and only appearing in the Notifications.  However, I am having an issue when trying to disable all-day event notifications.  I currently use my all day events from my work calendar (Lotus Notes 8.5) that is synched to my phone.  I have disabled the "Notify Me" option within Lotus Notes and changed the default all day event notification on my phone to "None".  The problem is that this has not disabled any all day event notification and I still get notified every night at midnight for the event.  This didn't happen on iOS 6 or any of the iOS 7 beta versions.  Is this something that can be fixed?  Thanks!

    the Automation quick access should be off by default. I don't think this is what will do it for you, but here is a description of it, Page 320 of the manual
    Automation Quick Access
    This feature makes Track Automation extremely fast and simple if you only have one hardware MIDI controller available (one fader on your MIDI keyboard, or maybe just the Modulation wheel). You can use this single hardware controller to access (and automate) the currently visible Automation parameter of the selected Track in the Arrange window.
    since it is midi messages that you do not want to send from your controller, I think you need to go to song settings an filter out incomming midi messages. File>song settings>midi>imput filter
    but really any messages being sent should only effect the channel you are playing. I am assuming you are playing one of logics instruments for live performance.

  • Configuring Email notifications for approval of requisitions and Pos

    Configuring Email notifications for approval of requisitions and Pos - Using the EBS Server to send the mails as opposed to separate mail-server

    For sending emails, you have to setup the workflow notification mailer.
    Once this setup is done you can send approval worklist in mail and also it can be approved. ( If PO setup is done.)

Maybe you are looking for

  • Error - Balancing Line Item Profit Center not filled in Line Item 007

    Hi I am trying to do a transfer posting from one vendor account to another. However, system is giving an error - Balancing Line Item Profit Center not filled in line Item 001. Pls suggest. Regards Vaibhav

  • 4GB Ipod's touchscreen not responding.

    So I was drunk the other weekend and my ipod fell out of my pocket into my yard where it rained before I found it the next day. The ipod is charging and the everything seems to be fine but my touchscreen doesn't respond. Should I send it in?

  • History Column doesn't retrieve value (Jdeveloper 11g)

    Hello, The history columns are remaining null after I perform insertion on the table. My view objects are based on Entities Object. I tested also by running the service AppModule in the business model, history columns are remaining null. What can cau

  • Tolerance limit for Quantitative MICs

    Hi Experts, The scenario is for quantitative result recording, the decimal places for upper and lower values has been given as 3. So the user enters values with three decimal places. But in the case of fringe values like 9.999, the user requirement i

  • How do i detect am empty text field condition?

    Hi im a newbie with swing. I have a small problem. I have a text field. When user types some text into it i display a pane in the GUI. When the text field is cleared, i need to hide the pane. So basically i need to detect the condition when the text