How to void Life Events in Detected status

Hi,
There are lots of old Life Events in Detected status in the system. And recently the team terminated some employees who were not supposed to be in the system and that created around 3000 potential life events. Is there was way I can void all these Life Events that are there in Detected status?
Thansk and Regards,
Archana

Hi,
There are lots of old Life Events in Detected status in the system. And recently the team terminated some employees who were not supposed to be in the system and that created around 3000 potential life events. Is there was way I can void all these Life Events that are there in Detected status?
Thansk and Regards,
Archana

Similar Messages

  • How to process all events with a status of "No Match Found"

    Hello Everyone,
    I have a requirement of processing records reconciled from the target on the basis of their status as 'No Match Found'. Now I am considering only OIM as a authentic source of Provisioning, so all these records with 'No Match Found' status should get disabled at the target as and when OIM gets an event associated for it.
    Can anyone suggest me an idea.

    I don't believe an entity adapter will work because you cant do a pre-insert, and the event might not have completed yet on the post-insert.
    There are no APIs so you will need to create an instance of the OIM database and run the SQL queries and process the information within them and then you can use APIs. If you create a scheduled task, you need to use the following code which should provide you enough information to perform the query:
    tcDataSet dsList = new tcDataSet();
    String query = "select USR_KEY from USR";
    log.debug(query);
    try {
    dsList.setQuery(getDataBase(), query);
    dsList.executeQuery();
    if (!dsList.isEmpty()){
    log.debug("Total Rows Found:" + dsList.getTotalRowCount());
    result = true;
    for (int i = 0; i < dsList.getTotalRowCount(); i++) {
    dsList.goToRow(i);
    System.out.println(dsList.getLong("USR_KEY"));
    users.add(dsList.getLong("USR_KEY"));
    log.debug("User Key: " + dsList.getLong("USR_KEY"));
    }else{
    log.debug("No Users Found");
    result = false;
    } catch (tcDataSetException e) {
    e.printStackTrace();
    result = false;
    -Kevin

  • Life Events Created for Dependents in Detected Status

    Hi! Please help me understand this.... When a life event (Ex: Ineligible Dependent) is processed for an employee to end the ineligible dependent coverage, a New Hire Life event is assigned in detected for the dependent. What is causing this and what should be changed to stop this. Thanks and Appreciate your help.
    Vamsee

    I made some changes on the desktop end - changed the MBEx password from 'admin' (which it was giving me errors as well), to my own password. I added this new user/password to SCCM, MEBx account configuration. I ran another 'Discover AMT Status' on the device;
    I review the logs (got the same errors as mentioned above), but this time I went to check the MBEx settings and I actually found some information in it that must have been setup by SCCM (see screenshot).
    That was my only change to the desktop (just a password change).

  • How to close/process a life event automatically

    Hi,
    I am looking for a solution that can process "termination" life event automatically so there is no need of manual intervention.
    Just like there is a close enrollment process for Annual enrollment, can we setup something on similar lines and schedule a process that will take care of events like "termination" as well?
    Thanks for your suggestions!!

    Participation Process : Life Event will do it for you. It works for all life events including termination. If you want to schedule it specifically for terminated employees, choose the person type for ex-employees.
    Regards,
    Vinayaka

  • Life Events Not Processed in Self Service

    Hello All,
    When the New Life Events are in Detected Status and you try to enroll the employee through self service , self service does not show the life event for enrolling.
    After processing the life event from PUI , if I go to self service , then it allows me to enroll in to Benefits.
    Any reasons why it would not process the Life Event In Self Service when its in Detected Status.
    Regards,
    A

    Hi
    What is the Life Event Occured Date ?
    Thanks
    Gaurav

  • Multiple life events on a same day

    I am using Oracle OAB's SSHR and processing life events related to termination and termination reveral.
    I reverse the termination of one employee and again terminated him so he has an open life event. Now his Hire and Term dates are same and so the system gives me error- :User Intervention Required: multiple life events occured on a same day".
    How can I process his open life event?
    Thanks if you can answer asap.

    Hi,
    you don't need any technical expertise for it. However, if you are using OAB for managing benefits, I suggest going through with the functional expert to understand he setup there and what life event should take precedence.
    Steps : Navigate to Collapse Life Events form (I think it's Total Compensation -> General -> Additional Setup)
    Give the winning life event name as whatever life event you want to take precedence (newhire or termination) and provide both the life event names on the right side. Choose the option @Void potentials"(or something like that) for the code and the winning life event date for the date.
    Regards,
    Vinayaka

  • How to remove an event listener of Enter Frame

    basically, i doing a three level game. 1st level is dodging the stone from sky, Secondly, samsh the wolf head. However, when i enter leve1 2 game, it show me an error.
    TypeError: Error #2007: Parameter hitTestObject must be non-null.as:113  Cant access to null object or reference.as.83
    I think due to when i enter level 2, the object is not available anymore, so happen this errors,izzit? how i gonna fix this?
    package
              import flash.display.MovieClip;
              import flash.events.KeyboardEvent;
              import flash.ui.Keyboard;
              import flash.events.Event;
              import flash.events.MouseEvent;
              import flash.ui.Mouse;
              import flash.utils.Timer;
              import flash.events.TimerEvent;
              import flash.events.Event;
              public class level1 extends MovieClip
                        var vx:int;
                        var vy:int;
                        var collisionHasOccurred:Boolean;
                        var score:uint;
                        public function level1()
                                  init();
                        function init():void
                                  //Initialize variable
                                  vx=0;
                                  vy=0;
                                  collisionHasOccurred=false;
                                  stone.stop();
                                  score=0;
                                  optionPage.visible=false;
                        //Add event listeners
                        stage.addEventListener(KeyboardEvent.KEY_DOWN, onKeyDown);
                        stage.addEventListener(KeyboardEvent.KEY_UP, onKeyUp);
                        addEventListener(Event.ENTER_FRAME, onEnterFrame);
                        wolf2.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler);
                        function onKeyDown(event:KeyboardEvent):void
                                  if(event.keyCode==Keyboard.LEFT)
                                            vx=-5;
                                  else if (event.keyCode==Keyboard.RIGHT)
                                            vx=5;
                                  else if (event.keyCode==Keyboard.UP)
                                            vy=-5;
                                  else if (event.keyCode==Keyboard.DOWN)
                                            vy=5;
                        function onKeyUp(event:KeyboardEvent):void
                                  if (event.keyCode==Keyboard.LEFT || event.keyCode==Keyboard.RIGHT)
                                            vx=0;
                                  else if (event.keyCode==Keyboard.DOWN || event.keyCode==Keyboard.UP)
                                  vy=0;
                        function onEnterFrame(event:Event):void
                                  trace(player);
                                  trace(cursor);
                                  trace(aaa);
                                  trace(wolf2);
                                  trace(wolf);
                                  //Move the player
                                  player.x+=vx;  <-------------------------------------------------------------this is line 83
                                  player.y+=vy;
                                  //collision detection
                                  if (stone.hitTestObject(player))
                                  player.gotoAndStop(3);
                                  health.meter.width-=2;
                                  if (! collisionHasOccurred)
                                            score++;
                                            messageDisplay.text=String(score);
                                            collisionHasOccurred=true;
                        else
                                  player.gotoAndStop(1);
                                  collisionHasOccurred=false;
                        if (health.meter.width <=1)
                                  New.text="Game Over!";
                                  stop();
                                  fl_CountDownTimerInstance_3.stop();
                        if (player.hitTestObject(wall))   <-------------------------------------------------this is line 113
                                  player.x-=vx;
                                  player.y-=vy;
                        if (player.hitTestObject(wallA))
                                  player.x-=vx;
                                  player.y-=vy;
                        if (player.hitTestObject(wallB))
                                  player.x-=vx;
                                  player.y-=vy;
                        if (player.hitTestObject(wallC))
                                  player.x-=vx;
                                  player.y-=vy;
                        if (player.hitTestObject(wallD))
                                  player.x-=vx;
                                  player.y-=vy;
                        if (player.hitTestObject(wallE))
                                  player.x-=vx;
                                  player.y-=vy;
                        if (player.hitTestObject(wallF))
                                  player.x-=vx;
                                  player.y-=vy;
                        if (player.hitTestObject(wallG))
                                  player.x-=vx;
                                  player.y-=vy;
                        if (player.hitTestObject(wallH))
                                  player.x-=vx;
                                  player.y-=vy;
                        function fl_MouseClickHandler(event:MouseEvent):void
                        score++;
                        aaa.text=String(score);
                        trace("Mouse clicked");

    instead of:
    if (player.hitTestObject(wall))
    use:
    if(player&&wall){
    if (player.hitTestObject(wall))

  • Two life events on the same date

    Can you please advise how to handle two life events on a single date.

    Dharmesh
    If you have two life events on one date then you have to void the one manually and process the other. Also you can define collapsing life events and setup which life events will take precedence.
    You can use following document to setup collapsing life events
    Oracle HRMS Compensation and Benefits Management Guide (US)
    [http://download.oracle.com/docs/cd/B40089_10/current/acrobat/120hrcbusug.pdf]

  • How to cancel the event in Item Adding and display javascript message and prevent the page from redirecting to the SharePoint Error Page?

    How to cancel the event in Item Adding without going to the SharePoint Error Page?
    Prevent duplicate item in a SharePoint List
    The following Event Handler code will prevent users from creating duplicate value in "Title" field.
    ItemAdding Event Handler
    public override void ItemAdding(SPItemEventProperties properties)
    base.ItemAdding(properties);
    if (properties.ListTitle.Equals("My List"))
    try
    using(SPSite thisSite = new SPSite(properties.WebUrl))
    SPWeb thisWeb = thisSite.OpenWeb();
    SPList list = thisWeb.Lists[properties.ListId];
    SPQuery query = new SPQuery();
    query.Query = @"<Where><Eq><FieldRef Name='Title' /><Value Type='Text'>" + properties.AfterProperties["Title"] + "</Value></Eq></Where>";
    SPListItemCollection listItem = list.GetItems(query);
    if (listItem.Count > 0)
    properties.Cancel = true;
    properties.ErrorMessage = "Item with this Name already exists. Please create a unique Name.";
    catch (Exception ex)
    PortalLog.LogString("Error occured in event ItemAdding(SPItemEventProperties properties)() @ AAA.BBB.PreventDuplicateItem class. Exception Message:" + ex.Message.ToString());
    throw new SPException("An error occured while processing the My List Feature. Please contact your Portal Administrator");
    Feature.xml
    <?xml version="1.0" encoding="utf-8"?>
    <Feature Id="1c2100ca-bad5-41f5-9707-7bf4edc08383"
    Title="Prevents Duplicate Item"
    Description="Prevents duplicate Name in the "My List" List"
    Version="12.0.0.0"
    Hidden="FALSE"
    Scope="Web"
    DefaultResourceFile="core"
    xmlns="http://schemas.microsoft.com/sharepoint/">
    <ElementManifests>
    <ElementManifest Location="elements.xml"/>
    </ElementManifests>
    </Feature>
    Element.xml
    <?xml version="1.0" encoding="utf-8" ?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <Receivers ListTemplateId="100">
    <Receiver>
    <Name>AddingEventHandler</Name>
    <Type>ItemAdding</Type>
    <SequenceNumber>10000</SequenceNumber>
    <Assembly>AAA.BBB, Version=1.0.0.0, Culture=neutral, PublicKeyToken=8003cf0cbff32406</Assembly>
    <Class>AAA.BBB.PreventDuplicateItem</Class>
    <Data></Data>
    <Filter></Filter>
    </Receiver>
    </Receivers>
    </Elements>
    Below link explains adding the list events.
    http://www.dotnetspark.com/kb/1369-step-by-step-guide-to-list-events-handling.aspx
    Reference link:
    http://msdn.microsoft.com/en-us/library/ms437502(v=office.12).aspx
    http://msdn.microsoft.com/en-us/library/ff713710(v=office.12).aspx
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

    Recommended way for binding the list event handler to the list instance is through feature receivers.
    You need to create a feature file like the below sample
    <?xmlversion="1.0"encoding="utf-8"?>
    <Feature xmlns="http://schemas.microsoft.com/sharepoint/"
    Id="{20FF80BB-83D9-41bc-8FFA-E589067AF783}"
    Title="Installs MyFeatureReceiver"
    Description="Installs MyFeatureReceiver" Hidden="False" Version="1.0.0.0" Scope="Site"
    ReceiverClass="ClassLibrary1.MyFeatureReceiver"
    ReceiverAssembly="ClassLibrary1, Version=1.0.0.0, Culture=neutral,
    PublicKeyToken=6c5894e55cb0f391">
    </Feature>For registering/binding the list event handler to the list instance, use the below sample codeusing System;
    using Microsoft.SharePoint;
    namespace ClassLibrary1
        public class MyFeatureReceiver: SPFeatureReceiver
            public override void FeatureActivated(SPFeatureReceiverProperties properties)
                SPSite siteCollection = properties.Feature.Parent as SPSite;
                SPWeb site = siteCollection.AllWebs["Docs"];
                SPList list = site.Lists["MyList"];
                SPEventReceiverDefinition rd = list.EventReceivers.Add();
                rd.Name = "My Event Receiver";
                rd.Class = "ClassLibrary1.MyListEventReceiver1";
                rd.Assembly = "ClassLibrary1, Version=1.0.0.0, Culture=neutral,
                    PublicKeyToken=6c5894e55cb0f391";
                rd.Data = "My Event Receiver data";
                rd.Type = SPEventReceiverType.FieldAdding;
                rd.Update();
            public override void FeatureDeactivating(SPFeatureReceiverProperties properties)
                SPSite sitecollection = properties.Feature.Parent as SPSite;
                SPWeb site = sitecollection.AllWebs["Docs"];
                SPList list = site.Lists["MyList"];
                foreach (SPEventReceiverDefinition rd in list.EventReceivers)
                    if (rd.Name == "My Event Receiver")
                        rd.Delete();
            public override void FeatureInstalled(SPFeatureReceiverProperties properties)
            public override void FeatureUninstalling(SPFeatureReceiverProperties properties)
    }Reference link: http://msdn.microsoft.com/en-us/library/ff713710(v=office.12).aspxOther ways of registering the list event handlers to the List instance are through code, stsadm commands and content types.
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

  • How to Access Custom Event using AS3?

    Hi All,
    Maybe it's that its Monday morning and my brain is still foggy, but I can't seem to figure out how to set custom events using AS3.
    I have a custom GridRow itemRenderer, and have declared the event using the appropriate metatags.
    Then I create the GR item dynamically using AS3 instantiation, but the event is not available for selection in the intellisense drop-down.
    Let's take the following as an example:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Grid
         xmlns:mx="http://www.adobe.com/2006/mxml"
         xmlns:renderers="com.brassworks.renderers.*"
         creationComplete="componentInit();"
    >
         <mx:Script>
              <![CDATA[
                   private function componentInit():void
                        newRow     :MyRow     = new MyRow();
                        //newRow.myEvent is not an available option to set
              ]]>
         </mx:Script>
    </mx:Grid>
    Then the itemRenderer:
    <?xml version="1.0" encoding="utf-8"?>
    <GridRow
         xmlns:mx="http://www.adobe.com/2006/mxml"
         xmlns:classes="com.brassworks.components.classes.*"
         creationComplete="componentInit();"
    >
         <mx:Metadata>
              [Event(name="myEvent", type="flash.events.Event")]
         </mx:Metadata>
         <mx:Script>
              <![CDATA[
                   private function itemChanged(event:Event):void
                   Alert.show("test");
                   this.dispatchEvent(new Event("myEvent"));
              ]]>
         </mx:Script>
         <mx:GridItem>
              <mx:TextInput
                   change="itemChanged"
              />
         </mx:GridItem>
    </GridRow>
    How do I go about setting the handler method for custom events on instantiated items? Do I need to do this via the AddEventListener() method? Does this mean that events aren't exposed in ActionScript like they are in MXML? (In MXML all I have to do is <MyRow myEvent="handler(event)" />.)
    Thanks!
    -Mike

    Yes, I you need to do this via the addEventListener() method.
    myRow.addEventListener( "myEvent", myHandler );
    I hope that helps.
    Ben Edwards

  • How to consume key events

    I would like to create a subclass of TextBox that only allows numeric input. My idea was to provide my own onKeyType() handler and consume any key events that do not correspond to digits. However, I can't find any way to consume key events from further processing. How do I do this?
    Are there any other suggestions how to accomplish the task of providing your own filter concerning valid key input?
    /Bengt

    I also wanted a kind of validators for the TextBox class of JavaFX. So I've tried solving the problem using the SwingTextField class and some Java APIs. The following is my code for a SwingTextField accepting only digits, but I do want it to be much simpler.
    import java.awt.AWTEvent;
    import java.awt.event.AWTEventListener;
    import java.awt.event.KeyEvent;
    import java.awt.Toolkit;
    import javafx.ext.swing.SwingTextField;
    import javafx.scene.Scene;
    import javafx.stage.Stage;
    import javax.swing.JComponent;
    class DigitKeyEventHookListener extends AWTEventListener {
        public-init var  source:JComponent;
        public  override function  eventDispatched( event:AWTEvent):Void {
            if (event.getSource().equals(source)) {
                var keyEvent : KeyEvent = event as KeyEvent;
                var keyCharacter = keyEvent.getKeyChar();
                var isDigit = false;
                var code = keyEvent.getKeyCode();
               if ((KeyEvent.VK_0 <= keyCharacter) and (keyCharacter <= KeyEvent.VK_9)) {
                       isDigit = true;
                if ((code ==KeyEvent.VK_DELETE) or (code ==KeyEvent.VK_BACK_SPACE)) {
                    isDigit = true;
                if ((code ==KeyEvent.VK_LEFT) or (code ==KeyEvent.VK_RIGHT)) {
                    isDigit = true;
               if (not isDigit) {
                    keyEvent.consume();
    function createSwingTextField() : SwingTextField{
        var field = SwingTextField {
            columns:12
        var listener =  DigitKeyEventHookListener{
            source: field.getJTextField()
        Toolkit.getDefaultToolkit().addAWTEventListener(listener, AWTEvent.KEY_EVENT_MASK);
        return field;
    Stage {
        title: "Digit Box"
        width: 200
        height: 80
        scene: Scene {
            content: createSwingTextField()
    }

  • AMT - device in 'detected' status

    Hello everyone,
    I'm trying to get Out of Band working, and the one machine that I'm testing for this purpose seems to be stuck at 'detected' status. I gone over the configuration steps twice, but I can't seem to pinpoint what I've missed.
    Here's the log from amtopmgr.log file (this portion of the log is when I perform a "Discover AMT Status" task.
    Being my first time trying to get Out of Band working, I really don't know where to start my troubleshooting efforts here.
    ==============
    AMT Discovery Worker: Wakes up to process instruction files
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    AMT Discovery Worker: Wait 3600 seconds...
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    AMT Discovery Worker: Wakes up to process instruction files
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    AMT Discovery Worker: Reading Discovery Instruction C:\Program Files\Microsoft Configuration Manager\inboxes\amtopmgr.box\disc\{7D90B636-860E-4509-9101-748A98871927}.RDC...
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    AMT Discovery Worker: Execute query exec AMT_GetThisSitesNetBiosNames NULL, '16777231', 'LAB'
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    AMT Discovery Worker: CSMSAMTDiscoveryWorker::RetrieveInfoFromResource - Found machine X1212 (X1212.GLLAB2.COM), ID: 16777231 IP: 172.16.16.69 from Resource 16777231.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    AMT Discovery Worker: Execute query exec AMT_GetAMTMachineProperties 16777231
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    Discovery will use ip resolved from netbios:
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    172.16.16.69 SMS_AMT_OPERATION_MANAGER
    12/13/2011 1:53:47 PM 4528 (0x11B0)
    AMT Discovery Worker: Execute query exec AMT_GetProvAccounts
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    AMT Discovery Worker: Finish reading discovery instruction C:\Program Files\Microsoft Configuration Manager\inboxes\amtopmgr.box\disc\{7D90B636-860E-4509-9101-748A98871927}.RDC
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    AMT Discovery Worker: Parsed 1 instruction files
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    AMT Discovery Worker: Send task X1212.GLLAB2.COM to completion port
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    General Worker Thread Pool: Current size of the thread pool is 1
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    AMT Discovery Worker: 1 task(s) are sent to the task pool successfully.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    STATMSG: ID=7203 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_AMT_OPERATION_MANAGER" SYS=SCCM2012-RC1.GLLAB2.COM SITE=LAB PID=2256 TID=4528 GMTDATE=Tue Dec 13 18:53:47.749 2011 ISTR0="1" ISTR1="0" ISTR2="0" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8=""
    ISTR9="" NUMATTRS=0 SMS_AMT_OPERATION_MANAGER
    12/13/2011 1:53:47 PM 4528 (0x11B0)
    AMT Discovery Worker: There are 1 tasks in pending list
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    AMT Discovery Worker: Wait 20 seconds...
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    AMT Discovery Worker: Wakes up to process instruction files
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    AMT Discovery Worker: There are 1 tasks in pending list
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    AMT Discovery Worker: Wait 20 seconds...
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    4528 (0x11B0)
    General Worker Thread Pool: Work thread 3188 started
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    3188 (0x0C74)
    Discover X1212 using IP address 172.16.16.69
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    3188 (0x0C74)
    DoPingDiscoveryForAMTDevice succeeded. SMS_AMT_OPERATION_MANAGER
    12/13/2011 1:53:47 PM 3188 (0x0C74)
    Error 0x80090325 returned by InitializeSecurityContext during follow up TLS handshaking with server.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    3188 (0x0C74)
    **** Error 0x2040b350 returned by ApplyControlToken
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    3188 (0x0C74)
    DoSoapDiscovery failed with user name: admin.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:47 PM
    3188 (0x0C74)
    Error 0x80090325 returned by InitializeSecurityContext during follow up TLS handshaking with server.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    **** Error 0x2040b350 returned by ApplyControlToken
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    DoSoapDiscovery failed with user name: admin.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    Flag iWSManFlagSkipRevocationCheck is not set.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    session params : https://X1212.GLLAB2.COM:16993   ,  11001
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    ERROR: Invoke(get) failed: 80020009argNum = 0
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    Description: The I/O operation has been aborted because of either a thread exit or an application request.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    Error: Failed to get AMT_SetupAndConfigurationService instance.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    DoWSManDiscovery failed with user name: admin.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    Flag iWSManFlagSkipRevocationCheck is not set.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    session params : https://X1212.GLLAB2.COM:16993   ,  11001
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    ERROR: Invoke(get) failed: 80020009argNum = 0
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    Description: The I/O operation has been aborted because of either a thread exit or an application request.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    Error: Failed to get AMT_SetupAndConfigurationService instance.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    DoWSManDiscovery failed with user name: admin.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    Start Kerberos Discovery SMS_AMT_OPERATION_MANAGER
    12/13/2011 1:53:48 PM 3188 (0x0C74)
    Flag iWSManFlagSkipRevocationCheck is not set.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    session params : https://X1212.GLLAB2.COM:16993   ,  484001
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    ERROR: Invoke(get) failed: 80020009argNum = 0
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    Description: The I/O operation has been aborted because of either a thread exit or an application request.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    Error: Failed to get AMT_SetupAndConfigurationService instance.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    DoKerberosWSManDiscovery failed. SMS_AMT_OPERATION_MANAGER
    12/13/2011 1:53:48 PM 3188 (0x0C74)
    Flag iWSManFlagSkipRevocationCheck is not set.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    session params : https://172.16.16.69:16993   ,  15001
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    ERROR: Invoke(get) failed: 80020009argNum = 0
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    Description: The I/O operation has been aborted because of either a thread exit or an application request.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    Error: Failed to get AMT_SetupAndConfigurationService instance.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    DoWSManDiscovery failed with user name: admin.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    Flag iWSManFlagSkipRevocationCheck is not set.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    session params : https://172.16.16.69:16993   ,  15001
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    ERROR: Invoke(get) failed: 80020009argNum = 0
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    Description: The I/O operation has been aborted because of either a thread exit or an application request.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    Error: Failed to get AMT_SetupAndConfigurationService instance.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    DoWSManDiscovery failed with user name: admin.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    Discovery to IP address 172.16.16.69 succeed. AMT status is 1.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    CSMSAMTDiscoveryTask::Execute, discovery to X1212 succeed. AMT status is 1.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    CSMSAMTDiscoveryTask::Execute - DDR written to C:\Program Files\Microsoft Configuration Manager\inboxes\auth\ddm.box
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    CStateMsgReporter::DeliverMessages - Queued message: TT=1201 TIDT=0 TID='Unspecified' SID=10 MUF=0 PCNT=1, P1='X1212.GLLAB2.COM' P2='' P3='' P4='' P5=''
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    CStateMsgReporter::DeliverMessages - Created state message file: C:\Program Files\Microsoft Configuration Manager\inboxes\auth\statesys.box\incoming\r6k9m27y.SMX
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    General Worker Thread Pool: Succeed to run the task X1212.GLLAB2.COM. Remove it from task list.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    General Worker Thread Pool: Work thread 3188 has been requested to shut down.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    General Worker Thread Pool: Work thread 3188 exiting.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    3188 (0x0C74)
    General Worker Thread Pool: Current size of the thread pool is 0
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:53:48 PM
    2864 (0x0B30)
    AMT Discovery Worker: Wakes up to process instruction files
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:54:07 PM
    4528 (0x11B0)
    AMT Discovery Worker: Wait 3600 seconds...
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:54:07 PM
    4528 (0x11B0)
    AMT Maintenance Worker: Wakes up to process instruction files
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:59:50 PM
    2808 (0x0AF8)
    AMT Maintenance Worker: Wait 3600 seconds...
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:59:50 PM
    2808 (0x0AF8)
    AMT Operation Worker: Wakes up to process instruction files
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:59:50 PM
    1396 (0x0574)
    AMT Operation Worker: Wait 3600 seconds...
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:59:50 PM
    1396 (0x0574)
    AMT WOL Worker: Wakes up to process instruction files
    SMS_AMT_OPERATION_MANAGER 12/13/2011 1:59:50 PM
    3848 (0x0F08)
    AMT WOL Worker: Wait 3600 seconds... SMS_AMT_OPERATION_MANAGER
    12/13/2011 1:59:50 PM 3848 (0x0F08)
    Succeed to add new health check task to pending list.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    6128 (0x17F0)
    AMT Provision Worker: Wakes up to process instruction files
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    6128 (0x17F0)
    AMT Provision Worker: Send task  to completion port
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    6128 (0x17F0)
    General Worker Thread Pool: Current size of the thread pool is 1
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    6128 (0x17F0)
    AMT Provision Worker: 1 task(s) are sent to the task pool successfully.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    6128 (0x17F0)
    General Worker Thread Pool: Work thread 4952 started
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    4952 (0x1358)
    Test https://SCCM2012-RC1.GLLAB2.COM:443/EnrollmentService/AmtEnrollmentService.svc
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    4952 (0x1358)
    [EnrollmentWrapper]: SCCMCertCredentials - finding self signed sms cert by thumbprint
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    4952 (0x1358)
    [EnrollmentWrapper]: FindCertificate - finding in LocalMachine, store Sms, find type FindByThumbprint, validOnly = False
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    4952 (0x1358)
    [EnrollmentWrapper]: FindCertificate - there are 6 certs in the specified store
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    4952 (0x1358)
    [EnrollmentWrapper]: FindCertificate - Found certs via FindByThumbprint, count = 1
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    4952 (0x1358)
    [EnrollmentWrapper]: FindCertificate - cert[0].FriendlyName = Site System Identification Certificate
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    4952 (0x1358)
    [EnrollmentWrapper]: FindCertificate - cert[0].Subject = CN=Site System Identification
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    4952 (0x1358)
    [EnrollmentWrapper]: FindCertificate - cert[0].Issuer = CN=Site System Identification
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    4952 (0x1358)
    STATMSG: ID=7203 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_AMT_OPERATION_MANAGER" SYS=SCCM2012-RC1.GLLAB2.COM SITE=LAB PID=2256 TID=6128 GMTDATE=Tue Dec 13 19:07:12.175 2011 ISTR0="1" ISTR1="0" ISTR2="0" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8=""
    ISTR9="" NUMATTRS=0 SMS_AMT_OPERATION_MANAGER
    12/13/2011 2:07:12 PM 6128 (0x17F0)
    AMT Provision Worker: There are 1 tasks in pending list
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    6128 (0x17F0)
    AMT Provision Worker: Wait 20 seconds...
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:12 PM
    6128 (0x17F0)
    TestEnrollmentService succeed. SMS_AMT_OPERATION_MANAGER
    12/13/2011 2:07:27 PM 4952 (0x1358)
    STATMSG: ID=7220 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_AMT_OPERATION_MANAGER" SYS=SCCM2012-RC1.GLLAB2.COM SITE=LAB PID=2256 TID=4952 GMTDATE=Tue Dec 13 19:07:27.783 2011 ISTR0="" ISTR1="" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8=""
    ISTR9="" NUMATTRS=0 SMS_AMT_OPERATION_MANAGER
    12/13/2011 2:07:27 PM 4952 (0x1358)
    General Worker Thread Pool: Succeed to run the task . Remove it from task list.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:27 PM
    4952 (0x1358)
    General Worker Thread Pool: Work thread 4952 has been requested to shut down.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:27 PM
    4952 (0x1358)
    General Worker Thread Pool: Work thread 4952 exiting.
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:27 PM
    4952 (0x1358)
    General Worker Thread Pool: Current size of the thread pool is 0
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:27 PM
    2864 (0x0B30)
    AMT Provision Worker: Wakes up to process instruction files
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:32 PM
    6128 (0x17F0)
    AMT Provision Worker: Wait 3600 seconds...
    SMS_AMT_OPERATION_MANAGER 12/13/2011 2:07:32 PM
    6128 (0x17F0)
    =============
    Here's a portion of the client's oobmgmt.log file:
    BEGIN oobmgmt
    12/13/2011 12:16:33 PM 1076 (0x0434)
    Retrying to activate the device. oobmgmt
    12/13/2011 12:16:33 PM 1076 (0x0434)
    Get CoreVersion: 7.1.20 oobmgmt
    12/13/2011 12:16:33 PM 1076 (0x0434)
    New OTP generated oobmgmt
    12/13/2011 12:16:33 PM 1076 (0x0434)
    This version supports wireless. oobmgmt
    12/13/2011 12:16:33 PM 1076 (0x0434)
    Get wired ip: 172.16.16.69 oobmgmt
    12/13/2011 12:16:33 PM 1076 (0x0434)
    Raising event:
    [SMS_CodePage(437), SMS_LocaleID(1033)]
    instance of SMS_OOBMgmt_StartConfig_Success
    ClientID = "GUID:00189f1a-de20-4ca4-b2d1-42a5d370e423";
    ConfigurationStartTime = "2011-12-13 12:16:34";
    DateTime = "20111213171634.066000+000";
    MachineName = "X1212";
    ProcessID = 2312;
    SiteCode = "LAB";
    ThreadID = 1076;
    oobmgmt
    12/13/2011 12:16:34 PM 1076 (0x0434)
    Successfully activated the device. oobmgmt
    12/13/2011 12:16:34 PM 1076 (0x0434)
    END oobmgmt
    12/13/2011 12:16:34 PM 1076 (0x0434)
    ON SCHEDULE OOBMgmt
    12/13/2011 1:16:33 PM 1300 (0x0514)
    BEGIN oobmgmt
    12/13/2011 1:16:33 PM 1300 (0x0514)
    Retrying to activate the device. oobmgmt
    12/13/2011 1:16:33 PM 1300 (0x0514)
    Get CoreVersion: 7.1.20 oobmgmt
    12/13/2011 1:16:33 PM 1300 (0x0514)
    Resending last OTP oobmgmt
    12/13/2011 1:16:33 PM 1300 (0x0514)
    This version supports wireless. oobmgmt
    12/13/2011 1:16:33 PM 1300 (0x0514)
    Get wired ip: 172.16.16.69 oobmgmt
    12/13/2011 1:16:33 PM 1300 (0x0514)
    Successfully activated the device. oobmgmt
    12/13/2011 1:16:33 PM 1300 (0x0514)
    END oobmgmt
    12/13/2011 1:16:33 PM 1300 (0x0514)

    I made some changes on the desktop end - changed the MBEx password from 'admin' (which it was giving me errors as well), to my own password. I added this new user/password to SCCM, MEBx account configuration. I ran another 'Discover AMT Status' on the device;
    I review the logs (got the same errors as mentioned above), but this time I went to check the MBEx settings and I actually found some information in it that must have been setup by SCCM (see screenshot).
    That was my only change to the desktop (just a password change).

  • How to create a event to display records depend on selection ofdropdownlist

    BSP
    how to create a event to display records depend on selection of dropdownlist box,
    Using BHTML,
    thank you,
    regards,
    jagrut bharatkumar shukla

    1) Copy this script to the code
    <script type="text/javascript">
    function displayVacationDates() {   
        for (var i=0; i < document.forms[0].Status.length; i++) {
            if (document.forms[0].Status[i].checked && document.forms[0].Status[i].value=='Vacation'){
              document.getElementById('startDateRow').style.visibility='visible';
              document.getElementById('endDateRow').style.visibility='visible';
             if (document.forms[0].Status[i].checked && !(document.forms[0].Status[i].value=='Vacation')){
             document.getElementById('startDateRow').style.visibility='hidden';
              document.getElementById('endDateRow').style.visibility='hidden';
    </script>
    2) Set initial style to 'hidden'
    <tr id="startDateRow" style="visibility:hidden">
    <td align="left"><blockquote>
      <p><span class="style16 style8"><strong>Start date:
      </strong></span></p>
    </blockquote>                 </td>
    <td align="left"><script>DateInput('VacStart', true, 'DD-MON-YYYY')</script></td>
    </tr>
    <tr id="endDateRow" style="visibility:hidden">
    <td align="left"><blockquote>
      <p><span class="style16 style8"><strong>End date:
      </strong></span></p>
    </blockquote>                      </td>
    <td align="left"><script>DateInput('VacEnd', true, 'DD-MON-YYYY')</script></td>
    </tr>
    3) Call the display script
    <input name="Status" type="radio" value="In the Field" onclick="displayVacationDates()">
    <input name="Status" type="radio" value="Vacation" onclick="displayVacationDates()">
    <input name="Status" type="radio" value="Sick day" onclick="displayVacationDates()">
    <input name="Status" type="radio" value="Admin Day" onclick="displayVacationDates()">
    <input name="Status" type="radio" value="DSR Ride Along" onclick="displayVacationDates()">
    <input name="Status" type="radio" value="ServiceCall" onclick="displayVacationDates()">

  • How does the invoke event for an Air iOS app work?

    Hi,
    If my app gets invoked for the first time the invoke event isn't fired.
    If the app gets invoked for the second time it is working.
    How to get the event.arguments[0] every time the app gets opened/invoked?
    NativeApplication.nativeApplication.addEventListener(InvokeEvent.INVOKE, onAppInvoke);
    function onAppInvoke(event:InvokeEvent):void {
    trace("INVOKE ARGS: "+event.arguments[0]);
    Thanks

    Helo fideld, officially Adobe Air don't support Danish language. But I may help you.
    1. Download this file https://www.dropbox.com/s/ytx44mxzdgmlfq2/adt.jar
    2. Go to Air SDK\lib\ folder and backup your original adt.jar
    3. Copy my one from step 1
    You may understand that patched adt.jar was produced by me and not by Adobe.
    I just done this for you as a part of community friendly support. It's allow to add "da" language.
    1. Open your *-app.xml
    2. Add lang="da"
    3. Go to supportedLanguages in XML and add "da" also there so it's will be like "en fr de da".
    Patched ADT was made from original latest 4.0.0.1619 and you must use http://labs.adobe.com/downloads/air.html 4.0.0.1619 before apply this patch
    This works well, just tested!

  • How to consume ETW events data in C#

    Hi,
    I am using Microsoft.BizTalk.CAT.BestPractices.Framework for tracing data in Custom Pipeline Components, Maps and Orchestrations.
    I want to capture events data in Real-time by using C# code.
    Can someone help how can i capture events data in c#?
    Thanks,
    Shahzad

    Hi Shahzad,
    When you use the Microsoft BizTalk CAT Teams logging framework for instrumenting your BizTalk solution then
    it will write events to the Windows ETW sub system. You need to write a component,lets call it as a monitor that will capture these events and write to database. There is an excellent project in codeplex titled 'Testing inside BizTalk using ETW Tracing'.See
    here .
    It is basically a console app that detect events published to ETW by the BizTalk logging framework and then
    publish them onto an MSMQ queue .See the source code for this project and you can implement the same in your C# component.
    Regards,
    Sajith C P Nair
    Please mark as answer if this helps

Maybe you are looking for

  • Using mini-DVI to VGA adapter to Samsung display

    I have 2009 late model of mac mini, The text on display looks washed out, not clear or sharp at all from day one, I thought it was the old model of monitor, tried the same cable to another monitor on another computer, SAME. so I thought the problem c

  • How to get the specific filename

    Hi.. I want to get the specific file where the filename contains current date like "asd.11.20051226.03.dat". Then, i want to write the filename to a text file. Now, i only know how to get the list of file in a specific directory& write the whole list

  • Connect MacBook to Mac Mini

    I bought my MacBook a year ago to replace my desktop PC and have been extremely satisfied with how easy it is to carry around campus. However, I've recently gotten more involved in gaming and the MacBook's graphics card is having a hard time keeping

  • Conventional "sharpen after resizing" workflow?

    Conventional PS wisdom has been to resize your image to the desired output size and then sharpen (optimizing for the new size) as the last step. When I saw that explicitly doing that workflow was impossible in Aperture (which mandates doing all your

  • Cant reinstall cs5 to my new macbook pro. the disk is keep ejecting out.

    Can't reinstall cs5 to my new macbook pro. the disk is keep ejecting out.