Auditing Event Type problem

Hi Experts,
We are on BO 4.1 SP2 (Windows) and are using version 4.0 of the Auditing universe (UNX).
I need to create an Audit report that lists the reports our Professional Licence Holders have created in Web Intelligence (By clicking 'New' in Webi). This is part of our attempt to make sure that people who have been given these licences are actually using them to create content for their users!
My problem is that I don't know how to ensure that I am only listing reports that are manually created by the business user. I don't want to list reports that are created by system users or processes, such as the backup files created in a user's temporary storage folder, .../~WebIntelligence/.
I don't how to exclude those automatically generated ones. Can someone explain how to do it? I tried excluding the
/~WebIntelligence/ folder on the OBJECT FOLDER PATH object, but it didn't work. Here is my current query below. Would also appreciate it if someone can explain what is covered in each event type. I couldn't find anything on this.
Thanks,
Andrew

Hi Andrew,
I think you must change the operator in condition with "Object Folder path"
Instead of "Not equal to" you have to use "Not like"
Regards,
Carlos

Similar Messages

  • Define event types in Customizing and restart the transaction.

    how to define event to restart the transaction in BADI
    I have given error message in badi. it is giving
    No SAP Event Management communication for events; no event types def
        Message no. /SAPTRX/ASC084
    Diagnosis
        You have not defined event types for the business process types.
        therefore not possible to communicate event data to SAP Event
        Management.
    System response
        The communication of event data is aborted.
    Procedure
        Define event types in Customizing and restart the transaction.

    Hi Kevin,
    What DataSource does your testalias refer to?
    - If it is a custom DataSource, you must have created this custom DataSource also.
    - If it is the default DataSource, you shouldn't have this problem in general...
    In either case, you can try deploying your DataSource and/or DataSource alias together with your application:
    http://help.sap.com/saphelp_nwce10/helpdata/en/45/07d2eeea3e0485e10000000a155369/frameset.htm
    http://help.sap.com/saphelp_nwce10/helpdata/en/45/c82cd460a42e96e10000000a155369/frameset.htm
    I hope that helps!
    Regards,
    Yordan

  • [CS3][JS] beforeClose event listener problem

    Hi all,
    I want my script to do the following: every time when a user closes a document, I wish for "Check Spelling..." dialog box to show up and after the user finishes spell-checking, the document should be closed.
    But instead, if I have one document open, I get an error: Error Number: 53762, Error String: Action is not enabled, and if more than one document open, the dialog opens in the wrong document.
    As far as I understand, the problem is that the menu action is invoked AFTER the document has already been closed – it is quite clear that opening the dialog with no documents open makes no sense – that’s why the error occurs.
    Does anybody know how to solve this? Why beforeClose event type doesn’t correspond to its name? The scripting guide states: “beforeClose – Appears after a close-document request is made but before the document is closed.”
    Here is the script:
    #targetengine "session"
    main();
    function main(){
       var myEventListener = app.addEventListener("beforeClose", myCheckSpelling, false);
    function myCheckSpelling(myEvent){
       app.menuActions.item("Check Spelling...").invoke();
    Kasyan

    Thank you Ole.
    I've been at it for about 6 months.
    I am providing 3 modules. All modules are in 1 folder. That's why the ScriptPath & Department variables.
    FYI: app.pdfPlacePreferences.pageNumber was used solved issues with InEvenScript plugin for CS2. That plugin was NOT handling a loop call. To solve it, I've used a variable to turn ON & OFF the handler. "Import" is used in the OPEN script, and that will execute the event!
    1) Startup. I trimmed it for you but I kept the orignal OPEN-Event disabled. See PrePressEVENT.
    2) PrePressTEST. It's a trimmed version of the actual PrePressOPEN. But it makes InDesign crash. FYI: PrePressOPEN works perfectly when triggered manualy (Script Panel).
    3) PrepressEVENT. Disabled in Startup, I am using this one so I can debug the EVENT and do actual work at the same time. Until it crashed of course.
    The window.add() is what makes it crash. Without it, fine. But if removed myDoc = app.activeDocument points to the wrong one!
    Thank you in advance. Hope this is clear enough.
    Module STARTUP
    =====================
    #target indesign
    #targetengine "session"
    app.scriptPreferences.version = 5.0;
    //******************** BEGIN Main ********************
    var myScriptName = app.activeScript.fsName;
    var myScriptPath = app.activeScript.path;
    var myErrorStyle = "*****Error while Updating!"
    var myMsgStyle = "*****No UpDate! (Delete to Reset)";
    var myDept = "PrePress";
    //*** Initialize SCRIPT Variables
    app.scriptArgs.clear();
    app.scriptArgs.set("Department", "PrePress");
    app.scriptArgs.set("ErrorStyle", "*****Error while Updating!");
    app.scriptArgs.set("MsgStyle", "*****No UpDate! (Delete to Reset)");
    app.scriptArgs.set("Event_Path", myScriptPath); //***Path to InEventScript Plug-In
    app.scriptArgs.set("Event_Test", myScriptPath + "/"+myDept+"TEST.jsx"); //*** Debugging MODULE
    app.scriptArgs.set("Event_Open", myScriptPath + "/"+myDept+"OPEN.jsx");
    app.scriptArgs.set("Event_Close", myScriptPath + "/"+myDept+"CLOSE.jsx");
    app.scriptArgs.set("Event_Copy", myScriptPath + "/"+myDept+"COPY.jsx");
    app.scriptArgs.set("Event_Clean", myScriptPath + "/"+myDept+"CLEAN.jsx");
    app.scriptArgs.set("Event_Print", myScriptPath + "/"+myDept+"PRINT.jsx");
    app.scriptArgs.set("Event_App", myScriptPath + "/"+myDept+"APPPreferences.jsx");
    app.scriptArgs.set("Event_Doc", myScriptPath + "/"+myDept+"DOCPreferences.jsx");
    //*** Initialize GLOBAL Variables
    app.pdfPlacePreferences.pageNumber = 1; //***Flag to PREVENT InEventScript Plug-In RECURSIVE (Loop)
    SkipWRDS = new Array;
    //*** REMOVE all EVENTS
    app.eventListeners.everyItem().remove();
    //******************** EVENTS ********************
    //app.addEventListener("afterOpen", EventOpen, false); //STILL INDESIGN CRASH with OPEN !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    var tmp = "List of Events loaded\n----------------------\n";
    var myEvents = app.eventListeners;
    for (var cpt = 0; cpt < myEvents.length; cpt++)
    tmp += "Event : " + myEvents[cpt].parent.name + "\tType: " + myEvents[cpt].eventType + "\n";
    //alert ("\tPREPRESS Area\n\t\==========\n\n"+tmp);
    alert ("\tTEST Area\n\t=======\n\n"+tmp);
    //******************** END Main ********************
    //****************** FUNCTIONS Definitions ********************
    function EventOpen (itsEvent)
    var myExeSrcFile = new File (app.scriptArgs.get("Event_Open"));
    if (myExeSrcFile.exists)
    if (app.pdfPlacePreferences.pageNumber == 99999)
    app.pdfPlacePreferences.pageNumber = 1; //***Flag to PREVENT InEventScript Plug-In RECURSIVE (Loop)
    else
    app.pdfPlacePreferences.pageNumber = 1; //***Flag to PREVENT InEventScript Plug-In RECURSIVE (Loop)
    // itsEvent.preventDefault();
    // itsEvent.stopPropagation();
    itsEvent.parent.windows.add(); //*** Doc. has no Window!!!
    myExeSrcFile.open ('r:(read)');
    app.doScript(myExeSrcFile, ScriptLanguage.javascript);
    myExeSrcFile.close();
    else
    alert ("Error! Missing File:\n\n" + myExeSrcFile.fsName);
    return;
    Module PrePressTEST
    =====================
    #target indesign
    //#include "PrePressLIBRARY.jsxinc"
    app.scriptPreferences.version = 5.0;
    //******************** BEGIN Main ********************
    if (app.modalState) //*** Alert already displayed
    exit();
    if (app.pdfPlacePreferences.pageNumber == 99999)
    app.pdfPlacePreferences.pageNumber = 1; //***Flag to PREVENT InEventScript Plug-In RECURSIVE (Loop)
    exit();
    if (app.documents.length == 0)
    exit();
    var myDoc = app.activeDocument;
    //*** ALL DOCUMENTS PREFERENCE
    myDoc.textPreferences.showInvisibles = true;
    myDoc.viewPreferences.showRulers = true;
    myDoc.layoutWindows[0].transformReferencePoint = AnchorPoint.centerAnchor;
    alert (myDoc.name);
    //******************** END Main ********************
    Module PrePressEVENT
    =====================
    #target indesign
    #targetengine "session"
    app.scriptPreferences.version = 5.0;
    //******************** BEGIN Main ********************
    var myEvents = app.eventListeners;
    var tmp = "\nList of Events removed\n------------------------\n";
    for (var cpt = myEvents.length-1 ; cpt >= 0 ; cpt--)
    if (myEvents[cpt].eventType == "afterOpen")
    tmp += "Event #" + cpt + "\tType: " + myEvents[cpt].eventType + "\n";
    myEvents[cpt].remove(); //*** There MAY be MORE than 1 instance.
    //******************** EVENTS ********************
    app.addEventListener("afterOpen", EventOpen, false);
    tmp += "\nList of Events loaded\n----------------------\n";
    var myEvents = app.eventListeners;
    for (var cpt = 0; cpt < myEvents.length; cpt++)
    tmp += "Event : " + myEvents[cpt].parent.name + "\tType: " + myEvents[cpt].eventType + "\n";
    alert ("\tTEST Area\n\t=======\n\n"+tmp);
    //******************** END Main ********************
    //****************** FUNCTIONS Definitions ********************
    function EventOpen (itsEvent)
    // app.scriptArgs.set("Event_Listener", itsEvent.parent.toSource()); //*** PASS Argument
    var myExeSrcFile = new File (app.scriptArgs.get("Event_Test"));
    if (myExeSrcFile.exists)
    if (app.pdfPlacePreferences.pageNumber == 99999)
    app.pdfPlacePreferences.pageNumber = 1; //***Flag to PREVENT InEventScript Plug-In RECURSIVE (Loop)
    else
    app.pdfPlacePreferences.pageNumber = 1; //***Flag to PREVENT InEventScript Plug-In RECURSIVE (Loop)
    EventInfo (itsEvent);
    itsEvent.preventDefault();
    itsEvent.stopPropagation();
    itsEvent.parent.windows.add(); //*** Doc. has no Window!!!
    myExeSrcFile.open ('r:(read)');
    app.doScript(myExeSrcFile, ScriptLanguage.javascript);
    myExeSrcFile.close();
    alert ("Executed...");
    else
    alert ("Error! Missing File:\n\n" + myExeSrcFile.fsName);
    return;
    function EventInfo (itsEvent)
    var myString = "Handling Event: " +itsEvent.eventType;
    myString += "\r\rTarget: " + itsEvent.target + " " +itsEvent.target.name;
    myString += "\rCurrent: " +itsEvent.currentTarget + " " + itsEvent.currentTarget.name;
    myString += "\r\rPhase: " + GetPhaseName(itsEvent.eventPhase );
    myString += "\rCaptures: " +itsEvent.captures;
    myString += "\rBubbles: " + itsEvent.bubbles;
    myString += "\r\rCancelable: " +itsEvent.cancelable;
    myString += "\rStopped: " +itsEvent.propagationStopped;
    myString += "\rCanceled: " +itsEvent.defaultPrevented;
    myString += "\r\rTime: " +itsEvent.timeStamp;
    alert(myString);
    function GetPhaseName(myPhase)
    switch(myPhase){
    case EventPhases.atTarget:
    myPhaseName = "At Target";
    break;
    case EventPhases.bubblingPhase:
    myPhaseName = "Bubbling";
    break;
    case EventPhases.capturingPhase:
    myPhaseName = "Capturing";
    break;
    case EventPhases.done:
    myPhaseName = "Done";
    break;
    case EventPhases.notDispatching:
    myPhaseName = "Not Dispatching";
    break;
    return myPhaseName;

  • Transaction/Event type question

    Hi All
    I have a problem with a standard SAP output doc.
    I want a standard goods receipt output (Y001) for movement 202, 222 and 305 but I can currently getting a Goods issue slip (Y002)
    I can see the config in OMB5 that details that an AIOSE Material doc print out will happen for mvt 202,222 and 305.
    I have set up the event type WE to print a Y001(GR slip)
    However, when I do a 202,222 and 305 mvt I get a Goods Issue slip (Y002)
    Any ideas?
    Thanks in advance
    Darren

    Hi,
    I think the movement types that you have specified are having transaction event type as WA which is for Goods issue as in standard SAP. SO the output is coming for goods issue & not for the receipt .

  • Business Events Type Attachment

    Dear Experts,
    Greetings!
    We have been attaching attachments for business event types . Now Business want see how many attachments were attached for a particular event type.
    However we are able to get attachments for a specific event type now problem is how to identify corresponding event type or number of a attchements
    Do we have any standard report to get Business events type with reference attachments... or any thing so.
    Thank you in advance.
    Regards
    Vijay

    Hi Vijay
    One solution is to, you define the attachments such as resource then you can use the resources to get the number of attachment for each event type.
    Regards,
    Shirin

  • Unknown Device Event Type from a router

    Hi,
    I just included my first router within the reporting devices and decided to take a look at the raw events coming in to the MARS. To my surprise I see just two types of events :
    - Generic IOS syslog
    - Unknown Device Event Type
    This second one looks like SNMP because every message begins with "SNMPv2-SMI::enterprises." and seems to contain OIDs and data. Is this normal or am I having some kind of problem? The syslog messages seem to be interpreted correctly; in fact they generated a few incidents when there were some problems on one of the interfaces. I'm worried that the SNMP messages (traps?) are not being understood.
    Thanks for your help,
    Joe

    Yes, I realize that. Unfortunately I don't have access to the router and I'll have to ask what has been configured. I was wondering why MARS sees this data as raw events, if indeed they are SNMP traps. Does MARS listen on port 162 UDP?
    Thanks,
    Joe

  • Solaris 10 with Trusted Extensions - Security Audit Events [short] Descript

    {color:#000000}I know that the security audit events and classes in Solaris 10 have changed when viewing these files: audit_class, audit_event, and audit_control with that of the same files for TSOL8. In order to perform an accurate and acceptable review of the audit events, I need to find either a file or document that provides a short description for each of the audit events within each audit class. Can anyone point me in the right direction or a URL? I have tried to search through the Sun docs and have not yielded any results. {color}

    been there, done that
    The problem is a function of your network definitions. The non-global zones do not have an IP address to match for your global zonename. The error message results from the system established default of the DISPLAY variable failing (DISPLAY=globalzonename:0.0).
    To confirm this, login to the global zone as root and "zlogin -S" to the non-global zone. Once there, the command "netstat -r" should show the IP address of the global zone instead of the expected global zonename. (combine this with a look at your output for "ifconfig -a" within the same non-global zones) Another command you should fail with will be the "getent hosts galaxy". Anyway, if you manually set your DISPLAY variable to the "IP Address" of the globalzonename and execute a "dtterm" ... it should work fine.
    If it does not violate a security policy, I suggest you add the IP address of the global zone to either the /etc/inet/hosts or /etc/inet/ipnodes file within each non-global zone.

  • Description of bus.event type is displayed with incorrect sequence in query

    Dear experts,
    I have created a query in logical database PCH in order to display the description of business event types. The problem is that if the description's length is more than 1 line, the query displayes the lines not in order (e.g. line with tabseqnr 1 first, line with tabseqnr 2 second etc) . It displayes first the line with tabseqnr 2.
    Thank you in advance,
    Vana Sounta

    The first thing you should do with any used computer is to erase the hard drive and install the operating system from original media. If you didn't receive installation discs with the Mac, you'll need to order them from Apple customer service; or, if you want to install a newer OS version than the one the machine shipped with, find a retail disc. The newest version you can run is 10.5, though you might have to add memory. The disc will be hard to find and expensive. Beware of scams, especially on eBay, and above all don't buy the gray discs that came with another Mac. Trying to get a 10.3 system to work with modern websites is probably a waste of time.

  • Javascript error in event handler! Event Type = element [edge.2.0.0.min.js:162]

    I'm doing a little edge project (now in beta version) for my girlfriend (she hates the code), with examples of the animate() method and other functions like setInteval(), but when I run I get the following error in Chrome console:
    Javascript error in event handler! Event Type = element [edge.2.0.0.min.js:162]
    But this library is global for all projects, how is possible that trigger an error?
    Example here:
    https://app.box.com/s/m7nof4al6597gfn47jlu
    Thanks.

    you dont need to import java ease !!
    it's already included in edge animate, remove that yepnope completely your problem will gone
    Zaxist

  • Add-on 9000035 failed with exception; Event Type: 32

    In loadscreen function i have  load the XML form but it shows the error like
    "Add-on 9000035 failed with exception; Event Type: 32"
    But  i will connect to some other db means its working .
    Share your ideas for what is the problem to load the screen in particular DB
    Thanks,
    Helen. S

    Hi,
    You may check this: Add-on 9000002 failed with exception; Event Type: 32
    Thanks,
    Gordon

  • Addon 9000000X failed with exception; Event type X

    Hi SDK experts,
    We had a problem with occurrence intermittent, something that we identified with relation on wait of response of event.
    The problem is:
    My addon need to submit XML files to some webservices. In some cases this files will be send on batches, what causes the response time to events on addon is to much large.
    In this cases, when the response time is much large, the B1 overthrow the addon.
    In compiled mode the message is not shown. This evidence was achieved on debug time.
    The error message is "Addon 90000002 failed with exception; Event type 6"
    The paleative solution was implement a thread to release the event. But threads on addons can be a problem.
    What the opinions?
    We need a solutions. Our addon is a market product for process accounting and fiscal.
    regards.
    Daniel Weissmann

    Hi,
    You may check this thread first:
    Addon Crashes
    Thanks,
    Gordon

  • Portal Runtime Error Executing Edit Skills/Business Event Type Catalogue

    Hi All,
    I have recently migrated MSS business content from an EP6 portal to an EP7 solution, however, I am having problems getting the Edit Skills and Business Event Type functions to work.
    When I attempt to access the iViews, the following error messages are displayed:
    com.sapportals.portal.prt.runtime.PortalRuntimeException: Exception in SAP Application Integrator occured: Application URL ':///sap(ZT1taG52cERaUjJHcG9BMXRBNHhTWTNnLS1JUjJ1MypTWW1SKjJXZXE3M2xtSEFRLS0=)/bc/gui/sap/its/zaw_pz31_ewt' is not valid!
    Please check the protocol and host entries for system 'SAP_R3_HumanResources'.
    com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component
    Component : com.sap.portal.appintegrator.sap.IAC
    Component class : com.sapportals.portal.sapapplication.SAPApplicationIntegratorComponent
    Content pass of Application Integrator failed.
    Component Name: com.sap.portal.appintegrator.sap.IAC,
    Context Name (iView): com.sap.portal.appintegrator.sap.IAC,
    Top Layer: IAC/ITSDetectionLayer,
    Producer ID (FPN): null,
    System Alias: SAP_R3_HumanResources,
    Can anyone decipher this?
    Help is much needed so please feel free to respond
    Thanks,
    Bim.

    Bim, apparently there is a connection error in your ITS service.
    - check that zaw_pz31_ewt service is active, and it is located in "/bc/gui/sap/its/"
    - test the service in the SAP Client that is mapping against Portal
    - check that SAP_R3_HumanResources system is correctly assigned to the new configuration
    If error continues, go to Portal side: create a simple iview based on transaction iview template that calls to PZ31. That is for ensure the transaction is working fine.
    If it's OK, then create another iview but based on ITS iview template that refers to your service and test (maybe a property of your old iview is causing the problem)
    Regards

  • Extending EventDispatcher with dynamic event types

    I'm currently trying to write my own class to extend the
    EventDispatcher class. My goal is to create a Service class which
    acts as a switchboard for incoming socket data. Incoming socket
    data is parsed to create an Event which is Dispatched to the
    appropriate Service object which dispatches the event to any
    registered listeners.
    The problem I'm having is that I'm confused about how to
    handle the event types -- the string parameter which is always
    supplied as the first argument to the addEventListener() function.
    In all the examples I've seen, the value supplied is a class
    constant like MouseEvent.CLICK or VideoEvent.READY. In the case of
    my application, I want the developer to define their own Event
    types without having to go and edit my class files. In other words,
    I'd like to use dynamic event types with my class--maybe something
    like the code I've attached.
    I'm not new to Actionscript but am very new to the
    EventDispatcher class. I'm wondering a bit what that first
    parameter really does in a strict programming sense -- i haven't
    seen it explained all that well in the piles of documentation I've
    read on the Adobe site so I don't really know if I need to define
    my own Event class or what and whether I have to define all those
    possible event type constants/strings in advance or what.
    Any help/advice would be much appreciated.

    I have looked it up here:
    Actionscript
    3.0 Language Reference
    and it just says that the first arg to 'addEventListener' is
    "The type of event" with no further explanation at all.
    I have read this:
    Flash
    Quick Starts: Programming With Actionscript 3.0: Event handling
    It doesn't help much either. It tells me I need the
    appropriate event object which makes me wonder DO I NEED MY OWN
    CLASS? For that first ard to addEventListener, it merely says
    "Substitute the appropriate constant". Given that I want to use
    dynamic types (i think so anyway) that is not helpful information
    either. Every single example on that page uses a class constant for
    event type.
    It links to
    this
    which says "First, the name of the specific event you want to
    respond to. Once again, each event is affiliated with a specific
    class, and that class will have a special value predefined for each
    event--sort of like the event's own unique name, which you should
    use for the first parameter." Still no useful detail about what
    that arg does and the insistence on constants.
    The quick start page also has a link title "Handling Events"
    in Programming ActionScript 3.0 but it links to some documentation
    titled "Working with XML". The only discussion of events in that 10
    or so pages is because some user posted a comment.
    I have read this
    entire
    article which is more helpful than anything in the flash docs
    but still doesn't answer all my questions which (AGAIN) are:
    1) What is the real function of the first argument to
    addEventListener? I have not seen a clear explanation anywhere.
    2) Do I need to write my own Event class?
    3) What about dynamic event types that are defined at
    runtime? Are there any pitfalls or risks that arise from using a
    string instead of a predefined constant as the first param to
    addEventListener() ?
    Please stop telling me to read the documentation. I've been
    reading it for days.

  • AccAD Audit events - explained

    Here is a list of messages
    "DEVICE_ACTIVATED" generated during startup of AccAD device
    "DEVICE_UNACTIVATED" generated during shutdown of AccAD device
    "LINK_ESTABLISHED" every time one AccAD device connected to other - Wed Dec 7 07:23:33 0 INFO LINK_ESTABLISHED INFO_LOGS Link [1001,1002] is operational
    "LINK_CANCELED"  - every time connection between AccAD devices broken - Wed Dec 7 07:23:33 0 INFO LINK_CANCELED INFO_LOGS Link [1001,1002] failed
    "POLICY_DOWNLOAD_FAILURE" AccAD device failed to download policy part from repository
    "POLICY_EXECUTION_FAILURE" AccAD device failed to execute part of policy
    "SERVICEONHOST_NOT_FUNCTIONING" Backend is not available for communication ( communication failure reason is provided ) Tue Dec 6 13:12:32 WARNING SERVICEONHOST_NOT_FUNCTIONING INFO_LOGS Connection timed out 172.16.60.21:80
    "SERVICEONHOST_ACTIVATION_DETECTED" Communication problems with backend was fixed e.g. backend is available again - Tue Dec 6 13:12:40 2011 WARNING SERVICEONHOST_ACTIVATION_DETECTED INFO_LOGS  Restored connection to server 172.16.60.21:80
    "SRM_CONNECTOR_NOT_FOUND_ERROR" Reported each time when for particular service connector not found ( connector is a part of AccAD that creates sockets for communication with backend
    "SRM_HTTP_AGGREGATION_TIMEOUT_ERROR" Generated in case if aggregation process in socket is failed with timeout e.g. client or backend stops to send HTTP header for example
    "SRM_HTTP_HEADER_PROCESSING_ERROR" Received HTTP header is too long or in wrong format
    "SUSPECTED_FLOOD" Currently unused, reserved for cases when download rate of sockets was adjusted
    "VLM_SSL_VERIFICATION_FAIL" Generated when other AccAD device certificates are incorrect, could be DoS attack or attempt to hack
    "VLM_DEVICE_ID_VERIFICATION_FAIL" Generated when device id in certificate is different from actual device id
    "VLM_VERSION_VERIFICATION_FAIL" Generated when versions of AccAD devices are different
    "VLM_INCORRECT_CONFIGURATION" Currently unused, reserved for cases of VMlink Manager misconfiguration, for example number of streams requested by user are unsupported
    "VLM_ACCEPT_FAIL" AccAD Link / tunnel could not accept incoming connections or incoming connection is problematic. For example, two AccAD devices with same device id tries to connect to this device. Most popular reason for this audit event is incorrect link ip or port.
    "VLM_CONNECT_FAIL" AccAD device fails to connect to specified AccAD device due various reasons e.g. check audit events generated by other device or check link ip / port
    "COMPRESSION_ERROR" Compression / Decompression / Online Offline analysis errors reported under this category
    "NODE_IN_CLUSTER_NOT_FUNCTIONING" One of nodes in backend cluster are not available
    "NODE_IN_CLUSTER_ACTIVATION_DETECTED" node in backend cluster become available

    Kenneth,
    By default, the events are generated in GMT-0 timezone to allow distributed environment with machines in different timezones to record a coherent time.
    You can add a formula in your reports to adjust to your timezone.
    Regards,
    Julian

  • Touch events conundrum/problem

    I've been using Flash CS5.5 targeting the IOS platform (iPad).
    I have been writing a small application that relies on things being  dragged around - can't really say much more right now.
    I need to know when dragging starts, so on the thing that's being  dragged I add a listener for TouchEvent.TOUCH_BEGIN.
    I need to know when it's being moved, so the widget also has a listener  for TouchEvent.TOUCH_MOVE.
    And finally, I need to know when dragging stops, so the widget listens  for TouchEvent.TOUCH_END.
    Now mostly, everything goes OK, I get:
    TOUCH_BEGIN, followed by one or more TOUCH_MOVE, and finally a  TOUCH_END. Happiness.
    I have noticed that sometimes if I drag too fast and/or gently do a  swipe motion lifting my finger gently, the TOUCH_END doesn't seem to  happen, so the app doesn't know that the user has stopped dragging. For  the app, this is a problem because the user is allowed to position the  widget roughly and on TOUCH_END it should snap into place.
    Anyone else seen this?
    I can imagine a workaround using a timer to catch missing TOUCH_END  events, but it's a bit of a kludge.
    Paul
    Test case: I have created a very simple app with a symbol instance "square" which is simply a MovieClip containing a box shape and also on the stage I have a text field "countText". Dragging the square around gently means the numbers show multiple moves and matching begins and ends. Start dragging quickly and gently lifting the finger then the begin events then outnumber the end ones.
    On frame 1 I have the following code:
    stop();
    import flash.ui.*;
    import flash.events.TouchEvent;
    Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;
    square.addEventListener(TouchEvent.TOUCH_BEGIN, onTouchEvent);
    square.addEventListener(TouchEvent.TOUCH_MOVE, onTouchEvent);
    square.addEventListener(TouchEvent.TOUCH_END, onTouchEvent);
    var beginCount:uint=0;
    var moveCount:uint=0;
    var endCount:uint=0;
    function onTouchEvent(event:TouchEvent):void{
        switch (event.type){
            case TouchEvent.TOUCH_BEGIN:
                        beginCount++;
                        square.startTouchDrag(event.touchPointID);
                        break;
            case TouchEvent.TOUCH_MOVE:
                        moveCount++;
                        break;
            case TouchEvent.TOUCH_END:
                        endCount++;
                        square.stopTouchDrag(event.touchPointID);
                        break;
        countText.text = "begin: "+beginCount+" move: "+moveCount+" end: "+endCount;

    I realised myself what has been happening.
    With the listener added to the component being dragged, there's a problem when the drag speed is too fast because the movement of the component being dragged can lag behind the finger. When this happens, the TOUCH_END  event may not be seen by the dragged object, because the finger is being raised from the tablet when the dragged object hasn't caught up with the movement of the finger so it doesn't catch the event. Basically the finger moves off the dragged component when the finger goes too fast.
    The solution has been to add the TOUCH_MOVE and TOUCH_END listeners to the stage.
    Paul

Maybe you are looking for

  • New 6500 E709n loses wireless connection when it or laptop sleeps... & other problems!

    Just got this printer and am hoping we can get it to work because we really like it.  I believe we've done everything right - it is connected to PC via USB, and to laptop via wireless network.  Both computers are Dells running XP.  Our wireless route

  • Inserting old swf into new fla with different frame rate

    Hi, I'm trying to insert an old banner ad into a new Flash site.  The problem is, the banner I made at 20 frames per second, and the Flash site is set to 41, so it literally plays the banner twice as fast.  Any ideas as to what I can do about this? 

  • Should a graphic designer use Iphoto for file management ?

    I am a designer who is overwhelmed by too many images from different sources (scan, online, art, photos) that need to be organized by themes (animals, flowers, calligraphy, projects, etc) so I tried transferring all my ps and tif and jpg files into i

  • Using Implicit REF Cursor in Oracle DB 12c

    For those interested in using ODP.NET implicit REF Cursors in Oracle DB 12c, the syntax is different from what was available in Oracle 11g. Here's a 12c-specific example: ======================= Create or Replace PROCEDURE GetEmpAndDept AS EMPS  sys_

  • URGENT HELP UPLOADED .SWF TO REMOTE SERVER BUT DOESNT SHOW

    Hi have uploaded my images and the .swf file which was created with those images as an Image Viewer feature in dreamweaver. Now before i started uploading everything to the server everything was working perfectly. This makes me think some how the sou