WD framework generated logging priority is set to PATH, any reason?

Hi All,
as I am using the logging to help to solve customer problems, I noticed if I enable the locations, there will be framework-generated messages in the log files as follows:
[SAPEngine_Application_Thread[impl:3]_35] Path: exiting: wdDoExit
Feb 28, 2007 12:11:16 PM        com.sap.mdm.ui.search.wdp.InternalBasicView [SAPEngine_Application_Thread[impl:3]_35] Path: entering: wdDoExit
Feb 28, 2007 12:11:16 PM        com.sap.mdm.ui.search.wdp.InternalBasicView
As one can see, all these messages are written by internal (generated) code. The problem is that as I enable the location "com.sap.mdm.ui.search", "com.sap.mdm.ui.search.wdp" is also enabled (inherited), which leads to a messy log files. Since I use DEBUG to write my debug messages, I cannot turn off the internal messages by setting the Priority of the location "com.sap.mdm.ui.search" to "DEBUG" because in SAP logging framework, PATH has a higher priority than DEBUG. I think this kind of internal messages should have a priority as TRACE, which is lower than DEBUG.
Could anyone clarify why it's necessary to have such messages as PATH?
Best regards,
Ge

Close this since no reply.

Similar Messages

  • Test-OutlookConnectivity WARNING: An unexpected error has occurred and a Watson dump is being generated: Object reference not set to an instance of an object.

    Hi All,
    When we do a test-outlookconnectivity -protocol:http the result is a success but then we get the following:
    ClientAccessServer   ServiceEndpoint                               Scenario                           
    Result  Latency
    (MS)
    xxxxxxxxxxxx... xxxxxxxxxxxxxx                 Autodiscover: Web service request.  Success   46.80
    WARNING: An unexpected error has occurred and a Watson dump is being generated: Object reference not set to an instance
     of an object.
    Object reference not set to an instance of an object.
        + CategoryInfo          : NotSpecified: (:) [Test-OutlookConnectivity], NullReferenceException
        + FullyQualifiedErrorId : System.NullReferenceException,Microsoft.Exchange.Monitoring.TestOutlookConnectivityTask
    So it looks like it's not completing successfully.
    I can't find anything on this in particular, and don't really know how to go about solving it - We are fully up to date, Exchange 2010 Sp2 with Rollup 5-v2
    Any help appreciated!

    hi,
    I have the same issue also on Exchange 2010 SP2 RU5v2
    I ran your command and get the below
    [PS] C:\Installs\report\Activesync>Test-OutlookConnectivity -Protocol:http |FL
    RunspaceId                  : ebd2c626-1634-40ad-a17e-c9a713d1a62b
    ServiceEndpoint             : autodiscover.domain.com
    Id                          : Autodiscover
    ClientAccessServer          : CAS01.domain.com
    Scenario                    : Autodiscover: Web service request.
    ScenarioDescription         :
    PerformanceCounterName      :
    Result                      : Success
    Error                       :
    UserName                    : Gazpromuk.intra\extest_645e41faa55f4
    StartTime                   : 8/21/2013 4:08:50 PM
    Latency                     : 00:00:00.1250048
    EventType                   : Success
    LatencyInMillisecondsString : 125.00
    Identity                    :
    IsValid                     : True
    WARNING: An unexpected error has occurred and a Watson dump is being generated: Object reference not set to an instance of an object.
    Object reference not set to an instance of an object.
        + CategoryInfo          : NotSpecified: (:) [Test-OutlookConnectivity], NullReferenceException
        + FullyQualifiedErrorId : System.NullReferenceException,Microsoft.Exchange.Monitoring.TestOutlookConnectivityTask
     Any help would be greatly appreciated, I also get random failures of OWA, EAS and web services, very frustrating
    I have no errors in the app event log
    thanks
    Faisal Saleem Windows Systems Analyst 07595781867

  • Scheduling of SOA purge instances (11.1.1.7) generating logs

    What is best practice for scheduling the purging of SOA instances using the Oracle Soa purge strategy?
    Followed the instructions successfully http://docs.oracle.com/cd/E29542_01/admin.1111/e10226/soaadmin_partition.htm#SOAAG97268
    My requirements:
    For each purge run a unique log must be generated on the filesystem.
    The purging must be done frequently according to a schedule (i.e. daily 8pm).
    My issue:
    when I run the looped purge (soa.delete_instances), logs are not being generated as expected within the SOA_PURGE_DIR.
    logs are only generated in SOA_PURGE_DIR when I execute the parallel purge (soa.delete_instances_in_parallel). I need to run looped purge and not parallel purge.
    Current scenario (workaround to generate logs (seems a bit overkill)):
    DBMS_Scheduler job invoking a shell script
    Shell script invokes a custom sql script spooling the output to a log file
    Custom sql script invokes the Oracle soa.delete_instances procedure setting all the parameters
    soa.delete_instances runs.
    Preferred scenario (not working):DBMS_Scheduler job (PL/SQL block) -> Oracle SOA Purge procedure
    DBMS_Scheduler:
    BEGIN
    dbms_scheduler.create_job('SOA_PURGE',
        job_type             =>'EXECUTABLE',
        job_action           =>'/stage/scripts/sh/soa_purge.sh',
        number_of_arguments  =>0,
        start_date           =>TO_TIMESTAMP_TZ('27-NOV-2014 08.00.00.000000000 PM +01:00','DD-MON-RRRR HH.MI.SSXFF AM TZR','NLS_DATE_LANGUAGE=english'),
        repeat_interval      =>'FREQ=DAILY',
        end_date             =>NULL,
        job_class            =>'DEFAULT_JOB_CLASS',
        enabled              =>TRUE,
        auto_drop            =>FALSE,
        comments             =>'Job to purge the data from dehydration gateway database.'
    COMMIT;
    END;
    Shell script:
    SPOOL_FILE1=/stage/logs/soa_purge_$(date +%Y_%M_%DT%H_%M_%S).log
    sqlplus "user/password" <<EOF
    alter session set nls_date_format = 'dd/mm/yyyy hh24:mi:ss';
    SET linesize 100
    SET pagesize 300
    SET time on
    SET timing on
    spool ${SPOOL_FILE1}
    @@/stage/scripts/sql/debug_on.sql
    @@/stage/scripts/sql/soa_purge_test.sql
    @@/stage/scripts/sql/debug_off.sql
    spool off;
    set time off;
    exit;
    EOF
    Custom script (soa_purge_test.sql (above)):
    SET SERVEROUTPUT ON;
    DECLARE
      MAX_CREATION_DATE TIMESTAMP;
      MIN_CREATION_DATE TIMESTAMP;
      BATCH_SIZE        INTEGER;
      MAX_RUNTIME       INTEGER;
      RETENTION_PERIOD  TIMESTAMP;
    BEGIN
      MIN_CREATION_DATE := TO_TIMESTAMP(TO_CHAR(sysdate-90, 'YYYY-MM-DD'),'YYYY-MM-DD');
      MAX_CREATION_DATE := TO_TIMESTAMP(TO_CHAR(sysdate-30, 'YYYY-MM-DD'),'YYYY-MM-DD');
      RETENTION_PERIOD  := TO_TIMESTAMP(TO_CHAR(sysdate-29, 'YYYY-MM-DD'),'YYYY-MM-DD');
      MAX_RUNTIME       := 1380;
      BATCH_SIZE        := 250000;
      SOA.DELETE_INSTANCES(
        MIN_CREATION_DATE    => MIN_CREATION_DATE,
        MAX_CREATION_DATE    => MAX_CREATION_DATE,
        BATCH_SIZE           => BATCH_SIZE,
        MAX_RUNTIME          => MAX_RUNTIME,
        RETENTION_PERIOD     => RETENTION_PERIOD
    END;

    What is best practice for scheduling the purging of SOA instances using the Oracle Soa purge strategy?
    Followed the instructions successfully http://docs.oracle.com/cd/E29542_01/admin.1111/e10226/soaadmin_partition.htm#SOAAG97268
    My requirements:
    For each purge run a unique log must be generated on the filesystem.
    The purging must be done frequently according to a schedule (i.e. daily 8pm).
    My issue:
    when I run the looped purge (soa.delete_instances), logs are not being generated as expected within the SOA_PURGE_DIR.
    logs are only generated in SOA_PURGE_DIR when I execute the parallel purge (soa.delete_instances_in_parallel). I need to run looped purge and not parallel purge.
    Current scenario (workaround to generate logs (seems a bit overkill)):
    DBMS_Scheduler job invoking a shell script
    Shell script invokes a custom sql script spooling the output to a log file
    Custom sql script invokes the Oracle soa.delete_instances procedure setting all the parameters
    soa.delete_instances runs.
    Preferred scenario (not working):DBMS_Scheduler job (PL/SQL block) -> Oracle SOA Purge procedure
    DBMS_Scheduler:
    BEGIN
    dbms_scheduler.create_job('SOA_PURGE',
        job_type             =>'EXECUTABLE',
        job_action           =>'/stage/scripts/sh/soa_purge.sh',
        number_of_arguments  =>0,
        start_date           =>TO_TIMESTAMP_TZ('27-NOV-2014 08.00.00.000000000 PM +01:00','DD-MON-RRRR HH.MI.SSXFF AM TZR','NLS_DATE_LANGUAGE=english'),
        repeat_interval      =>'FREQ=DAILY',
        end_date             =>NULL,
        job_class            =>'DEFAULT_JOB_CLASS',
        enabled              =>TRUE,
        auto_drop            =>FALSE,
        comments             =>'Job to purge the data from dehydration gateway database.'
    COMMIT;
    END;
    Shell script:
    SPOOL_FILE1=/stage/logs/soa_purge_$(date +%Y_%M_%DT%H_%M_%S).log
    sqlplus "user/password" <<EOF
    alter session set nls_date_format = 'dd/mm/yyyy hh24:mi:ss';
    SET linesize 100
    SET pagesize 300
    SET time on
    SET timing on
    spool ${SPOOL_FILE1}
    @@/stage/scripts/sql/debug_on.sql
    @@/stage/scripts/sql/soa_purge_test.sql
    @@/stage/scripts/sql/debug_off.sql
    spool off;
    set time off;
    exit;
    EOF
    Custom script (soa_purge_test.sql (above)):
    SET SERVEROUTPUT ON;
    DECLARE
      MAX_CREATION_DATE TIMESTAMP;
      MIN_CREATION_DATE TIMESTAMP;
      BATCH_SIZE        INTEGER;
      MAX_RUNTIME       INTEGER;
      RETENTION_PERIOD  TIMESTAMP;
    BEGIN
      MIN_CREATION_DATE := TO_TIMESTAMP(TO_CHAR(sysdate-90, 'YYYY-MM-DD'),'YYYY-MM-DD');
      MAX_CREATION_DATE := TO_TIMESTAMP(TO_CHAR(sysdate-30, 'YYYY-MM-DD'),'YYYY-MM-DD');
      RETENTION_PERIOD  := TO_TIMESTAMP(TO_CHAR(sysdate-29, 'YYYY-MM-DD'),'YYYY-MM-DD');
      MAX_RUNTIME       := 1380;
      BATCH_SIZE        := 250000;
      SOA.DELETE_INSTANCES(
        MIN_CREATION_DATE    => MIN_CREATION_DATE,
        MAX_CREATION_DATE    => MAX_CREATION_DATE,
        BATCH_SIZE           => BATCH_SIZE,
        MAX_RUNTIME          => MAX_RUNTIME,
        RETENTION_PERIOD     => RETENTION_PERIOD
    END;

  • NFS File adapter donu00B4t generate log file.

    Hello!
    We have a problem with a File adapter. when adapter catch file, this one don´t archive this file into archive directory.
    We have:
    Processing mode: Archive.
    Archive directory : /XIcom/INT181_GECAT/LOG
    This directory is created correctly.
    Someone can i help me. Thanks.
    Best regards.

    Hi ,
    >>>NFS File adapter don´t generate log file
    Do you mean you are not getting the processed files archived only when the file adapter set to NFS File system ?
    Did you try same thing by setting File adapter as FTP ?
    If you face same issue with File adpter set in FTP mode also then there is some issue with access to the folders.
    Please check this ...
    Regards,
    Nanda
    Message was edited by: Nanda kishore Reddy Narapu Reddy

  • Generate logs from user report options

    Hi all !
    I would like to know if there is a possibility to generate logs from report user selection:
    E.g: users can fill execution options to delimit the scope of the report execution and the output, company code, date ranges, account numbers, cost.
    - Is there a way to generate logs containing these report options that  were typed / filled by the user for every transaction executed?
    - If Yes could you please assist?
    Thanks in advance for the cooperation!
    Regards,

    There is a way of doing this using the object history, but the user can control this themselves and turn it off if they want to.
    Read the SAP notes on term "RSSGOSHIRE".
    Another way is to use parameter transactions or variant transactions, which the user cannot change or only change selected parameters for which you don't care about.
    Cheers,
    Julius

  • Wiki Server Requires "All logged in users" set to R&W

    I continue to try and resolve spurious issues and unpredictable behavior.  Now, I'm trying to rebuild a group wiki page because I could not control any of the permissions on the existing page.  The purpose of the wiki is only to provide a shared calendar among a small subset (call them managers) of the users in the workgroup. 
    In order to make it so that "managers" would be the only people who could read and write to this calendar, I tried to set the wiki permissions to support this:
         managers                         read & write
         all logged in users              read only
         all unathenticated users     no access
    I could not get this to work.  The only way I can get it so one of the users in the manager group can create or edit events in the calendar is if I have "All logged in users" set to read and write, which to me defeats the purpose of groups.
    Either something is still jacked up with my wiki permissions (I did migrate from SLS quite some time ago but have never felt everything was working really reliably) or I am misunderstanding how the wiki permmissions are supposed to work.
    Can someone help me with this, please?

    Having the same problem. I'd be interested in know if you managed to resolved this?

  • How to install Patch to fix the Bug for generating log in OBIEE11.1.1.3.0

    Hi,
    I found the "Patch Number is 10125516" to fix the BUG for generating LOG in OBIEE 11.1.1.3.0 But I don't Know how to generate password for "Patch Number is 10125516" and as well as How to install the Patch.
    Please Let me know to install this Patch.
    I am using OBIEE 11.1.13.0 on Linux(OEL5.4-64bit).
    Thanks & Regards,
    Pamidi.

    I found the "Patch Number is 10125516" to fix the BUG for generating LOG in OBIEE 11.1.1.3.0 But I don't Know how to generate password for "Patch Number is 10125516" and as well as How to install the Patch.Log a SR and ask Oracle support to provide you with the password to download the file.
    Please Let me know to install this Patch.
    I am using OBIEE 11.1.13.0 on Linux(OEL5.4-64bit).Once you get the password, you can access the README file, so just follow the instructions in that file.
    Thanks,
    Hussein

  • Backup file getting generated on FRA insted of format path

    Hi,
    I have below script to generate RMAN full backup on given path in FORMAT directory, still RMAN genarate one .bkp file on FRA.
    We require to generate all backup files on given format path only.
    below file was generated on FRA
    o1_mf_nnndf_TAG20100804T043926_65l9t06h_.bkpBelow is the code for generating full backup.
    backup database plus archivelog FORMAT '/export/home/nfs_bak/lims/backup/ndb/backup_%d_DB_%D%M%Y_%U_%s'  delete all input;
    resync catalog;
    report schema;
    list backup;
    CROSSCHECK BACKUP;
    CROSSCHECK BACKUPSET;
    DELETE NOPROMPT EXPIRED BACKUP;
    DELETE NOPROMPT OBSOLETE DEVICE TYPE DISK;
    CROSSCHECK  ARCHIVELOG ALL;
    DELETE NOPROMPT EXPIRED ARCHIVELOG ALL;Oracle : 11gR2
    OS:Solaris

    Output for old command:
    RMAN> backup database plus archivelog FORMAT '/export/home/nfs_bak/lims/backup/ndb/backup_%d_DB_%D%M%Y_%U_%s'  delete all input;
    Starting backup at 05-AUG-10
    current log archived
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=194 device type=DISK
    allocated channel: ORA_DISK_2
    channel ORA_DISK_2: SID=225 device type=DISK
    channel ORA_DISK_1: starting archived log backup set
    channel ORA_DISK_1: specifying archived log(s) in backup set
    input archived log thread=1 sequence=26 RECID=24 STAMP=726199910
    channel ORA_DISK_1: starting piece 1 at 05-AUG-10
    channel ORA_DISK_1: finished piece 1 at 05-AUG-10
    piece handle=/export/home/nfs_bak/lims/backup/ndb/backup_NDB_DB_05082010_16lkhrj8_1_1_38 tag=TAG20100805T021152 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01
    channel ORA_DISK_1: deleting archived log(s)
    archived log file name=/export/home/nfs_bak/lims/backup/ndb/NDB/archivelog/2010_08_05/o1_mf_1_26_65nok6fb_.arc RECID=24 STAMP=726199910
    Finished backup at 05-AUG-10
    Starting backup at 05-AUG-10
    using channel ORA_DISK_1
    using channel ORA_DISK_2
    channel ORA_DISK_1: starting full datafile backup set
    channel ORA_DISK_1: specifying datafile(s) in backup set
    input datafile file number=00001 name=+DATA/lims/ndb/system01.dbf
    input datafile file number=00002 name=+DATA/lims/ndb/sysaux01.dbf
    input datafile file number=00006 name=+DATA/lims/ndb/datafile/ndb_cellmap_idx_tbs_01.dbf
    input datafile file number=00008 name=+DATA/lims/ndb/datafile/ndb_fingerprint_tbs_idx_01.dbf
    input datafile file number=00010 name=+DATA/lims/ndb/datafile/ndb_sys_idx_tbs_01.dbf
    channel ORA_DISK_1: starting piece 1 at 05-AUG-10
    channel ORA_DISK_2: starting full datafile backup set
    channel ORA_DISK_2: specifying datafile(s) in backup set
    input datafile file number=00005 name=+DATA/lims/ndb/datafile/ndb_cellmap_tbs_01.dbf
    input datafile file number=00007 name=+DATA/lims/ndb/datafile/ndb_fingerprint_tbs_01.dbf
    input datafile file number=00009 name=+DATA/lims/ndb/datafile/ndb_sys_tbs_01.dbf
    input datafile file number=00003 name=+DATA/lims/ndb/undotbs01.dbf
    input datafile file number=00004 name=+DATA/lims/ndb/users01.dbf
    channel ORA_DISK_2: starting piece 1 at 05-AUG-10
    channel ORA_DISK_1: finished piece 1 at 05-AUG-10
    piece handle=/export/home/nfs_bak/lims/backup/ndb/backup_NDB_DB_05082010_17lkhrj9_1_1_39 tag=TAG20100805T021153 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:06:46
    channel ORA_DISK_2: finished piece 1 at 05-AUG-10
    piece handle=/export/home/nfs_bak/lims/backup/ndb/NDB/backupset/2010_08_05/o1_mf_nnndf_TAG20100805T021153_65nokdyo_.bkp tag=TAG20100805T021153 comment=NONE
    channel ORA_DISK_2: backup set complete, elapsed time: 00:06:56
    Finished backup at 05-AUG-10
    Starting backup at 05-AUG-10
    current log archived
    using channel ORA_DISK_1
    using channel ORA_DISK_2
    channel ORA_DISK_1: starting archived log backup set
    channel ORA_DISK_1: specifying archived log(s) in backup set
    input archived log thread=1 sequence=27 RECID=25 STAMP=726200330
    channel ORA_DISK_1: starting piece 1 at 05-AUG-10
    channel ORA_DISK_1: finished piece 1 at 05-AUG-10
    piece handle=/export/home/nfs_bak/lims/backup/ndb/backup_NDB_DB_05082010_19lkhs0b_1_1_41 tag=TAG20100805T021851 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01
    channel ORA_DISK_1: deleting archived log(s)
    archived log file name=/export/home/nfs_bak/lims/backup/ndb/NDB/archivelog/2010_08_05/o1_mf_1_27_65noyb7m_.arc RECID=25 STAMP=726200330
    Finished backup at 05-AUG-10
    Starting Control File and SPFILE Autobackup at 05-AUG-10
    piece handle=/export/home/nfs_bak/lims/backup/ndb/db11g_c-1074407344-20100805-01 comment=NONE
    Finished Control File and SPFILE Autobackup at 05-AUG-10output for updated command:
    RMAN> RUN
    2> {
    3>  allocate channel channel1 device type disk format '/export/home/nfs_bak/lims/backup/ndb/backup_%d_DB_%D%M%Y_%U_%s';
    4>  backup database plus archivelog delete all input;
    5> release channel channel1;
    6> }
    7> resync catalog;
    8> report schema;
    9> list backup;
    10> crosscheck backup;
    11> crosscheck backupset;
    12> delete noprompt expired backup;
    13> delete noprompt obsolete;
    14> crosscheck archivelog all;
    15> DELETE NOPROMPT EXPIRED ARCHIVELOG ALL;
    16>
    starting full resync of recovery catalog
    full resync complete
    allocated channel: channel1
    channel channel1: SID=98 device type=DISK
    Starting backup at 05-AUG-10
    current log archived
    channel channel1: starting archived log backup set
    channel channel1: specifying archived log(s) in backup set
    input archived log thread=1 sequence=20 RECID=18 STAMP=726148869
    input archived log thread=1 sequence=21 RECID=19 STAMP=726175480
    input archived log thread=1 sequence=22 RECID=20 STAMP=726185922
    input archived log thread=1 sequence=23 RECID=21 STAMP=726195156
    input archived log thread=1 sequence=24 RECID=22 STAMP=726197409
    channel channel1: starting piece 1 at 05-AUG-10
    channel channel1: finished piece 1 at 05-AUG-10
    piece handle=/export/home/nfs_bak/lims/backup/ndb/backup_NDB_DB_05082010_12lkhp52_1_1_34 tag=TAG20100805T013010 comment=NONE
    channel channel1: backup set complete, elapsed time: 00:00:07
    channel channel1: deleting archived log(s)
    archived log file name=/export/home/nfs_bak/lims/backup/ndb/NDB/archivelog/2010_08_04/o1_mf_1_20_65m3p0rz_.arc RECID=18 STAMP=726148869
    archived log file name=/export/home/nfs_bak/lims/backup/ndb/NDB/archivelog/2010_08_04/o1_mf_1_21_65mxonbz_.arc RECID=19 STAMP=726175480
    archived log file name=/export/home/nfs_bak/lims/backup/ndb/NDB/archivelog/2010_08_04/o1_mf_1_22_65n7vtog_.arc RECID=20 STAMP=726185922
    archived log file name=/export/home/nfs_bak/lims/backup/ndb/NDB/archivelog/2010_08_05/o1_mf_1_23_65njwhld_.arc RECID=21 STAMP=726195156
    archived log file name=/export/home/nfs_bak/lims/backup/ndb/NDB/archivelog/2010_08_05/o1_mf_1_24_65nm31ko_.arc RECID=22 STAMP=726197409
    Finished backup at 05-AUG-10
    Starting backup at 05-AUG-10
    channel channel1: starting full datafile backup set
    channel channel1: specifying datafile(s) in backup set
    input datafile file number=00005 name=+DATA/lims/ndb/datafile/ndb_cellmap_tbs_01.dbf
    input datafile file number=00001 name=+DATA/lims/ndb/system01.dbf
    input datafile file number=00002 name=+DATA/lims/ndb/sysaux01.dbf
    input datafile file number=00007 name=+DATA/lims/ndb/datafile/ndb_fingerprint_tbs_01.dbf
    input datafile file number=00006 name=+DATA/lims/ndb/datafile/ndb_cellmap_idx_tbs_01.dbf
    input datafile file number=00008 name=+DATA/lims/ndb/datafile/ndb_fingerprint_tbs_idx_01.dbf
    input datafile file number=00009 name=+DATA/lims/ndb/datafile/ndb_sys_tbs_01.dbf
    input datafile file number=00003 name=+DATA/lims/ndb/undotbs01.dbf
    input datafile file number=00010 name=+DATA/lims/ndb/datafile/ndb_sys_idx_tbs_01.dbf
    input datafile file number=00004 name=+DATA/lims/ndb/users01.dbf
    channel channel1: starting piece 1 at 05-AUG-10
    channel channel1: finished piece 1 at 05-AUG-10
    piece handle=/export/home/nfs_bak/lims/backup/ndb/backup_NDB_DB_05082010_13lkhp5a_1_1_35 tag=TAG20100805T013018 comment=NONE
    channel channel1: backup set complete, elapsed time: 00:06:55
    Finished backup at 05-AUG-10
    Starting backup at 05-AUG-10
    current log archived
    channel channel1: starting archived log backup set
    channel channel1: specifying archived log(s) in backup set
    input archived log thread=1 sequence=25 RECID=23 STAMP=726197834
    channel channel1: starting piece 1 at 05-AUG-10
    channel channel1: finished piece 1 at 05-AUG-10
    piece handle=/export/home/nfs_bak/lims/backup/ndb/backup_NDB_DB_05082010_14lkhpia_1_1_36 tag=TAG20100805T013714 comment=NONE
    channel channel1: backup set complete, elapsed time: 00:00:01
    channel channel1: deleting archived log(s)
    archived log file name=/export/home/nfs_bak/lims/backup/ndb/NDB/archivelog/2010_08_05/o1_mf_1_25_65nmj9y9_.arc RECID=23 STAMP=726197834
    Finished backup at 05-AUG-10
    Starting Control File and SPFILE Autobackup at 05-AUG-10
    piece handle=/export/home/nfs_bak/lims/backup/ndb/db11g_c-1074407344-20100805-00 comment=NONE
    Finished Control File and SPFILE Autobackup at 05-AUG-10
    released channel: channel1

  • IMac regularly just hangs. No errors, no logs. Need to reboot. Any tips?

    My Imac just stops every now and then. Cannot move cursor (which still has normal shape), cannot force program stop, no beeps or blinks, nothing. No errors appear on screen, neither in logs. Tried re-installing but problem remains. Cannot narrow it down to a certain program. Ran hardware diagnostics but no errors found. Can anyone give me a hint where to look? Some hidden files, logs or anything? Are there any tools available for extended logging? Thanks!

    Part 2: SYSTEM LOG (hope it's not too long):
    Sep 21 19:15:50 localhost kernel[0]: npvhash=4095
    Sep 21 19:15:44 localhost com.apple.launchctl.System[2]: fsck_hfs: Volume is journaled. No checking performed.
    Sep 21 19:15:44 localhost com.apple.launchctl.System[2]: fsck_hfs: Use the -f option to force checking.
    Sep 21 19:15:45 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    Sep 21 19:15:45 localhost com.apple.launchd[1] (com.apple.RemoteDesktop.PrivilegeProxy): Unknown key for boolean: EnableTransactions
    Sep 21 19:15:45 localhost com.apple.launchd[1] (com.apple.usbmuxd): Unknown key for boolean: EnableTransactions
    Sep 21 19:15:45 localhost com.apple.launchd[1] (org.cups.cupsd): Unknown key: SHAuthorizationRight
    Sep 21 19:15:45 localhost com.apple.launchd[1] (org.ntp.ntpd): Unknown key: SHAuthorizationRight
    Sep 21 19:15:45 localhost com.apple.launchd[1] (org.x.privileged_startx): Unknown key for boolean: EnableTransactions
    Sep 21 19:15:50 localhost kernel[0]: hi mem tramps at 0xffe00000
    Sep 21 19:15:50 localhost kernel[0]: PAE enabled
    Sep 21 19:15:50 localhost bootlog[36]: BOOT_TIME: 1285089342 0
    Sep 21 19:15:50 localhost kernel[0]: 64 bit mode enabled
    Sep 21 19:15:50 localhost kernel[0]: Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_I386
    Sep 21 19:15:50 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Sep 21 19:15:50 localhost kernel[0]: vmpagebootstrap: 971712 free pages and 76864 wired pages
    Sep 21 19:15:50 localhost kernel[0]: migtable_maxdispl = 79
    Sep 21 19:15:50 localhost kernel[0]: 97 prelinked modules
    Sep 21 19:15:50 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Sep 21 19:15:50 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Sep 21 19:15:50 localhost kernel[0]: Loading security extension com.apple.security.TMSafetyNet
    Sep 21 19:15:50 localhost kernel[0]: calling mpopolicyinit for TMSafetyNet
    Sep 21 19:15:50 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Sep 21 19:15:50 localhost kernel[0]: Loading security extension com.apple.nke.applicationfirewall
    Sep 21 19:15:50 localhost kernel[0]: Loading security extension com.apple.security.seatbelt
    Sep 21 19:15:50 localhost kernel[0]: calling mpopolicyinit for mb
    Sep 21 19:15:50 localhost kernel[0]: Seatbelt MACF policy initialized
    Sep 21 19:15:50 localhost kernel[0]: Security policy loaded: Seatbelt Policy (mb)
    Sep 21 19:15:50 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Sep 21 19:15:50 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Sep 21 19:15:50 localhost kernel[0]: MAC Framework successfully initialized
    Sep 21 19:15:50 localhost kernel[0]: using 16384 buffer headers and 4096 cluster IO buffer headers
    Sep 21 19:15:50 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Sep 21 19:15:50 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Sep 21 19:15:50 localhost kernel[0]: mbinit: done
    Sep 21 19:15:50 localhost kernel[0]: Security auditing service present
    Sep 21 19:15:50 localhost kernel[0]: BSM auditing present
    Sep 21 19:15:50 localhost kernel[0]: rooting via boot-uuid from /chosen: 138E026A-C269-3F87-849B-CD65BED7ACB1
    Sep 21 19:15:50 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Sep 21 19:15:50 localhost kernel[0]: BTCOEXIST on
    Sep 21 19:15:50 localhost kernel[0]: wl0: Broadcom BCM4328 802.11 Wireless Controller
    Sep 21 19:15:50 localhost kernel[0]: 5.10.91.21
    Sep 21 19:15:50 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0/AppleACPIPCI/SATA@1F,2/AppleICH8AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HDS721010KLA330 Media/IOGUIDPartitionScheme/Customer@2
    Sep 21 19:15:50 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Sep 21 19:15:50 localhost kernel[0]: jnl: unknown-dev: replay_journal: from: 41636864 to: 43697664 (joffset 0x1d1c000)
    Sep 21 19:15:50 localhost kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 001ff3fffe6c7bda; max speed s800.
    Sep 21 19:15:50 localhost kernel[0]: [HCIController][configurePM] power parent ready after 1 tries
    Sep 21 19:15:50 localhost kernel[0]: jnl: unknown-dev: journal replay done.
    Sep 21 19:15:50 localhost kernel[0]: HFS: Removed 4 orphaned unlinked files or directories
    Sep 21 19:15:50 localhost kernel[0]: AppleIntelCPUPowerManagement: initialization complete
    Sep 21 19:15:50 localhost kernel[0]: AppleYukon2: Marvell Yukon Gigabit Adapter 88E8055 Singleport Copper SA
    Sep 21 19:15:50 localhost kernel[0]: AppleYukon2: RxRingSize <= 1024, TxRingSize 256, RXMAXLE 1024, TXMAXLE 768, STMAXLE 3328
    Sep 21 19:15:51 localhost rpc.statd[18]: statd.notify - no notifications needed
    Sep 21 19:15:51 localhost kernel[0]: Jettisoning kernel linker.
    Sep 21 19:15:51 localhost DirectoryService[32]: Launched version 5.8.1 (v514.27)
    Sep 21 19:15:51 localhost fseventsd[27]: event logs in /.fseventsd out of sync with volume. destroying old logs. (1323 9 1388)
    Sep 21 19:15:51 localhost fseventsd[27]: log dir: /.fseventsd getting new uuid: A430683D-74D4-4856-AF98-545155C67910
    Sep 21 19:15:51 localhost kernel[0]: Resetting IOCatalogue.
    Sep 21 19:15:51 localhost DirectoryService[32]: Improper shutdown detected
    Sep 21 19:15:52 localhost kernel[0]: GFX0: family specific matching fails
    Sep 21 19:15:52 localhost kernel[0]: Matching service count = 1
    Sep 21 19:15:52 localhost kernel[0]: Matching service count = 2
    Sep 21 19:15:52: --- last message repeated 4 times ---
    Sep 21 19:15:52 localhost kernel[0]: Matching service count = 3
    Sep 21 19:15:52 localhost kernel[0]: NVDANV50HAL loaded and registered.
    Sep 21 19:15:52 localhost kextd[10]: 425 cached, 0 uncached personalities to catalog
    Sep 21 19:15:52 localhost kernel[0]: yukon: Ethernet address 00:1f:f3:5b:2a:57
    Sep 21 19:15:52 localhost kernel[0]: AirPort_Brcm43xx: Ethernet address 00:1f:5b:c8:12:97
    Sep 21 19:15:52 localhost kernel[0]: Previous Shutdown Cause: 3
    Sep 21 19:15:52 localhost kernel[0]: AppleTyMCEDriver::probe(iMac8,1)
    Sep 21 19:15:52 localhost kernel[0]: AppleTyMCEDriver::probe fails
    Sep 21 19:15:52 localhost blued[46]: Apple Bluetooth daemon started.
    Sep 21 19:15:52 localhost kernel[0]: GFX0: family specific matching fails
    Sep 21 19:15:52: --- last message repeated 1 time ---
    Sep 21 19:15:52 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[23]: Login Window Application Started -- Threaded auth
    Sep 21 19:15:52 localhost kernel[0]: GFX0: family specific matching fails
    Sep 21 19:15:52 localhost kernel[0]: Matching service count = 0
    Sep 21 19:15:53 localhost mDNSResponder mDNSResponder-176.3 (Jun 17 2009 18:57:49)[22]: starting
    Sep 21 19:15:53 localhost kernel[0]: AirPort: Link Down on en1
    Sep 21 19:15:53 localhost com.apple.usbmuxd[13]: usbmuxd-201 built for iTunesTen on Aug 12 2010 at 17:33:03, running 32 bit
    Sep 21 19:15:54 localhost /usr/sbin/ocspd[60]: starting
    Sep 21 19:15:54 imac-van-BertjeT configd[34]: setting hostname to "imac-van-BertjeT.local"
    Sep 21 19:15:56 imac-van-BertjeT kernel[0]: [0758ee00][AppleBluetoothHIDMouse::probe] score is 1000
    Sep 21 19:15:56 imac-van-BertjeT kernel[0]: [07a6b400][AppleBluetoothHIDMouse::probe] score is 50
    Sep 21 19:15:58 imac-van-BertjeT org.ntp.ntpd[12]: Error : nodename nor servname provided, or not known
    Sep 21 19:15:58 imac-van-BertjeT ntpdate[67]: can't find host time.euro.apple.com
    Sep 21 19:15:58 imac-van-BertjeT ntpdate[67]: no servers can be used, exiting
    Sep 21 19:16:04 imac-van-BertjeT kernel[0]: Auth result for: 00:23:69:14:b0:89 MAC AUTH succeeded
    Sep 21 19:16:04 imac-van-BertjeT kernel[0]: AirPort: Link Up on en1
    Sep 21 19:16:05 imac-van-BertjeT com.apple.SystemStarter[15]: Starting HP IO Monitor
    Sep 21 19:16:05 imac-van-BertjeT com.apple.SystemStarter[15]: Starting HP Trap Monitor
    Sep 21 19:16:07 imac-van-BertjeT kextd[10]: writing kernel link data to /var/run/mach.sym
    Sep 21 19:16:09 imac-van-BertjeT loginwindow[23]: Login Window Started Security Agent
    Sep 21 19:16:09 imac-van-BertjeT kernel[0]: hfs: early journal init: volume on disk1s6 is read-only and journal is dirty. Can not mount volume.
    Sep 21 19:16:09 imac-van-BertjeT kernel[0]: jnl: disk1s6: replay_journal: from: 7159808 to: 7856128 (joffset 0x385f5000)
    Sep 21 19:16:09 imac-van-BertjeT kernel[0]: jnl: disk1s6: journal replay done.
    Sep 21 19:16:09 imac-van-BertjeT fseventsd[27]: event logs in /Volumes/LaCie/.fseventsd out of sync with volume. destroying old logs. (729 0 1407)
    Sep 21 19:16:09 imac-van-BertjeT fseventsd[27]: log dir: /Volumes/LaCie/.fseventsd getting new uuid: D7CDE814-3AA4-417C-BC7C-0406B07123A8
    Sep 21 19:16:21 imac-van-BertjeT authorizationhost[98]: MechanismInvoke 0x125fe0 retainCount 2
    Sep 21 19:16:21 imac-van-BertjeT SecurityAgent[102]: MechanismInvoke 0x25319420 retainCount 1
    Sep 21 19:16:21 imac-van-BertjeT SecurityAgent[102]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Sep 21 19:16:21 imac-van-BertjeT SecurityAgent[102]: MechanismDestroy 0x25319420 retainCount 1
    Sep 21 19:16:21 imac-van-BertjeT loginwindow[23]: Login Window - Returned from Security Agent
    Sep 21 19:16:21 imac-van-BertjeT authorizationhost[98]: MechanismDestroy 0x125fe0 retainCount 2
    Sep 21 19:16:21 imac-van-BertjeT loginwindow[23]: USER_PROCESS: 23 console
    Sep 21 19:16:21 imac-van-BertjeT com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[93]): Exited: Terminated
    Sep 21 19:16:21 imac-van-BertjeT com.apple.launchd[112] (com.apple.AirPortBaseStationAgent): Unknown key for boolean: EnableTransactions
    Sep 21 19:16:21 imac-van-BertjeT com.apple.launchd[112] (org.x.startx): Unknown key for boolean: EnableTransactions
    Sep 21 19:16:22 imac-van-BertjeT /System/Library/CoreServices/coreservicesd[45]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Publieke map van UserY) returned -14135
    Sep 21 19:16:22 imac-van-BertjeT /System/Library/CoreServices/coreservicesd[45]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Publieke map van UserX) returned -14135
    Sep 21 19:16:23 imac-van-BertjeT /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer[1 27]: CPSGetProcessInfo(): This call is deprecated and should not be called anymore.
    Sep 21 19:16:23 imac-van-BertjeT /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer[1 27]: CPSPBGetProcessInfo(): This call is deprecated and should not be called anymore.
    Sep 21 19:17:12 imac-van-BertjeT mdworker[70]: (Error) SyncInfo: Boot-cache avoidance timed out!

  • Oracle.apps.fnd.framework.OAException: Application: FND, Message Name: LDAP_WRAP_VALIDATE_LOGIN_NO. Tokens: REASON = The E-Business instance is not SSO enabled

    Hi
      I am trying to run OAF Form in Jdeveloper, It's giving following error after refresh of Apps database
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: LDAP_WRAP_VALIDATE_LOGIN_NO. Tokens: REASON = The E-Business instance is not SSO enabled, Please verify the profile Applications SSO Type is set correctly.;
    Anyone knows , what is causing this issue ?
    thanks
    Nk

    And the answer is still the same.
    {forum:id=210}
    And reading the error message "The E-Business instance is not SSO enabled" would seem to give you somewhat of a hint as to what needs to be done

  • TS1398 My wireless password in only 6 lowercase letters, but my iPod touch requires me to enter 8 before allowing me to join.  Therefore it will not let me log on to the wireless network, any solutions?

    My wireless password in only 6 lowercase letters, but my iPod touch requires me to enter 8 before allowing me to join.  Therefore it will not let me log on to the wireless network, any solutions?

    What encryption are you using on the router?
    If WEP you have to set the router to use the first key and you have to enter the first key as the password on the iPod. See:
    iOS: Recommended settings for Wi-Fi routers and access points

  • Any reason not to set up Hotmail account on ipod touch?

    I have just purchased a new iPod Touch. My main mail account is with Apple Mail, and I have a mobileme account. I also have a free Hotmail account? Is there any reason not to set up this Hotmail account on my touch, along with my Mail account - glitches, conflicts, etc. I can live without it if necessary. If no problems, can you point me to a step-by-step instruction guide to set up the Hotmail account? Thanks!

    You can use the web ... using Safari - go to www.hotmail.com - this should bring up a mobile version of the login page. Log in to Hotmail to see your mail. If you don't logout of Hotmail, but simply hit the touch Home button you will be able to recheck you mail just by launching Safari and selecting the pages icon (bottom right) and then selecting the Hotmail page. You will see a Refresh option (or you can touch the clockwise pointing arrow in the URL line).

  • I have Mavericks on my iMac and the latest version of iPhoto 9.5.1 (902.17) but no book, card, calendar, album, slideshow, print and order prints options under Share, which still shows Set Desktop.  Any ideas please?

    I have Mavericks on my iMac and the latest version of iPhoto 9.5.1 (902.17) but no book, card, calendar, album, slideshow, print and order prints options under Share, which still shows Set Desktop.  Any ideas please?

    LN,
    Since I couldn't expand the zip file on my desktop, I expanded the file on an external drive.  Here's the information:
    Hardware Information:
              iMac (27-inch, Late 2012)
              iMac - model: iMac13,2
              1 3.4 GHz Intel Core i7 CPU: 4 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce GTX 675MX - VRAM: 1024 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    Startup Items:
              NUDC: Path: /Library/StartupItems/NUDC
    System Software:
              OS X 10.9.1 (13B42) - Uptime: 0 days 0:16:52
    Disk Information:
              APPLE HDD ST1000DM003 disk0 : (1 TB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 999.35 GB (698.05 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Apple Inc. iPod
              HGST G-Drive Mobile USB 1 TB
                        EFI (disk1s1) <not mounted>: 209.7 MB
                        iMac Backup (disk1s2) /Volumes/iMac Backup: 999.86 GB (10.14 GB free)
              Elgato Systems EyeTV Hybrid
              Apple, Inc. Keyboard Hub
                        Apple, Inc Apple Keyboard
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. MacBook Air SuperDrive
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
              LSI Logic SYM13FW500-CDROM DRIVE 400mbit - 400mbit max
              Newer Technology, Inc. Oxford ATA Device 00 800mbit - 800mbit max
                        disk3s1 (disk3s1) <not mounted>: 32 KB
                        disk3s2 (disk3s2) <not mounted>: 29 KB
                        disk3s3 (disk3s3) <not mounted>: 29 KB
                        disk3s4 (disk3s4) <not mounted>: 29 KB
                        disk3s5 (disk3s5) <not mounted>: 29 KB
                        disk3s6 (disk3s6) <not mounted>: 262 KB
                        disk3s7 (disk3s7) <not mounted>: 262 KB
                        disk3s8 (disk3s8) <not mounted>: 262 KB
                        Media (disk3s10) /Volumes/Media: 499.97 GB (151.37 GB free)
              Newer Technology, Inc. Oxford ATA Device 00 800mbit - 800mbit max
                        EFI (disk2s1) <not mounted>: 209.7 MB
                        Mini Stack (disk2s2) /Volumes/Mini Stack: 999.86 GB (470.15 GB free)
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
                        Apple Inc. Thunderbolt to FireWire Adapter
    Kernel Extensions:
              com.AmbrosiaSW.AudioSupport          (4.1.2 - SDK 10.6)
              com.netralia.driver.VBMicDriver          (1.0.0 - SDK 10.7)
              com.netralia.driver.VBSpeakerDriver          (1.0.0 - SDK 10.7)
    Problem System Launch Daemons:
    Problem System Launch Agents:
              [failed] com.apple.accountsd.plist
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.elgato.EyeConnect.plist
              [failed] com.google.GoogleML.plist
              [loaded] com.google.keystone.daemon.plist
              [loaded] com.microsoft.office.licensing.helper.plist
              [invalid] com.oracle.java.Helper-Tool.plist
    Launch Agents:
              [failed] com.epson.eventmanager.agent.plist
              [failed] com.google.keystone.agent.plist
              [invalid] com.oracle.java.Java-Updater.plist
    User Launch Agents:
              [loaded] com.google.Chrome.framework.plist
              [failed] com.google.GoogleContactSyncAgent.plist
    User Login Items:
              EyeTV Helper
              apple-scc-20131222-190227
              Skype
              Messages
              Thunderbird
    3rd Party Preference Panes:
              remoting_host_prefpane
              Déjà Vu
              DivX
              Flash Player
              Flip4Mac WMV
              GPGPreferences
    Internet Plug-ins::
              Shutterfly: Version: 3.0.1
              Google Earth Web Plug-in: Version: 6.2
              Default Browser: Version: 537 - SDK 10.9
              Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8
              Musicnotes: Version: 1.17.3
              OfficeLiveBrowserPlugin: Version: 12.3.5
              PandoWebInst: Version: 1.0
              FlashPlayer-10.6: Version: 12.0.0.39 - SDK 10.6
              DivXBrowserPlugin: Version: 1.4
              RealPlayer Plugin: Version: (null)
              Flash Player: Version: 12.0.0.39 - SDK 10.6 Outdated! Update
              iPhotoPhotocast: Version: 7.0
              googletalkbrowserplugin: Version: 4.9.1.16010
              QuickTime Plugin: Version: 7.7.3
              AdobePDFViewer: Version: Unknown
              Photo Center Plugin: Version: Photo Center Plugin 1.1.2.0
              Silverlight: Version: 5.1.20913.0 - SDK 10.6
              ContentUploaderPlugin: Version: 1.2
              JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Outdated! Update
    User Internet Plug-ins::
              WebEx64: Version: 1.0
              Move_Media_Player: Version: npmnqmp 071505000006
              WebEx: Version: 1.0
              MRJPlugin: Version: 1.0-JEP-0.9.0
    Bad Fonts:
              None
    Old applications:
              Audiogalaxy Helper:          Version: 3 - SDK 10.5
                        /Applications/Audiogalaxy Helper.app
              Disc Cover 3:          Version: 3.0.10 - SDK 10.5
                        /Applications/Disc Cover 3.app
              Epson Printer Utility 4:          Version: 9.14 - SDK 10.5
                        /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Epson Printer Utility 4.app
              Keynote:          Version: 5.3 - SDK 10.5
                        /Applications/iWork '09/Keynote.app
              Kies:          Version: 2.1.0.13071_1 - SDK 10.5
                        /Applications/Kies.app
              Microsoft Alerts Daemon:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Alerts Daemon.app
              Microsoft AutoUpdate:          Version: 2.3.6 - SDK 10.4
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              Microsoft Chart Converter:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Chart Converter.app
              Microsoft Clip Gallery:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Clip Gallery.app
              Microsoft Database Daemon:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Database Daemon.app
              Microsoft Database Utility:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Database Utility.app
              Microsoft Document Connection:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Document Connection.app
              Microsoft Error Reporting:          Version: 2.2.9 - SDK 10.4
                        /Library/Application Support/Microsoft/MERP2.0/Microsoft Error Reporting.app
              Microsoft Excel:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Excel.app
              Microsoft Graph:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Graph.app
              Microsoft Language Register:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
              Microsoft Office Reminders:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Office Reminders.app
              Microsoft Outlook:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Outlook.app
              Microsoft PowerPoint:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft PowerPoint.app
              Microsoft Ship Asserts:          Version: 1.1.4 - SDK 10.4
                        /Library/Application Support/Microsoft/MERP2.0/Microsoft Ship Asserts.app
              Microsoft Upload Center:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Upload Center.app
              Microsoft Word:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Word.app
              My Day:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/My Day.app
              Numbers:          Version: 2.3 - SDK 10.5
                        /Applications/iWork '09/Numbers.app
              Open XML for Excel:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Open XML for Excel.app
              Pages:          Version: 4.3 - SDK 10.5
                        /Applications/iWork '09/Pages.app
              SLLauncher:          Version: 1.0 - SDK 10.5
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              Senuti:          Version: 1.2.9 - SDK 10.5
                        /Applications/Senuti.app
              Solver:          Version: 1.0 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
              SyncServicesAgent:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/SyncServicesAgent.app
              TechTool Deluxe:          Version: 3.1.4           - SDK 10.4
                        /Applications/TechTool Deluxe.app
              TurboTax Home Business 2011:          Version: 2011.r15.011 - SDK 10.4
                        /Applications/TurboTax Home Business 2011.app
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 930.71 GB Disk used: 280.61 GB
              Destinations:
                        iMac Backup [Local] (Last used)
                        Total size: 931.19 GB
                        Total number of backups: 31
                        Oldest backup: 2013-12-19 05:31:29 +0000
                        Last backup: 2013-12-26 15:57:21 +0000
                        Size of backup disk: Adequate
                                  Backup size 931.19 GB > (Disk used 280.61 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   2%          EyeTV
                   1%          WindowServer
                   1%          Google Chrome
                   1%          EtreCheck
                   0%          AddressBookSourceSync
    Top Processes by Memory:
              328 MB          thunderbird
              213 MB          com.apple.IconServicesAgent
              205 MB          mds_stores
              197 MB          iPhoto
              164 MB          Google Chrome
    Virtual Memory Statistics:
              2.81 GB          Free RAM
              3.50 GB          Active RAM
              778 MB          Inactive RAM
              948 MB          Wired RAM
              499 MB          Page-ins
              0 B          Page-outs

  • HT5012 I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

    I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

        Hello APVzW, we absolutely want the best path to resolution. My apologies for multiple attempts of replacing the device. We'd like to verify the order information and see if we can locate the tracking number. Please send a direct message with the order number so we can dive deeper. Here's steps to send a direct message: http://vz.to/1b8XnPy We look forward to hearing from you soon.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • How do I set project paths in JBuilder 4?

    Hello,
    I am trying to create a new project in JBuilder 4.
    I used the project wizard and set my paths to the following folders:
    C:\OU2007\TM427\mysolution
    However when the project and all files are getting saved to these folders:
    C:\Documents and Settings\Jason\jbproject
    Have you any idea why this is? I�m a bit confused on what I should enter for each of the paths in the project wizard, any help would be appreciated.
    thanks,
    Jason.

    It's difficult to set a single font size without wrecking the display of most web sites. One alternative would be to store your preferred zoom level and apply that to all sites. This requires an add-on such as:
    * [https://addons.mozilla.org/en-US/firefox/addon/6965/ Default FullZoom Level]
    * [https://addons.mozilla.org/en-US/firefox/addon/2592/ NoSquint]
    Does that work for you?

Maybe you are looking for

  • Delivery without sale order

    How can we stop standalone delivery document. In other words, I do not want a delivery document to be raised unless there is a sale order attached. Similarly, a GRPO should not be raised unless there is a PO.

  • Built in Subwoofer Cutting Out

    My early 2011 Macbook pro is experiencing some sort of problem with the built in speakers. Essentially, the subwoofer keeps cutting out and I'm not sure why that's happening. At first I thought the speakers were messed up so I got them replaced at th

  • How do I get itunes to not list the same artist more than once?

    How do I get ituens to not list the same artist more than once?  I have tried editing the info, sorting different ways and sometimes it works and sometimes not...it's very frustrating to me to have the same artist listed multiple times...

  • Using Mac Speech In Garageband

    Hi there! Is there a way to record the Mac Speech (ie. Vicki or one of the other Mac characters) in Garageband as they read a document? Thanks!

  • How to see undo information

    Hi. Oracle 9.2 o/S : Windows Xp, Sp1 I want to know that can a DBA check what information is presently stored in Undo Tablespace (Automatic Mode) or in Roll back Segment (Manual Mode). Pl. Tell Me. Thanks & Regardx