PopUp for subscription Alerts on KMC

Hi,
Is there a way that a popUp Alert is trigered when subscription event ocurs for a user when this logs into the Portal?
Thanx in Advanced!
Gerardo J

Hi Gerardo,
   It's not possible. You can develop this functionality.
   When the user log into portal can see: recent notification or UWL notification. But you can not display subscription events by mean popUp.
Patricio.

Similar Messages

  • How to create a notification subscription to send email for all alerts except exchange objects related alerts.

    Hi Team,
    We have notification subscription configured currently, which will send email notification for Central team for all alerts generated in SCOM. Recently we got complaint from messaging(exchange server) team, that the exchange related email notifications are
    going to other teams.
    How shall we exclude "All exchange 2010 entities" group from current subscription.
    Thanks,
    Dinesh
    Thanks & Regards, Dinesh

    Hi
    There is no functinality to exclude objects in notifications. You would have to select everything that you want to be alerted on. Either you select all Groups, classes or split up the subscription per "Technology" like SQL, IIS etc. and select
    the corresponding MPs to be alerted on like all rules and Monitors.
    Probably selecting the classes would be the best option
    https://social.technet.microsoft.com/Forums/systemcenter/en-US/7e8a5d4a-1727-4448-a2d8-85950645e01a/notification-subscription-by-management-pack
    This might help also
    http://blogs.technet.com/b/kevinholman/archive/2008/06/26/using-opsmgr-notifications-in-the-real-world-part-1.aspx and
    http://myitforum.com/myitforumwp/2014/03/04/system-center-operations-manager-2012-r2-generating-notifications-by-management-pack/
    Cheers,
    Stefan
    Blog: http://stefanroth.net If my post helped you, please take a moment to vote as helpful and\or mark as an answer

  • Create alert for subscription remainder

    Hi all,
    could somebody share about how to create subscription alert from ECC 6.0 (i'm using IS-Media Sales and Distribution), and display alert in CRM 2007 dashboard. For example if subscription is for 1 year for w eekly magazine and remaining weeks are 4 weeks, then something in CRM or ECC triggered to create alert in CRM 2007 so sales admin will see that subscriber will remain 4 weeks (editions) in the next delivery...
    thank you if someone could discuss this...
    thanks...
    Benyamin M.

    Hi GSS1,
    According to your description, my understanding is that you want to create an alert for a user at a list.
    You can use the following PowerShell command to achieve it:
    $SPsite = Get-SPSite "http://SharePointSite.com"
    $SPweb=$SPsite.Rootweb
    $SPlist=$SPweb.lists["Shared documents"]
    $SPuser = $SPweb.EnsureUser('Domain\Salaudeen')
    $SPnewAlert = $SPuser.Alerts.Add()
    $SPnewAlert.Title = "My Custom Alert"
    $SPnewAlert.AlertType=[Microsoft.SharePoint.SPAlertType]::List
    $SPnewAlert.List = $SPlist
    $SPnewAlert.DeliveryChannels = [Microsoft.SharePoint.SPAlertDeliveryChannels]::Email
    $SPnewAlert.EventType = [Microsoft.SharePoint.SPEventType]::Add
    $SPnewAlert.AlertFrequency = [Microsoft.SharePoint.SPAlertFrequency]::Immediate
    $SPnewAlert.Update()
    $SPweb.Dispose()
    $SPSite.Dispose()
    Based on your health analyzer rule, you can change EventType. You can also change the DeliveryChannels option to SMS  and AlertFrequenct option to Daily.
    More information, please refer to the links:
    http://www.sharepointdiary.com/2011/11/managing-alerts-using-powershell.html
    http://msdn.microsoft.com/en-us/library/office/microsoft.sharepoint.speventtype(v=office.15).aspx
    I hope this helps.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Batch automation - need to remove "choose" popup for folder selection in the automation

    Am new to scripting, and am creating a script to batch automate CS5 .idml to CS4 .inx. I have found a few scripts out there close enough that I can modify, but they all include the same variable of selecting the folder to get the files to process. Even when I put the ("//server/directorypath/folder") in place, it still opens the popup to “choose” the folder I just told it to go to. In the end what I need is a place people can put their .idml files on the network and, through an action folder running the script from a dedicated machine with CS4, spit the .inx they need. I have figured out how to turn indd dialog/alerts on and off, but not this!
    How can I make the “var myFolder =” be a fixed location?? Everything I try seems to create an exception later in the script
    var myFolder = Folder.selectDialog("Select a folder with InDesign files to open");
    if (myFolder == null) exit();
    var myFilelist = [];
    var myAllFilesList = myFolder.getFiles();

    Thanks John, it took care of the popup, but presents alert stating “no files to open”. here is the full script I started out with. Aside from server location the only thing I changed was substituting indd with idml on line 20, and of course the file path. It also throws a “Done” alert at the end. I also moved the INTERACT_WITH_ALL (line 77) to the end, but isn't stopping the done alert.
    // Export to interchange script.jsx
    // Script for InDesign CS3.
    // Opens all InDesign documents in selected folder
    // and  exports them into 'Interchange Files' subfolder as inx files, which is created in the selected folder.
    // Version 1.0
    // Jan 28 2010
    // Written by Kasyan Servetsky
    // http://www.kasyan.ho.com.ua
    // e-mail: [email protected]
    var myInDesignVersion = Number(String(app.version).split(".")[0]);
    var myFolder = Folder.selectDialog("Select a folder with InDesign files to resave");
    if (myFolder == null) exit();
    var myFilelist = [];
    var myAllFilesList = myFolder.getFiles();
    for (var f = 0; f < myAllFilesList.length; f++) {
        var myFile = myAllFilesList[f];
        if (myFile instanceof File && myFile.name.match(/\.indd$/i)) {
            myFilelist.push(myFile);
    if (myInDesignVersion < 5) {
        alert("This script is for InDesign CS3/4.", "Export to interchange script");
        exit();
    if (myFilelist.length == 0) {
        alert("No files to open.", "Export to interchange script");
        exit();
    var myExportFolder = new Folder( myFolder.fsName + "/Interchange Files/" );
    VerifyFolder(myExportFolder);
    var myCounter = 1;
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT;
    // Progress bar -----------------------------------------------------------------------------------
    var myProgressWin = new Window ( "window", "Export to interchange script" );
    var myProgressBar = myProgressWin.add ("progressbar", [12, 12, 350, 24], 0, myFilelist.length);
    var myProgressTxt = myProgressWin.add("statictext", undefined, "Starting exporting files");
    myProgressTxt.bounds = [0, 0, 340, 20];
    myProgressTxt.alignment = "left";
    myProgressWin.show();
    // Progress bar -----------------------------------------------------------------------------------
    for (var i = myFilelist.length-1; i >= 0; i--) {
            var myCurrentFile = myFilelist[i];
            var myNewName = GetNameWithoutExtension(myCurrentFile) + ".inx";
        try {
            var myDoc = app.open(myCurrentFile, false);
            var myDocName = myDoc.name;
            var myDocFilePath = new File(myExportFolder.fsName + "/" + myNewName);
            // Progress bar -----------------------------------------------------------------------------------
            myProgressBar.value = myCounter;
            myProgressTxt.text = String("Exporting file - " + myDocName + " (" + myCounter + " of " + myFilelist.length + ")");
            // Progress bar -----------------------------------------------------------------------------------
            myDoc.exportFile(ExportFormat.INDESIGN_INTERCHANGE, myDocFilePath);
            myDoc.close(SaveOptions.NO);
            myCounter++;
        catch(e) {
            alert(e);
        // Progress bar -----------------------------------------------------------------------------------
        myProgressWin.close();
        // Progress bar -----------------------------------------------------------------------------------
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
    alert("Done.", "Export to interchange script");
    function VerifyFolder(myFolder) {
        if (!myFolder.exists) {
            var myFolder = new Folder(myFolder.absoluteURI);
            var myArray1 = new Array();
            while (!myFolder.exists) {
                myArray1.push(myFolder);
                myFolder = new Folder(myFolder.path);
            myArray2 = new Array();
            while (myArray1.length > 0) {
                myFolder = myArray1.pop();
                if (myFolder.create()) {
                    myArray2.push(myFolder);
                } else {
                    while (myArray2.length > 0) {
                        myArray2.pop.remove();
                    throw "Folder creation failed";
    function GetNameWithoutExtension(myFile) {
        var myFileName = myFile.name;
        var myIndex = myFileName.lastIndexOf( "." );
        if ( myIndex > -1 ) {
            myFileName = myFileName.substr(0, myIndex);
        return myFileName;

  • Short dump while executing job SM:EXEC SERVICES for EWA alert generation

    Hello All,
    I'm getting short dump error while executing job SM:EXEC SERVICES for EWA alert generation.I'm using EHP1@SP22 of Sol Man.
    Please find the logs
    Error in the ABAP Application Program
    The current ABAP program "SAPLDSVAS_PROC" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program "RDSVASCABAP_TRANS__________073
    " in include "RDSVASIABAP_TRANS__________073 " in
    line 1782:
    "Field "STATEMENT_SUMMARY001019" is unknown. It is neither in one of th"
    "e specified tables nor defined by a "DATA" statement. "DATA" statement"
    The include has been created and last changed by:
    Created by: "SAP "
    Last changed by: "SAP "
    Error in the ABAP Application Program
    The current ABAP program "SAPLDSVAS_PROC" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    If anyone came across such kind of dump, please reply asap, due to this, i could not generate EWA report for R/3 system 6.04.
    Thanks,
    Anand.

    >
    Anand Tigadikar wrote:
    > Thx Paul, but i already did checked this note and its not solving my issue
    Dear Anand,
    Did you perform a complete service definition replacement for SDCC/SDCCN as described in the note?
    These are manual steps you need to perform on the system and are not code corrections.
    I would suggest you perform it, if you have not, and check the SDCCN logs to review the process ran cleanly.
    Note: Please make sure SDCC_OSS is functioning and a connection to SAP can be made before
    deleting the service definitions.
    If you have already replaced the service defintions on the Solution Manager system, then no point doing it again. However checking a note and applying it are not the same thing. So I am uncertain if you replaced the service definitions or not. The dump you are getting in SM:EXEC SERVICES suggests its due to a problem with the service definitons. The recommendation is to replace them according to the process described in SAP Note 727998. If you have not done so please do so.
    If you have successfully replaced the service definitions are you still getting the same dump, or has it possibly changed?
    Regards,
    Paul

  • How to configure Workflow Notification Mailer for oracle alert in R12

    Hi all....,
    How to configure Workflow Notfication mailer for oracle Alert in R12. Please provide the complete steps.. Its urgent.. Plz help me..
    Regards ,
    Madhan

    Duplicate thread (please post only once)
    plz help me...!!!! Workflow Notification Mailer
    plz help me...!!!! Workflow Notification Mailer

  • HT204053 I recently changed ny Apple ID but it did not transfer over to my iCloud account. How do I change my iCloud ID? The login popup for iCloud will not go away so I cannot get into my iPad since it pops up as soon as I turn the device on.

    I recently changed my Apple ID but it did not transfer over to my iCloud account. How do I change my iCloud ID? The password for the new Apple ID does not work since the iCloud default user name is imbedded in the login box. The login popup for iCloud will not go away so I cannot get into my iPad since it pops up as soon as I turn the device on and re-occurs every few seconds.

    You have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone, then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPad on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iPad when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • I have moved from the UK to Canada and would like to pay for subscriptions in Canadian dollars rather than sterling pounds. Also I would like to take up the offer that I have purchase CS packages in my account. How do I go about this?

    I have moved from the UK to Canada and would like to pay for subscriptions in Canadian dollars rather than sterling pounds. Also I would like to take up Creative Cloud subscription offer because I qualified as a prior purchaser of CS packages.
    How do I go about this?

    I did that - nothing happen... I have changed my adobe ID and all address to my Canada home.
    Having log myself out and re-log back in to start the Creative Cloud subscription. The payment still shows in Sterling Pounds.
    This is difficult as I am no longer earning Sterling pounds as a wage and the subscription would automatically be doubled payment, because Canadian $ is less in currency exchange to the UK Sterling Pound.
    Thanks for your above suggestions, but what should I do now, to resolved this issue.
    Regards
    Robert

  • List of values apprear for email alert while scheduling the report

    List of values apprear for email alert while scheduling the report

    Hi,
    Can you please expand on your issue?
    Cheryl

  • How to do popup for file download???

    Hi,
    I'm trying to create a popup for file selection for download. Basically, I want to call:
        call method cl_gui_frontend_services=>file_open_dialog
    This works fine from a report, but from my web dynpro I get a dump because apparently there is no gui (parameters www_active and activeX are all empty).
    Does anybody have any experience with this? I'm thinking:
    - am I doing something wrong?
    - does this method work with web dynpro at all?
    - is there some other CL_WD* class for this purpose?
    - are my system settings screwed up?
    Thanks for all hints!
    Ira

    This might be helpful:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/42af9f90-0201-0010-6099-ba67e5426bdf
    - April King

  • Adobe Captivate Help | What's new in Adobe Captivate 6 update (for subscription and Adobe Software Assurance customers)

    This question was posted in response to the following article: http://helpx.adobe.com/captivate/using/whats-new-captivate-6-patch.html

    Why on earth is this only for subscription and Adobe Software Assurance customers???
    I own eLearning suite 6.1; why I'm not getting the Captivate update that is compatible with Windows 8 if my suite was released after Windows 8 release???

  • Popup for transport request in WebDynpro ABAP application

    Hi there,
    which function module can I use to prompt the user for the transport request in an WebDynpro ABAP application.
    In SAPGUI I found 'TR_ORDER_CHOICE_CORRECTION' to do this but I get a short dump when I call this one from a WebDynpro ABAP application ...
    Many thanks in advance!
    Regards,
    Steffen

    Thanks for your replay!
    The reason I get the short dump is the function modules I found call a dynpro screen inside for prompting for the request. I am not surprised this does not work for WebDynpro applications ....
    So I thought there is a generic function module for WebDynpro applications available or a WebDynpro component I can use for this ... Sure I could build it by myself but this does not seem to be the right way for me since this requirement seems to be of a generic nature.
    @Gaurav: I am interested to bring up a generic popup for prompting for the request. So I cannot use the flags to suppress the screen ...
    Best regards,
    Steffen

  • My serial number is "not valid for subscription products", but of course it should be. how do I fix that?

    my serial number is "not valid for subscription products", but of course it should be. how do I fix that?

    Hello,
    general informations you will find there: https://www.adobe.com/account.html and this brandnew website:  Serial number and activation support.
    In case you bought your program from these firms like Amazon this "serial number" obtained from them is not a serial number, only a code with which you can request a serial number from Adobe.
    The following part, so I just see at least ceased to exist on my Adobe website, everything plays out in the link from above. I let it there as an info:
    Here you have to go through your "Adobe Store", and look for the button "Serial Number Request". Fill in the form and, after a while you will get a "real" serial number.
    Hans-Günter

  • SUGGESTION TO ADOBE: PLEASE CREATE A PROPER FORUM FOR SUBSCRIPTION AND BILLING ISSUES

    I think and many will agree, that it is about time that Adobe would create a forum just for subscription or billing issues.
    There are so many people looking for help that taking this issues to a specific forum, would help in reducing the signal to noise ratio and keep a focus on specific topics. Yes, Adobe should fix these issues and I am sure they are being address but creating proper channels would speed up support, from Adobe staff and from people that, for crazy reasons, volunteer here.
    I try to help, but sometimes just the Creative CLoud forum is like a raging river of people looking for help and if it was divided in some topics, it would be a great help. So:
    - Create a Creative Cloud membership and Billing issues: It is about time
    - How-to and technical issues are still well served by the topics.

    Hi Luis,
    Welcome to Adobe Forum,
    I completely apprehend your point of view, the billing issues deal with credit card information which are highly secured information, there is only one authorized group taking care of billing issues.
    Regarding Invoice issues, please feel free to raise it here, we do try to resolve them at the earliest.
    The direct link to Adobe Support is http://adobe.ly/yxj0t6
    Regards,
    Rajshree

  • Unity Connection 10 - EventID: 0xC0000007 (7) - After 5 unsuccessful attempts to send a notification for subscription

    hello,
    i am receiving this event on MX:
    this is showing ip address of my unity connection that is 172.20.101.22....
    what could be reason and cause of it?
    EventID: 0xC0000007 (7) - After 5 unsuccessful attempts to send a notification for subscription [EABtYngwMi5uaGljLmxvY2FsEAAAAIfIUmalt2VFie2S8ahJiKNZu5GtCIfRCA==] against endpoint [http://172.20.101.22:7080/NotificationService/services/NotificationService?id=33a00cf5-3f28-44e1-9d44-46b24da4bc2a&pid=14227], the subscription has been removed. Details: WebException: Unable to connect to the remote server Status: ConnectFailure at System.Net.HttpWebRequest.EndGetRequestStream(IAsyncResult asyncResult, TransportContext& context)
    at System.Net.HttpWebRequest.EndGetRequestStream(IAsyncResult asyncResult)
    at Microsoft.Exchange.Services.Core.NotificationServiceClient.CreateSendNotificationRequestAsync(IAsyncResult requestAsyncResult)

    Navigate to CUC Administration, set the following under SMTP Configuration > Server, and give it another shot.
    [V] Allow Connections From Untrusted IP Addresses
      [ ] Require Authentication From Untrusted IP Addresses
    -Mateusz

Maybe you are looking for

  • When using a path, jagged lines, not smooth lines, uneven lines

    I am using a Mac, photoshop CS5 I created a path with Curves with the pen tool. filled it in with a color light blue. than I use the paint bucket to change it to dark blue. This is when the curved lines become jagged, not smooth, uneven. also I would

  • [Solved] CD Mount doesn't work, DVD does

    So, I am able to mount DVDs but cannot mount CDs.  Evidently, this is problamatic. Here is my fstab. # /etc/fstab: static file system information # <file system> <dir> <type> <options> <dump> <pass> devpts /dev/pts devpts defaults 0 0 shm /dev/shm tm

  • Would like to start learning ODI

    HI, I have learned Essbase, Planning and Budgeting and HFR. Now i would like to learn ODI, Please provide some good study material links(PDF's etc.,). Any guidelines on how to get started with ODI is really appreciated. Thanks, Mani

  • My 13" macbook pro 2011 overheating anyone with same issue?

    my 13" macbook pro 2011 turn hot when i open windows (boot camp) and also using microsoft word on mac os x, why this issue happen? anyone with same issue?

  • CS5 Classroom In A Book Errors

    I'm learning some Dreamweaver through Adobe Press' Classroom In A Book and finding some pretty bad errors in it's editing. It's tough to then know if any problems I'm having with the program are related to my own mistakes, or if it's just another typ