How can i see the history of swels  ?

i activeted "swels" befor 3 days ago and i want to see
the history/log of the monitor  .
i open swel  , i see that the collector is "on" ,
but i can't find how to see the data  ?

Hi,
Have you checked table SWFREVTLOG  whether event trace entries in this table?

Similar Messages

  • Hi all - how can i see the history of support package

    hi have install new support package .
    and now i want to view the history of the sp ,  where can i see it ?
    eyal

    Hai,
           if you want to see the history of support package for JAVA (Web AS JAVA),
    Goto the URL : <b>http://<host name>:<http port of Java stack>/</b> --> select System Information --> Show all components --> it will display all Java SP's that you have deployed in your J2EE engine.
    regards,
    Gopinathan.

  • HT5035 How can I see the history of my gift card redemptions?

    I want to see the history of my Gift Card redemptions.  I can see the history of my PURCHASES, but not the Gift Cards.
    I seem to be missing $35 from my balance (after resetting my password).

    Depending upon what country that you are in you may also have sales tax added to the item's listed price.
    If using a credit card and you change or add card details when doing the purchase you may also receive temporary store holding charge(s) :iTunes Store & Mac App Store: About payment card authorization holds - Apple Support

  • How can I see the history of Team Members added & removed from the Project

    Dear Folks,
       Would like to know,  if there is a  report / change document report, on the History of Team members
    being added / removed from an active project.
    Regards,
    Owais...

    Hi Owais,
    Try using CN60 report to see added & removed team members from the project.
    Regards,
    Sandeep

  • How can I view the history of paid applications for my iphone???

    How can I see the history of all purchased paid applications for my iphones?
    I tried the order history from hte store but there is nothing there?
    Where is the paid apps history?
    Thanks/Panos

    Hi...
    Launch Safari on your iPhone.
    Type this in the address bar:  http://store.apple.com/us
    Then tap Account right side of the window (just above New to the Store) then tap View Order History and sign in.

  • How can I see the tracklist in the Podcast app (like I can in the Music app in ios6)?

    When playing a podcast in the Music app in ios6, I can tap the screen and see the track list.  How can I see the track list in the Podcast app in ios7?

    Dakota
    The table MARV holds the current and previous values for the purchasing period and who changed them.  The table is usually set for logging of changes and you may be able to find the history you want depending on how your database is setup.  I hope this helps.
    Regards
    H

  • How can I see the stored files in cache?

    How can I see the stored files in cache? I need them!
    Thanks for helping me.

    The History menu lets you revisit the page where you can drag any page element from it.
    How would you sort through thousands (tens of thousands) of files found in a cache?

  • How can I see the alpha channel in the channels palette?

    Hello, mi format plugin loads a rgba image. I see it with transparency, that's ok, but when I go to the channels tab I only see 4 items (RGB, Red, Green and Blue).
    How can I see the alpha channel of my file in the channel tab?
    Thanks!

    OK, something must be wrong... but I don't find it!
    That's my whole code (resumed). I ommit some code (saving file code (not used) or main function, where I only call te "DoSomething" functions. You can see that I use layers. The DoReadContinue function is only used to show the preview.
    In the DoReadStart function I set the parameters for the layers (and the preview), and I fill the "data" and "layerName" params in the DoReadLayerContinue function. I hope you can understand the code!
    const int32 IMAGE_DEPTH = 32;
    SPBasicSuite * sSPBasic = NULL;
    SPPluginRef gPluginRef = NULL;
    FormatRecord * gFormatRecord = NULL;
    intptr_t * gMxiInfoHandle = NULL;
    MXIInfo* gMxiInfo = NULL;
    int16 * gResult = NULL;
    #define gCountResources gFormatRecord->resourceProcs->countProc
    #define gGetResources   gFormatRecord->resourceProcs->getProc
    #define gAddResource    gFormatRecord->resourceProcs->addProc
    CmaxwellMXI* cMax;
    static void DoReadPrepare (void){
        gFormatRecord->maxData = 0;
    static void DoReadStart(void){
        char header[2];
        ReadScriptParamsOnRead (); // override params here
      if (*gResult != noErr) return;
        // Read the file header
        *gResult = SetFPos (gFormatRecord->dataFork, fsFromStart, 0);
        if (*gResult != noErr) return;
        ReadSome (sizeof( header ) * 2, &header);
        if (*gResult != noErr) return;
      // Check the magic number for avoid no-mxi files
        int headerID = CheckIdentifier (header);
        if( headerID != HEADER_MXI ) *gResult = formatCannotRead;
      if (*gResult != noErr) return;
      // The file is OK. Let's continue to obtain the data of the image.
      cMax = new CmaxwellMXI( 0 );
      strlen((char*)gFormatRecord->fileSpec->name);
      gMxiInfo->filename = _strdup((char *)gFormatRecord->fileSpec->name + 1);
      bool res = cMax->getMXIIInfo(
                    (const char*)gMxiInfo->filename,
                    gMxiInfo->width, gMxiInfo->height,
                    gMxiInfo->burn, gMxiInfo->monitorGamma, gMxiInfo->iso,
                    gMxiInfo->shutter, gMxiInfo->fStop, gMxiInfo->intensity,
                    gMxiInfo->scattering,
                    gMxiInfo->nMultilightChannels, gMxiInfo->lightNamesList,
                    gMxiInfo->availableBuffersMask,
                    gMxiInfo->widthPreview, gMxiInfo->heightPreview,
                    gMxiInfo->bufferPreview);
      if(!res) return;
      // Check the available extra buffers
      int count = 0;
      if( gMxiInfo->availableBuffersMask & CmaxwellMXI::ALPHA_BUFFER ){
        // We will use that string to obtain later the desired extra buffer.
        gMxiInfo->extraBuffersList[count] = "ALPHA";
        gMxiInfo->hasAlpha = true;
        count++;
      else{
        gMxiInfo->hasAlpha = false;
      gMxiInfo->nExtraBuffers = count;
      switch( IMAGE_DEPTH ){
      case 8:
          gMxiInfo->mode = plugInModeRGBColor;
          break;
      case 16:
          gMxiInfo->mode = plugInModeRGB48;
          break;
      case 32:
          gMxiInfo->mode = plugInModeRGB48; //96 gives me an error
          break;
      // SET UP THE DOCUMENT BASIC PARAMETERS.
      VPoint imageSize;
      if( gFormatRecord->openForPreview ){
        // Preview always RGB8.
        imageSize.v = gMxiInfo->heightPreview;
        imageSize.h = gMxiInfo->widthPreview;
        gFormatRecord->depth = 8;
        gFormatRecord->imageMode = plugInModeRGBColor;
        gFormatRecord->planes = 3;
        gFormatRecord->loPlane = 0;
        gFormatRecord->hiPlane = 2;
        gFormatRecord->colBytes = 3;
        gFormatRecord->rowBytes = imageSize.h * gFormatRecord->planes;
        gFormatRecord->planeBytes = 1;
      else{
        // Configure the layers. All RGBA32.
        imageSize.v = gMxiInfo->height;
        imageSize.h = gMxiInfo->width;
        gFormatRecord->depth = IMAGE_DEPTH;
        gFormatRecord->imageMode = gMxiInfo->mode;
        gFormatRecord->layerData =
            2 + gMxiInfo->nMultilightChannels + gMxiInfo->nExtraBuffers;
        gFormatRecord->planes = 4; // RGBA.
        gFormatRecord->loPlane = 0;
        gFormatRecord->hiPlane = 3;
        gFormatRecord->planeBytes = IMAGE_DEPTH >> 3;
        gFormatRecord->rowBytes = imageSize.h * gFormatRecord->planes * ( IMAGE_DEPTH >> 3 );
        gFormatRecord->colBytes = gFormatRecord->planes * ( IMAGE_DEPTH >> 3 );
        gFormatRecord->transparencyPlane = 3;
        gFormatRecord->transparencyMatting = 1;
        gFormatRecord->blendMode = PIBlendLinearDodge;
        gFormatRecord->isVisible = true;
      SetFormatImageSize(imageSize);
      gFormatRecord->imageHRes = FixRatio(72, 1);
      gFormatRecord->imageVRes = FixRatio(72, 1);
      VRect theRect;
      theRect.left = 0;
      theRect.right = imageSize.h;
      theRect.top = 0;
      theRect.bottom = imageSize.v;
      SetFormatTheRect(theRect);
      // No resources for now.
      if (sPSHandle->New != NULL) gFormatRecord->imageRsrcData = sPSHandle->New(0);
      gFormatRecord->imageRsrcSize = 0;
        return;  
    /// Called for prewiew only.
    static void DoReadContinue (void){
        // Dispose of the image resource data if it exists.
        DisposeImageResources ();
      if( gFormatRecord->openForPreview ){   
        VPoint imageSize = GetFormatImageSize();
        gFormatRecord->data = gMxiInfo->bufferPreview;
          if (*gResult == noErr) *gResult = gFormatRecord->advanceState();
        if( gFormatRecord->data != NULL ){
          delete[] (Crgb8*)gMxiInfo->bufferPreview;
          gMxiInfo->bufferPreview = NULL;
          gFormatRecord->data = NULL;
      // De momento nos olvidamos de los icc profiles [TODO]
        //DoReadICCProfile ();
    static void DoReadFinish (void)
        // Dispose of the image resource data if it exists.
        DisposeImageResources ();
        WriteScriptParamsOnRead (); // should be different for read/write
      // write a history comment
        AddComment ();
      // Clean some memory.
      if( gMxiInfo->lightNamesList != NULL ){
        for( unsigned int i = 0; i < gMxiInfo->nMultilightChannels; i++){
          if( gMxiInfo->lightNamesList[i] != NULL ){
            delete[] gMxiInfo->lightNamesList[i];
            gMxiInfo->lightNamesList[i] = NULL;
        delete[] gMxiInfo->lightNamesList;
        gMxiInfo->lightNamesList = NULL;
      if( gMxiInfo->bufferPreview != NULL ){
        delete[] gMxiInfo->bufferPreview;
        gMxiInfo->bufferPreview = NULL;
      if( gMxiInfo->filename != NULL ){
        delete[] gMxiInfo->filename;
        gMxiInfo->filename = NULL;
      if( cMax != NULL ){
        delete cMax;
        cMax = NULL;
    static void DoReadLayerStart(void){
      // empty
    static void DoReadLayerContinue (void){
      int32 done;
        int32 total;
      VPoint imageSize = GetFormatImageSize();
      // Set the progress bar data
      done = gFormatRecord->layerData + 1;
      total = gMxiInfo->nMultilightChannels + gMxiInfo->nExtraBuffers + 2;
      // Dispose of the image resource data if it exists.
      DisposeImageResources ();
      uint32 bufferSize = imageSize.v * gFormatRecord->rowBytes;
      int nPixels = gMxiInfo->width * gMxiInfo->height;
      char* lightName = NULL;
      // SET THE BLACK BACKGROUND
      if( gFormatRecord->layerData == 0 ){
        gFormatRecord->data = (void*)new byte[bufferSize];
        for( int i = 0; i < nPixels; i++ ){
          ((float*)gFormatRecord->data)[ i * 4 ]     =
          ((float*)gFormatRecord->data)[ i * 4 + 1 ] =
          ((float*)gFormatRecord->data)[ i * 4 + 2 ] = 0.0;
          ((float*)gFormatRecord->data)[ i * 4 + 3 ] = 1.0;
        // Set the layer name.
        gFormatRecord->layerName = new uint16[64];
        gFormatRecord->layerName[0] = 'B';
        gFormatRecord->layerName[1] = 'a';
        gFormatRecord->layerName[2] = 'c';
        gFormatRecord->layerName[3] = 'k';
        gFormatRecord->layerName[4] = 'g';
        gFormatRecord->layerName[5] = 'r';
        gFormatRecord->layerName[6] = 'o';
        gFormatRecord->layerName[7] = 'u';
        gFormatRecord->layerName[8] = 'n';
        gFormatRecord->layerName[9] = 'd';
        gFormatRecord->layerName[10] = '\0';
      // LOAD THE LIGHT LAYERS
      else if( gFormatRecord->layerData < gMxiInfo->nMultilightChannels + 1 ){
        void* lightBuffer = NULL;
        void* alphaBuffer = NULL;
        byte foob;
        dword food;
        // Get the light buffer.
        bool res = cMax->getLightBuffer(
                               (char*)gMxiInfo->filename,
                               gFormatRecord->layerData - 1, IMAGE_DEPTH,
                               lightBuffer,
                               gMxiInfo->width, gMxiInfo->height, lightName);
        if(!res){
          *gResult = readErr;
          return;
        if( gMxiInfo->hasAlpha ){
          // Get the alpha buffer.
          res = cMax->getExtraBuffer(
                                (char*)gMxiInfo->filename,
                                "ALPHA", IMAGE_DEPTH, alphaBuffer,
                                food, food, foob);
          if(!res){
            *gResult = readErr;
            return;
        else{
          alphaBuffer = (void*)new float[ gMxiInfo->width * gMxiInfo->height * 3 ];
          for( int i = 0; i < nPixels; i++ ){
            // Only need to set the red channel.
            ((float*)alphaBuffer)[ i * 3 ] = 1.0;
        // Put them together.
        gFormatRecord->data = (void*)new byte[bufferSize];
        for( int i = 0; i < nPixels; i++ ){
          ((float*)gFormatRecord->data)[ i * 4 ]     = ((float*)lightBuffer)[ i * 3 ];
          ((float*)gFormatRecord->data)[ i * 4 + 1 ] = ((float*)lightBuffer)[ i * 3 + 1 ];
          ((float*)gFormatRecord->data)[ i * 4 + 2 ] = ((float*)lightBuffer)[ i * 3 + 2 ];
          ((float*)gFormatRecord->data)[ i * 4 + 3 ] = ((float*)alphaBuffer)[ i * 3 ];
        delete[] (float*)lightBuffer;
        delete[] (float*)alphaBuffer;
        // Set the layer name.
      //LOAD THE EXTRA CHANNELS
      if( ... ){
      //READ THE RENDER BUFFER
      if( ... ){
      // User can abort.
      if (gFormatRecord->abortProc()){
          *gResult = userCanceledErr;
          return;
      // Commit the layer.
      if (*gResult == noErr) *gResult = gFormatRecord->advanceState();
      // Update the progress bar.
      (*gFormatRecord->progressProc)( done, total );
      // Free memory.
      if( gFormatRecord->data != NULL ){
        delete[] (float*)gFormatRecord->data;
        gFormatRecord->data = NULL;
      if( lightName != NULL ){
        delete[] lightName;
        lightName = NULL;
    static void DoReadLayerFinish (void)
      // Nothing to do.
    And that's the image that I obtain loading a 8 layer image:
    The layers have transparency (when I set "transparencyPlane" to  -1, or 0, or 1, or 2, or 3, or 4....., I got the same result!). The blending mode is still "normal". I had set it to "linear dodge" The "isVisible" param works OK.
    Alpha 1 is still black.
    Is possible that I need to set something in the .r file? I had to add "FormatLayerSupport { doesSupportFormatLayers }," to manage layers, for instance.

  • How can I see the selected tags in the tag bar clearly

    How can I see the selected tags in the tag bar clearly (they used to be in black, now they do not change color; a highlight or Bold would help)

    The History menu lets you revisit the page where you can drag any page element from it.
    How would you sort through thousands (tens of thousands) of files found in a cache?

  • How can I get the history of the subprogram  i.e Procedure  ........?

    How can I get the history of the subprogram i.e Procedure ........?

    annu_rajput wrote:
    I mean I want to see .
    When procedure was created.?
    what was the original code ..?
    what are the modification done since ..?
    who has modified it ......?This is not a task for Oracle. This is a task for a version control system.
    You can see when a procedure has been created in ALL_OBJECTS (CREATED and LAST_DDL_TIME columns) but even using flashback queries on this table you don't expect to go back for long.
    Definitely you cannot see who has modified it. You can only see the procedure owner.
    Again, Oracle is NOT a version control system. You are on the wrong way.
    Regards.
    Al

  • How can i see the contenet of a computer

    how can i see the content of a computers shared directory if i know the IP

    You obviously are in the wrong place, or you would have stated the problem in a way so as to make sure you were not misunderstood.
    Can you say Wrong?
    If so, then repeat "I will try to do something right" again and again until you are actually doing so.
    You may find the experience rewarding!
    Any history or anthropology aficionado will know that it is this kind of gross ambivilence that will speed the imposition of rules that aren't here yet.

  • How can I delete the history of wireless connections?  Need to delete it entirely, as I have a new airport extreme and I named the network the same as it had previously been,

    How can I delete the history of wireless connections?  I got a new apple extreme, and I kept that same network name as I previously had with the LinkSys.   Now the Mac won't automatically connect to the network.  Genious Bar fixed my Pro, they said that you have to delete all the history, not just the network name.  I wasn't at the Genious Bar to see how they did it, now I need to fix the Mac.  Appreciate any help!

    Yes, so...
    I have also closed iTunes, reset network settings on the iPad, then shut down and restarted the iPad. Still, I end up with greyed out rectangular icons for all the movies I've ever streamed from my Mac Mini to my ipad via my home wireless router.
    Again, I have watched all the way to the end of the movie, selcted the movie in iTunes and chosen "mark as watched", and then deleted it in ITunes.
    Any ideas?

  • How can i see the apps on my apple id

    How can i see the apps on my apple id,
    and can i transfer apps from one id to the other
    because i used to use my dads id now i have my own and i want the apps on my id

    Tianrens wrote:
    How can i see the apps on my apple id,
    View Purchase History...
    Sign Into your Account... Click on your account name... Click on Account.... Purchase History
    http://support.apple.com/kb/HT2727
    Tianrens wrote:
    and can i transfer apps from one id to the other
    this is Not possible... Anything obtained on a Particular Apple ID is tied to that Apple ID and Cannot be Transfered to a different Apple ID.
    From Here   http://support.apple.com/kb/HE37
    I have multiple Apple IDs. Is there a way for me to merge them into a single Apple ID?
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.

  • How can i see the Asset purchase order & GR after settlement

    Hello Gurus,
    Would you please tell me how can i check the Asset Purchase order, which is settled (WBS Element)? How can i see the GR document for the specific asset? & if i treat as a expeneses toward the project where i get the GR/ PO in asset explorer?
    Warm Regards,
    Dhananjay Rahane.

    Dear,
    Dhanajay.
    Purchase order related to asset you can see in Asset Master itself. Go to AS03 - Environment  ( Menu bar ) - Click on Purchase Order. Here you will have all the relevant PO's relating to asset.
    GR you can see in PO at a Purchase Order history. The data relating to asset you can  see in left hand side navigation in AW01N Asset Explorer. Like as Vendor, PO's, etc.
    WBS in PO you can see in Account Assignment Tab if your PO is created with N. ( Network PO ). WBS linked to Network you can see in CJ20N ( Project Builder ). 
    WBS Actual values can see in report CJI3 Actual Cost & Revenues.
    I hope this helps you to solve your issue. If you have any doubts feel free to share.
    Regards,
    Pankaj A Bhalerao.

  • TS3376 i have lost my iphone and have put it in lost mode. it says that i can trace the last 24 hours however it is only showing me where the phone was at 7 pm last night and it is grey mode... so obvoiously off how can i see the last 24 hours?

    I have lost my iphone 3. I have placed it in Lost Mode however it is only showing my last location at 7 pm last night. How can i see the last 24 hours? it is in Grey so not on..

    Find My iPhone only keeps a history of locations after you put it in lost mode.  It also has to be online to provide an updated location.

Maybe you are looking for

  • License Determination

    Hi, I have just started working in SAP GTS Can you please tell me that how License Determination is done for a material? I am getting this error while creating Delivery in ECC that license determination is not done in GTS. Thanks Neha

  • Problem in Shipment purchase order number

    Hello Experts, At time of shipment count number(VI02), purchase order and service entry is created automatically. But whenever created new shipment count same purchase order number is updated ie sequentially not taking, but service entry has not prob

  • How do i create a usb boot drive for OS X Lion 10.7.5

    How do I create a bootable USB drive on a working iMac with OS X Lion 10.7.5?  I'm fairly new to the MAC world...

  • How to make curved arrows (arcs) with known angles

    I need to be able to make many curved arrows with known angles.  Meaning, I need the arrows line/tail to start at a certain point and the arrow head to end at another, but angled to 45, 60, and 90 degress from the start point.  Similar to this: As yo

  • Which replacement screen and vid mirror adapter to buy

    Hello everyone, I am looking for guidance on the following... 1. I would like to replace my G3 iBook 12 inch screen, its a little bunged up with SCRATCHES so its time for a new one, any suggestions? 2. In order to video mirror on my G3 2 suggestions