GL account statment in the below specified mentioned format only

Hi
My client required the following report in specific format and can any one tell which tables to look into to get the desored report?
Travelling Expenses – Admin
Date      Description     Reference     Debit     Credit     Balance
1 Apr 2007     Opening Balance                              7,815.70
7 Apr 2007     Airfares for Mr Chai MHto KL for Meeting with Ms Ho WF on SC matters on  15-17/3/07     PV045/07                   789.00           
15 Apr 2007Hotel accommodation for Alzian     PV05807     450.00                      
     attending meeting on 20/3/07                    
23 Apr 2007Reclassification of Inv.5874     JV003/07                 456.00      
     Edward airfares to attend training               
30 Apr 2007Ending Balance         1,239.00     456.0    8,598.70

Hi
From GLT0 (if version is 4.7 or below) or FAGLFLEXT (if version is ECC 5.0 and above) table you can get the total of the debit and credit transactions for a month for a GL account. Transaction data thereafter can be taken from BSIS table with the required selection parameters.
Revert back if you need additional details.
regards,
Rengaraj

Similar Messages

  • Error in the below sql.

    Hi
    I am getting the below error in the below sql
    Hi
    I am getting the error in the below sql
    DECLARE
       pgm_id                  NUMBER := &1;
       schd_dt                 DATE := TO_DATE('&2','MM/DD/YYYY');
       l_schd_dt               DATE := NULL;
       l_pgm_id                NUMBER :=0;
       l_src_id                NUMBER;
       l_bulkCollectSize       NUMBER;
       l_trace_level           NUMBER := 0;
       l_CommitAllowance       INFT1.PRM_VALUE%TYPE;
       v_insrcdcnt             NUMBER := 0;
       g_ErrorString           VARCHAR2(500) := NULL;
       g_log_error             VARCHAR2(300) := NULL;
       g_recs_upd              NUMBER :=0;
       g_recs_ins              NUMBER :=0;
       g_aud_upd_ts            DATE := NULL;
       l_data_nbr              NUMBER := 0;
       l_ts_1             DATE :=NULL;
       l_ts_2               DATE :=NULL;
       l_rest_empno  emp_STG.mbr_nbr%TYPE :='0';
      l_Commitsize            NUMBER;
       CURSOR curTrnRecs(l_rest_empno VARCHAR)
       IS
        SELECT /* user_hash(tmp) PARALLEL(tmp,8) */  tmp.sec_lbl
        ,tmp.empno
         ,tmp.ename
        ,tmp.sal
        ,tmp.deptno
           FROM emp_stg tmp where tmp.mbr_nbr > l_rest_empno   order by tmp.mbr_nbr;
       TYPE rec_emp_stg is TABLE OF emp_STG%ROWTYPE index by PLS_INTEGER;
      stg_emp_stg rec_emp_stg   ;
       counter                 NUMBER         :=0;
       l_idx                  NUMBER;
       errors                  PLS_INTEGER;
        ins_errors EXCEPTION;
        PRAGMA EXCEPTION_INIT(ins_errors, -24381);
    BEGIN
        /* Copy values into local variables */
        l_pro:= pgm_id;
        l_schd_dt := schd_dt;
            /* Check if this is the first execution of the program; Get the last processed timestamp if the run is a restart */
        /* The restartability of this program is slightly differnt. Data_nbr =1 indicates that the last run was successful. The same program can*/
        /* be called multiple times for the same t47date. The restartability is designed accordingly */
        BEGIN
            SELECT /* SQL_TAG(<$RCSfile: t50lyt_can_hist_trans_load.sql,v $><2>) */
                   data_nbr,1,1,
                    NVL(key_text,'0')
            INTO l_data_nbr,
                 l_ts_1,
                 l_ts_2,
                 l_rest_mbr_nbr
            FROM inft
            WHERE TRUNC(key_ts)=TRUNC(l_schd_dt)
              AND pro_id = l_pro_id;
        EXCEPTION
            WHEN NO_DATA_FOUND THEN
              l_data_nbr:=9;
              NULL;
            WHEN OTHERS then
              g_ErrorString := g_log_error||' : SQLCODE = '||SQLCODE||' , ERRORMESSAGE = '||substr(SQLERRM, 1,200);
              RAISE;
        END;
           IF l_data_nbr = 1 THEN
          crm_msg.msg('Exiting:: Program already run');
          RETURN;
        ELSIF l_data_nbr = 0 THEN
          crm_msg.msg('This is a restart for the date '||l_schd_dt);
        ELSIF l_data_nbr= 9 THEN
            crm_msg.msg('First execution of this program');
       END IF;  
        BEGIN
            if l_data_nbr =9 THEN
             crm_msg.msg('This is the First execution of this program');
             INSERT
             INTO inft
               pgm_id,
               key_ts,
               key_text,
               data_nbr,
               data_ts,
               data_text
             VALUES
               l_pro,
               l_schd_dt,
               0,  --to hold empno
               sysdate,
               0   --no of recs processed
       COMMIT;
        END IF;
      END;
        OPEN curTrn(l_rest_empno);
        LOOP
          BEGIN
               FETCH curTrn BULK COLLECT INTO stg_emp_rec LIMIT 50000;
               IF nvl(curTrnRecs%ROWCOUNT,0)=0 THEN
                 crm_msg.msg('No Historical Data');
               END IF;
           FORALL i in 1..stg_emp_rec.COUNT SAVE EXCEPTIONS
             INSERT INTO emp values stg_emp_stg(i);
          counter := counter + 1;         
           g_recs_ins   := g_recs_ins+SQL%ROWCOUNT;
       EXCEPTION
          WHEN ins_errors THEN
             errors := SQL%BULK_EXCEPTIONS.COUNT;
            for j in 1..errors
            LOOP
            l_idx :=sql%bulk_exceptions(j).error_index;
          UPDATE emp SET src_id=stg_emp_rec(i).empno,ename=stg_emp_rec(i).ename,sal = stg_emp_rec(i).sal,
                 WHERE deptno= stg_emp_rec(i).deptno;  
           g_recs_upd := g_recs_upd + SQL%ROWCOUNT;
       ---END;
    -- EXIT WHEN curTrnRecs%NOTFOUND;
    -- END LOOP;
    -- CLOSE curTrnRecs;
      EXCEPTION
       WHEN OTHERS THEN
       g_ErrorString := g_log_error||' : SQLCODE = '||SQLCODE||' , ERRORMESSAGE = '||substr(SQLERRM, 1,200);
       crm_msg.msg(g_ErrorString);
       RAISE;
       END;
    END
        IF (counter >= l_CommitSize) THEN
            BEGIN /* To keep track of the timestamp of the last record processed inthe batch; for restartability */
                                            UPDATE   inft
                        SET      data_ts      = SYSDATE
                               ,key_text     = l_empno (idx)
                        WHERE    pgm_id       = l_pgm_id
                         AND     TRUNC(key_ts)= TRUNC(l_schd_dt);
                        COMMIT;
                    counter:=0;
                    END IF;
                EXCEPTION
                        WHEN OTHERS THEN
                          g_ErrorString := g_log_error||' : SQLCODE = '||SQLCODE||' , ERRORMESSAGE = '||substr(SQLERRM, 1,200);
                          crm_msg.msg(g_ErrorString);
                          RAISE;
                END;
       COMMIT;
      EXIT WHEN curTrn%NOTFOUND;
    --       END LOOP; --End of looping for the main cursor  fetch
       END LOOP;
      CLOSE curTrn;
       BEGIN /* Update the data_nbr to 1 to indicate the update is complete */
             UPDATE inft
             SET data_nbr=1,
                 data_ts=nvl(g_aud_upd_ts,data_ts),
                 data_text = counter
             WHERE pro_id = l_pgm_id
              AND TRUNC(key_ts)=TRUNC(l_schd_dt);
            COMMIT;
           EXCEPTION
             WHEN OTHERS THEN
               g_ErrorString := g_log_error||' : SQLCODE = '||SQLCODE||' , ERRORMESSAGE = '||substr(SQLERRM, 1,200);
               crm_msg.msg(g_ErrorString);
               RAISE;
        END;
        g_log_error := 'LOGGING SUMMARY';
        crm_msg.msg_tab('RECS UPDATED',g_recs_upd);
        crm_msg.msg_tab('RECS INSERTED',g_recs_ins);
        crm_msg.msg('Program ends Successfully');
    EXCEPTION
       WHEN OTHERS THEN
         g_ErrorString := g_log_error||' : SQLCODE = '||SQLCODE||' , ERRORMESSAGE = '||substr(SQLERRM, 1,200);
         crm_msg.msg(g_ErrorString);
    END;
    Elapsed: 00:00:00.00
      EXCEPTION
    ERROR at line 248:
    ORA-06550: line 248, column 3:
    PLS-00103: Encountered the symbol "EXCEPTION" when expecting one of the following:
    ( begin case declare end exit for goto if loop mod null
    pragma raise return select update when while with
    <an identifier> <a double-quoted delimited-identifier>
    <a bind variable> << continue close current delete fetch lock
    insert open rollback savepoint set sql execute commit forall
    merge pipe purge
    ORA-06550: line 255, column 5:
    PLS-00103: Encountered the symbol "IF" when expecting one of the following:
    ORA-06550: line 314, column 2:
    PLS-00103: Encountered the symbol "EXCEPTION" when expecting one of the following:
    ( begin case declare end exit for goto if loop mod null
    pragma raise return select update while with <an identifier>
    <a double-quoted delimited-
    ORA-06550: line 322, column 0:
    PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following:
    end not pragma final instantiable order overriding static
    member constructor mapAppreciate ur help on the above?
    Edited by: user1014019 on Oct 3, 2011 6:45 AM
    Edited by: BluShadow on 03-Oct-2011 15:08
    added {noformat}{noformat} tags. Please read {message:id=9360002} and learn to do this yourself.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Please provide a code that can be compiled, the sample that you provided has compilation errors:
    Have made change to your code block, so that it compiles.Try to run the below code block:
    /* Formatted on 2011/10/03 21:08 (Formatter Plus v4.8.5) */
    DECLARE
       pgm_id              NUMBER                 := &1;
       schd_dt             DATE                   := TO_DATE ('&2', 'MM/DD/YYYY');
       l_schd_dt           DATE                   := NULL;
       l_pgm_id            NUMBER                 := 0;
       l_src_id            NUMBER;
       l_bulkcollectsize   NUMBER;
       l_trace_level       NUMBER                 := 0;
       l_commitallowance   inft1.prm_value%TYPE;
       v_insrcdcnt         NUMBER                 := 0;
       g_errorstring       VARCHAR2 (500)         := NULL;
       g_log_error         VARCHAR2 (300)         := NULL;
       g_recs_upd          NUMBER                 := 0;
       g_recs_ins          NUMBER                 := 0;
       g_aud_upd_ts        DATE                   := NULL;
       l_data_nbr          NUMBER                 := 0;
       l_ts_1              DATE                   := NULL;
       l_ts_2              DATE                   := NULL;
       l_rest_empno        emp_stg.mbr_nbr%TYPE   := '0';
       l_commitsize        NUMBER;
       CURSOR curtrnrecs (l_rest_empno VARCHAR)
       IS
          SELECT /* user_hash(tmp) PARALLEL(tmp,8) */ tmp.sec_lbl, tmp.empno,
                    tmp.ename, tmp.sal, tmp.deptno
              FROM emp_stg tmp
             WHERE tmp.mbr_nbr > l_rest_empno
          ORDER BY tmp.mbr_nbr;
       TYPE rec_emp_stg IS TABLE OF emp_stg%ROWTYPE
          INDEX BY PLS_INTEGER;
       stg_emp_stg         rec_emp_stg;
       counter             NUMBER                 := 0;
       l_idx               NUMBER;
       ERRORS              PLS_INTEGER;
       ins_errors          EXCEPTION;
       PRAGMA EXCEPTION_INIT (ins_errors, -24381);
    BEGIN
       /* Copy values into local variables */
       l_pro := pgm_id;
       l_schd_dt := schd_dt;
           /* Check if this is the first execution of the program; Get the last processed timestamp if the run is a restart */
       /* The restartability of this program is slightly differnt. Data_nbr =1 indicates that the last run was successful. The same program can*/
       /* be called multiple times for the same t47date. The restartability is designed accordingly */
       BEGIN
          SELECT /* SQL_TAG(<$RCSfile: t50lyt_can_hist_trans_load.sql,v $><2>) */
                 data_nbr, 1, 1, NVL (key_text, '0')
            INTO l_data_nbr, l_ts_1, l_ts_2, l_rest_mbr_nbr
            FROM inft
           WHERE TRUNC (key_ts) = TRUNC (l_schd_dt) AND pro_id = l_pro_id;
       EXCEPTION
          WHEN NO_DATA_FOUND
          THEN
             l_data_nbr := 9;
             NULL;
          WHEN OTHERS
          THEN
             g_errorstring :=
                   g_log_error
                || ' : SQLCODE = '
                || SQLCODE
                || ' , ERRORMESSAGE = '
                || SUBSTR (SQLERRM, 1, 200);
             RAISE;
       END;
       IF l_data_nbr = 1
       THEN
          crm_msg.msg ('Exiting:: Program already run');
          RETURN;
       ELSIF l_data_nbr = 0
       THEN
          crm_msg.msg ('This is a restart for the date ' || l_schd_dt);
       ELSIF l_data_nbr = 9
       THEN
          crm_msg.msg ('First execution of this program');
       END IF;
       BEGIN
          IF l_data_nbr = 9
          THEN
             crm_msg.msg ('This is the First execution of this program');
             INSERT INTO inft
                         (pgm_id, key_ts, key_text, data_nbr, data_ts, data_text
                  VALUES (l_pro, l_schd_dt, 0,                     --to hold empno
                                              SYSDATE, 0    --no of recs processed
             COMMIT;
          END IF;
       END;
       OPEN curtrn (l_rest_empno);
       LOOP
          BEGIN
             FETCH curtrn
             BULK COLLECT INTO stg_emp_rec LIMIT 50000;
             IF NVL (curtrnrecs%ROWCOUNT, 0) = 0
             THEN
                crm_msg.msg ('No Historical Data');
             END IF;
             FORALL i IN 1 .. stg_emp_rec.COUNT SAVE EXCEPTIONS
                INSERT INTO emp
                     VALUES stg_emp_stg (i);
             counter := counter + 1;
             g_recs_ins := g_recs_ins + SQL%ROWCOUNT;
          EXCEPTION
             WHEN ins_errors
             THEN
                ERRORS := SQL%BULK_EXCEPTIONS.COUNT;
                FOR j IN 1 .. ERRORS
                LOOP
                   l_idx := SQL%BULK_EXCEPTIONS (j).ERROR_INDEX;
                   UPDATE emp
                      SET src_id = stg_emp_rec (i).empno,
                          ename = stg_emp_rec (i).ename,
                          sal = stg_emp_rec (i).sal
                    WHERE deptno = stg_emp_rec (i).deptno;
                   g_recs_upd := g_recs_upd + SQL%ROWCOUNT;
                END LOOP;
    --END;
             -- EXIT WHEN curTrnRecs%NOTFOUND;
    --END LOOP;
    --CLOSE curTrnRecs;
             WHEN OTHERS
             THEN
                g_errorstring :=
                      g_log_error
                   || ' : SQLCODE = '
                   || SQLCODE
                   || ' , ERRORMESSAGE = '
                   || SUBSTR (SQLERRM, 1, 200);
                crm_msg.msg (g_errorstring);
                RAISE;
          END;
          IF (counter >= l_commitsize)
          THEN
             BEGIN
    /* To keep track of the timestamp of the last record processed inthe batch; for restartability */
                UPDATE inft
                   SET data_ts = SYSDATE,
                       key_text = l_empno (idx)
                 WHERE pgm_id = l_pgm_id AND TRUNC (key_ts) = TRUNC (l_schd_dt);
                COMMIT;
                counter := 0;
             EXCEPTION
                WHEN OTHERS
                THEN
                   g_errorstring :=
                         g_log_error
                      || ' : SQLCODE = '
                      || SQLCODE
                      || ' , ERRORMESSAGE = '
                      || SUBSTR (SQLERRM, 1, 200);
                   crm_msg.msg (g_errorstring);
                   RAISE;
             END;
          END IF;
          COMMIT;
          EXIT WHEN curtrn%NOTFOUND;
    --       END LOOP; --End of looping for the main cursor  fetch
       END LOOP;
       CLOSE curtrn;
       BEGIN     /* Update the data_nbr to 1 to indicate the update is complete */
          UPDATE inft
             SET data_nbr = 1,
                 data_ts = NVL (g_aud_upd_ts, data_ts),
                 data_text = counter
           WHERE pro_id = l_pgm_id AND TRUNC (key_ts) = TRUNC (l_schd_dt);
          COMMIT;
       EXCEPTION
          WHEN OTHERS
          THEN
             g_errorstring :=
                   g_log_error
                || ' : SQLCODE = '
                || SQLCODE
                || ' , ERRORMESSAGE = '
                || SUBSTR (SQLERRM, 1, 200);
             crm_msg.msg (g_errorstring);
             RAISE;
       END;
       g_log_error := 'LOGGING SUMMARY';
       crm_msg.msg_tab ('RECS UPDATED', g_recs_upd);
       crm_msg.msg_tab ('RECS INSERTED', g_recs_ins);
       crm_msg.msg ('Program ends Successfully');
    EXCEPTION
       WHEN OTHERS
       THEN
          g_errorstring :=
                g_log_error
             || ' : SQLCODE = '
             || SQLCODE
             || ' , ERRORMESSAGE = '
             || SUBSTR (SQLERRM, 1, 200);
          crm_msg.msg (g_errorstring);
    END;Hope its useful.
    Cheers

  • I am getting the below mentioned error in the weblogic console.  Jun 26, 2014 12:14:45 PM IST Error javax.enterprise.resource.webcontainer.jsf.application BEA-000000

    Hi,
    After migrating to Spring webflow 2.4.0 , I am getting the below mentioned error in the weblogic console.
    <Jun 26, 2014 12:14:45 PM IST> <Error> <javax.enterprise.resource.webcontainer.jsf.application> <BEA-000000> <Unable to determine expected return type for java.util.List()>.
    It doesn't affect  the application but not able to find the cause for it.
    Regards,
    Sneha

    After many hard working days.i finally found the error cause,i needed to make weblogic datasource also ADF doesnt work on internet explorer browser,it works on safary.hope it helps somebody

  • Can I specify the bank account when uploading the bank statement?

    Currently when I use FF.5 to upload the bank statement, SAP deteremine the the bank G/L account to do posting accoring to the bank and account information in the bank statement. Do we have other choice? Like, no matter with the bank information in the bank statement, we can specify the account manually when uploading the bank statement?

    Hi,
    No you cannot specify the G/L accounts manually while uploading the bank statement. They are derived from the config done in Fin Acc > Bank Acc > Bus Tr > Payt tr > EBS > Make global sett....
    Br, NK

  • Power Efficiency Diagnostics Report - How to fix the below mentioned issues?

    Power Efficiency Diagnostics Report
    Computer Name
    SONY-VAIO
    Scan Time
    2014-04-12T15:29:55Z
    Scan Duration
    60 seconds
    System Manufacturer
    Sony Corporation
    System Product Name
    VPCEH25EN
    BIOS Date
    04/19/2012
    BIOS Version
    R0200Z9
    OS Build
    7601
    Platform Role
    PlatformRoleMobile
    Plugged In
    false
    Process Count
    134
    Thread Count
    1477
    Report GUID
    {bd655715-c758-4329-9f37-029a6c41aa27}
    Analysis Results
    Errors
    USB Suspend:USB Device not Entering Suspend
    The USB device did not enter the Suspend state. Processor power management may be prevented if a USB device does not enter the Suspend state when not in use.
    Device Name
    USB Composite Device
    Host Controller ID
    PCI\VEN_8086&DEV_1C26
    Host Controller Location
    PCI bus 0, device 29, function 0
    Device ID
    USB\VID_12D1&PID_14DB
    Port Path
    1,1
    USB Suspend:USB Device not Entering Suspend
    The USB device did not enter the Suspend state. Processor power management may be prevented if a USB device does not enter the Suspend state when not in use.
    Device Name
    USB Mass Storage Device
    Host Controller ID
    PCI\VEN_8086&DEV_1C26
    Host Controller Location
    PCI bus 0, device 29, function 0
    Device ID
    USB\VID_0BB4&PID_0001
    Port Path
    1,3
    USB Suspend:USB Device not Entering Suspend
    The USB device did not enter the Suspend state. Processor power management may be prevented if a USB device does not enter the Suspend state when not in use.
    Device Name
    USB Root Hub
    Host Controller ID
    PCI\VEN_8086&DEV_1C26
    Host Controller Location
    PCI bus 0, device 29, function 0
    Device ID
    USB\VID_8086&PID_1C26
    Port Path
    USB Suspend:USB Device not Entering Suspend
    The USB device did not enter the Suspend state. Processor power management may be prevented if a USB device does not enter the Suspend state when not in use.
    Device Name
    Generic USB Hub
    Host Controller ID
    PCI\VEN_8086&DEV_1C26
    Host Controller Location
    PCI bus 0, device 29, function 0
    Device ID
    USB\VID_8087&PID_0024
    Port Path
    1
    CPU Utilization:Processor utilization is high
    The average processor utilization during the trace was high. The system will consume less power when the average processor utilization is very low. Review processor utilization for individual processes to determine which applications and services contribute
    the most to total processor utilization.
    Average Utilization (%)
    10.44
    Platform Power Management Capabilities:PCI Express Active-State Power Management (ASPM) Disabled
    PCI Express Active-State Power Management (ASPM) has been disabled due to a known incompatibility with the hardware in this computer.
    Warnings
    Platform Timer Resolution:Platform Timer Resolution
    The default platform timer resolution is 15.6ms (15625000ns) and should be used whenever the system is idle. If the timer resolution is increased, processor power management technologies may not be effective. The timer resolution may be increased due to
    multimedia playback or graphical animations.
    Current Timer Resolution (100ns units)
    10000
    Maximum Timer Period (100ns units)
    156001
    Platform Timer Resolution:Outstanding Timer Request
    A program or service has requested a timer resolution smaller than the platform maximum timer resolution.
    Requested Period
    10000
    Requesting Process ID
    2768
    Requesting Process Path
    \Device\HarddiskVolume3\Users\sony\AppData\Local\Google\Chrome\Application\chrome.exe
    Platform Timer Resolution:Outstanding Timer Request
    A program or service has requested a timer resolution smaller than the platform maximum timer resolution.
    Requested Period
    10000
    Requesting Process ID
    7268
    Requesting Process Path
    \Device\HarddiskVolume3\Users\sony\AppData\Local\Google\Chrome\Application\chrome.exe
    Power Policy:802.11 Radio Power Policy is Maximum Performance (Plugged In)
    The current power policy for 802.11-compatible wireless network adapters is not configured to use low-power modes.
    CPU Utilization:Individual process with significant processor utilization.
    This process is responsible for a significant portion of the total processor utilization recorded during the trace.
    Process Name
    SRService.exe
    PID
    2632
    Average Utilization (%)
    1.61
    Module
    Average Module Utilization (%)
    \SystemRoot\system32\ntoskrnl.exe
    1.34
    \Device\HarddiskVolume3\Windows\SysWOW64\kernel32.dll
    0.04
    \Device\HarddiskVolume3\Windows\System32\wow64.dll
    0.04
    CPU Utilization:Individual process with significant processor utilization.
    This process is responsible for a significant portion of the total processor utilization recorded during the trace.
    Process Name
    chrome.exe
    PID
    1728
    Average Utilization (%)
    1.40
    Module
    Average Module Utilization (%)
    \Device\HarddiskVolume3\Users\sony\AppData\Local\Google\Chrome\Application\34.0.1847.116\chrome_child.dll
    1.21
    \SystemRoot\system32\ntoskrnl.exe
    0.10
    \Device\HarddiskVolume3\Windows\SysWOW64\ntdll.dll
    0.01
    CPU Utilization:Individual process with significant processor utilization.
    This process is responsible for a significant portion of the total processor utilization recorded during the trace.
    Process Name
    chrome.exe
    PID
    5264
    Average Utilization (%)
    0.87
    Module
    Average Module Utilization (%)
    \Device\HarddiskVolume3\Users\sony\AppData\Local\Google\Chrome\Application\34.0.1847.116\chrome.dll
    0.33
    \SystemRoot\system32\ntoskrnl.exe
    0.27
    \Device\HarddiskVolume3\Windows\SysWOW64\ntdll.dll
    0.04
    CPU Utilization:Individual process with significant processor utilization.
    This process is responsible for a significant portion of the total processor utilization recorded during the trace.
    Process Name
    chrome.exe
    PID
    7268
    Average Utilization (%)
    0.59
    Module
    Average Module Utilization (%)
    \Device\HarddiskVolume3\Windows\SysWOW64\nvd3dum.dll
    0.15
    \Device\HarddiskVolume3\Users\sony\AppData\Local\Google\Chrome\Application\34.0.1847.116\libglesv2.dll
    0.08
    \SystemRoot\system32\ntoskrnl.exe
    0.07
    CPU Utilization:Individual process with significant processor utilization.
    This process is responsible for a significant portion of the total processor utilization recorded during the trace.
    Process Name
    System
    PID
    4
    Average Utilization (%)
    0.55
    Module
    Average Module Utilization (%)
    \SystemRoot\system32\ntoskrnl.exe
    0.36
    \SystemRoot\System32\drivers\dxgmms1.sys
    0.06
    \SystemRoot\system32\DRIVERS\nvlddmkm.sys
    0.02
    CPU Utilization:Individual process with significant processor utilization.
    This process is responsible for a significant portion of the total processor utilization recorded during the trace.
    Process Name
    svchost.exe
    PID
    860
    Average Utilization (%)
    0.44
    Module
    Average Module Utilization (%)
    \SystemRoot\system32\ntoskrnl.exe
    0.28
    \Device\HarddiskVolume3\Windows\System32\rpcrt4.dll
    0.04
    \Device\HarddiskVolume3\Windows\System32\ntdll.dll
    0.03
    CPU Utilization:Individual process with significant processor utilization.
    This process is responsible for a significant portion of the total processor utilization recorded during the trace.
    Process Name
    AvastSvc.exe
    PID
    1316
    Average Utilization (%)
    0.38
    Module
    Average Module Utilization (%)
    \SystemRoot\system32\ntoskrnl.exe
    0.13
    \Device\HarddiskVolume3\Program Files\Alwil Software\Avast5\defs\14041100\algo.dll
    0.05
    \Device\HarddiskVolume3\Windows\winsxs\x86_avast.vc110.crt_2036b14a11e83e4a_11.0.60610.1_none_1d37a43bbfe1dc9c\msvcr110.dll
    0.03
    CPU Utilization:Individual process with significant processor utilization.
    This process is responsible for a significant portion of the total processor utilization recorded during the trace.
    Process Name
    chrome.exe
    PID
    6232
    Average Utilization (%)
    0.29
    Module
    Average Module Utilization (%)
    \Device\HarddiskVolume3\Users\sony\AppData\Local\Google\Chrome\Application\34.0.1847.116\chrome_child.dll
    0.21
    0.04
    \SystemRoot\system32\ntoskrnl.exe
    0.01
    CPU Utilization:Individual process with significant processor utilization.
    This process is responsible for a significant portion of the total processor utilization recorded during the trace.
    Process Name
    Apoint.exe
    PID
    4420
    Average Utilization (%)
    0.28
    Module
    Average Module Utilization (%)
    \SystemRoot\system32\ntoskrnl.exe
    0.14
    \SystemRoot\System32\win32k.sys
    0.06
    \SystemRoot\system32\drivers\fltmgr.sys
    0.02
    CPU Utilization:Individual process with significant processor utilization.
    This process is responsible for a significant portion of the total processor utilization recorded during the trace.
    Process Name
    explorer.exe
    PID
    4056
    Average Utilization (%)
    0.21
    Module
    Average Module Utilization (%)
    \SystemRoot\System32\win32k.sys
    0.09
    \SystemRoot\system32\ntoskrnl.exe
    0.07
    \Device\HarddiskVolume3\Windows\winsxs\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_fa396087175ac9ac\comctl32.dll
    0.00
    Information
    Platform Timer Resolution:Timer Request Stack
    The stack of modules responsible for the lowest platform timer setting in this process.
    Requested Period
    10000
    Requesting Process ID
    2768
    Requesting Process Path
    \Device\HarddiskVolume3\Users\sony\AppData\Local\Google\Chrome\Application\chrome.exe
    Calling Module Stack
    \Device\HarddiskVolume3\Windows\SysWOW64\ntdll.dll
    \Device\HarddiskVolume3\Windows\SysWOW64\winmm.dll
    \Device\HarddiskVolume3\Users\sony\AppData\Local\Google\Chrome\Application\34.0.1847.116\chrome_child.dll
    \Device\HarddiskVolume3\Windows\SysWOW64\kernel32.dll
    \Device\HarddiskVolume3\Windows\SysWOW64\ntdll.dll
    Platform Timer Resolution:Timer Request Stack
    The stack of modules responsible for the lowest platform timer setting in this process.
    Requested Period
    10000
    Requesting Process ID
    7268
    Requesting Process Path
    \Device\HarddiskVolume3\Users\sony\AppData\Local\Google\Chrome\Application\chrome.exe
    Calling Module Stack
    \Device\HarddiskVolume3\Windows\SysWOW64\ntdll.dll
    \Device\HarddiskVolume3\Windows\SysWOW64\winmm.dll
    \Device\HarddiskVolume3\Windows\SysWOW64\d3d9.dll
    \Device\HarddiskVolume3\Users\sony\AppData\Local\Google\Chrome\Application\34.0.1847.116\libglesv2.dll
    \Device\HarddiskVolume3\Users\sony\AppData\Local\Google\Chrome\Application\34.0.1847.116\libegl.dll
    \Device\HarddiskVolume3\Users\sony\AppData\Local\Google\Chrome\Application\34.0.1847.116\chrome_child.dll
    Power Policy:Active Power Plan
    The current power plan in use
    Plan Name
    OEM Balanced
    Plan GUID
    {381b4222-f694-41f0-9685-ff5bb260df2e}
    Power Policy:Power Plan Personality (On Battery)
    The personality of the current power plan when the system is on battery power.
    Personality
    Balanced
    Power Policy:Video Quality (On Battery)
    Enables Windows Media Player to optimize for quality or power savings when playing video.
    Quality Mode
    Balance Video Quality and Power Savings
    Power Policy:Power Plan Personality (Plugged In)
    The personality of the current power plan when the system is plugged in.
    Personality
    Balanced
    Power Policy:Video quality (Plugged In)
    Enables Windows Media Player to optimize for quality or power savings when playing video.
    Quality Mode
    Optimize for Video Quality
    System Availability Requests:Analysis Success
    Analysis was successful. No energy efficiency problems were found. No information was returned.
    Battery:Battery Information
    Battery ID
    5950SONY Corp. VGP-BPS26
    Manufacturer
    SONY Corp.
    Serial Number
    5950
    Chemistry
    LION
    Long Term
    1
    Design Capacity
    45040
    Last Full Charge
    34940
    Platform Power Management Capabilities:Supported Sleep States
    Sleep states allow the computer to enter low-power modes after a period of inactivity. The S3 sleep state is the default sleep state for Windows platforms. The S3 sleep state consumes only enough power to preserve memory contents and allow the computer
    to resume working quickly. Very few platforms support the S1 or S2 Sleep states.
    S1 Sleep Supported
    false
    S2 Sleep Supported
    false
    S3 Sleep Supported
    true
    S4 Sleep Supported
    true
    Platform Power Management Capabilities:Adaptive Display Brightness is supported.
    This computer enables Windows to automatically control the brightness of the integrated display.
    Platform Power Management Capabilities:Processor Power Management Capabilities
    Effective processor power management enables the computer to automatically balance performance and energy consumption.
    Group
    0
    Index
    0
    Idle (C) State Count
    3
    Performance (P) State Count
    14
    Throttle (T) State Count
    8
    Platform Power Management Capabilities:Processor Power Management Capabilities
    Effective processor power management enables the computer to automatically balance performance and energy consumption.
    Group
    0
    Index
    1
    Idle (C) State Count
    3
    Performance (P) State Count
    14
    Throttle (T) State Count
    8
    Platform Power Management Capabilities:Processor Power Management Capabilities
    Effective processor power management enables the computer to automatically balance performance and energy consumption.
    Group
    0
    Index
    2
    Idle (C) State Count
    3
    Performance (P) State Count
    14
    Throttle (T) State Count
    8
    Platform Power Management Capabilities:Processor Power Management Capabilities
    Effective processor power management enables the computer to automatically balance performance and energy consumption.
    Group
    0
    Index
    3
    Idle (C) State Count
    3
    Performance (P) State Count
    14
    Throttle (T) State Count
    8

    Hi,
    What is the symptom of the issue you encountered? The report shows there's a "known incompatibility with the hardware" and all "USB Suspend:USB Device not Entering Suspend" errors are caused by the prevention of Power Management (which is disabled due to
    hardware issue) so have you made any hardware change rencently?
    You can also manually check the Power Management setting, control panel\power options\chang plan settings\change advanced power settings, scroll down to PCI Express (check if you can set it to "Moderate Power Savings") and Process Power Management(should be
    active).
    Yolanda Zhu
    TechNet Community Support

  • Outlook - The path specified for the file SharePoint Lists PST is not valid

    Some users are connecting via Citrix XenApp to Microsoft Server 2008 R2 and using Microsoft Office 2010 (14.0.7109.5000) SP2 MSO (14.0.7116.5000) - Microsoft Office Profressional Plus 2010 x86 version for their email.  Microsoft Exchange Server 2010
    SP2 for email.
    They are connected to Microsoft SharePoint 2010 SP2 August 2013 CU, via a SharePoint Calender; they have View permissions to the SharePoint calendar using Classic Mode permissions (Not Claims).  No permissions have / are changing on this SharePoint
    Calendar.  They connect to the SharePoint Calender to Outlook.
    When they open up their Office Outlook client, they receive an error "Outlook Data File" "The path specified for the file \AppData\Local\Microsoft\Outlook\SharePoint Lists.pst is not valid." OK
    They select OK and they get a window popping up with the option to try to find the SharePoint list.  "Create/Open Outlook Data File" (File name: 'SharePoint Lists') Open Cancel.  They select Cancel.
    They are returned to their Outlook client "email." 
    As an I.T. administrator and SharePoint Administrator, I had a remote session with them, using Bomgar software and I Go to File Menu, Account Settings, SharePoint Lists Tab but there is no list there so go to the Data Files tab and see SharePoint Lists listed. 
    Selecting it once, and clicking on Settings... button gives error message similar to the one above about PST not valid.
    STRANGE in that, when you do that!  You can go to Home tab, Calendar (Ctrl+2), and see Other Calendars and now the SharePoint calendar that was supposed to be there before, but was just "empty!"  There was only the Other Calendars
    option but it didn't have any "sub" calendar item.
    A similar issue is when Other Calendars is listed, and has a sub calendar listed, a SharePoint connected calendar.  You click on it and get "Microsoft Outlook" "The set of folders cannot be opened. The path specified for the file c:\Users\USERNAMEHERE\AppData\Local\Microsoft\Outlook\SharePoint
    Lists.pst is not valid."  OK
    Click OK and go through the above steps to get the same result.  After going into Account Settings, Data Files, checking on the Settings... button, and receiving the error message, again mentioned above, and the prompt to Create/Open Outlook Data File,
    thgen I can go back into Account Settings, Data Files, and double click on the SharePoint Lists and instead of an error, the Outlook Data File comes up, with Change Password... Compact Now, Comment, Name, Filename, Format (Outlook Data File) OK Cancel.
    Can go back to the Calendar (Ctrl+2) and Other Calendars, and the SharePoint Calendar "Sub calendar" will appear and operate as normal!  All was done was go into the Account settings and "check" on the "error." 
    Tried to delete the SharePoint Lists and close out and add it and then go back in, and it "worked" for a few days.  I later turned on Logging and for over 24 hours it was on for the user.  The user was not on forever. 
    In the Outlook Logging folder, from the users profile, I found many *.log files, firstrun, OPMLog, ETL files, one of which is 6MB, and some prof_001_outlook....txt files.  I clickedo n the SharePoint Lists.pst.log file 1KB
    It is listed here:
    Store File Name: SharePoint Lists.pst
    Date|Time|Action|Search Owner|NID|Change Action|Change Semantics|URL|Count Of DocIDs|Next NID Index to add to All Msg folder|Next NID Index to push to FTE|Folder Path|Folder Path ID|HRESULT|Result Status
    2014/05/23|08:10:22:672|SGD_ScOpenNode(fCreate=FALSE)||||0x80040818|FAIL
    2014/05/23|08:10:22:672|SGD_ScOpenNode(fCreate=TRUE)|||||OK
    2014/05/23|08:10:22:673|Marking store for re-push: Newly created store|0|||||||||||OK
    2014/05/23|08:10:22:673|SGO_ScMarkPushEverythingDone|0|||||||||||OK
    firstrun.log
    *** Starting First Run (05-23-2014 07:32:08) ***
    ...HrPreSplashFirstRun called.
    ...HrPreLogFirstRun called.
    ...HrPostLogFirstRun called.
    ...deleting WAB4/UseOutlook because we're using MAPI.
    ...writing UUID to HKCU.
    ...setting Primary Client to Outlook.
    *** Ending First Run (05-23-2014 07:32:26) ***
    OPMLog.log
    2014.05.23 07:32:28 <<<< Logging Started (level is LTF_TRACE) >>>>
    2014.05.23 07:32:28 HELPER::Initialize called
    2014.05.23 07:32:28 Initializing: Finding a Transport
    2014.05.23 07:32:28 MAPI XP Call: XPProviderInit in EMSMDB.DLL, hr = 0x00000000
    2014.05.23 07:32:28 MAPI Status: (-- -- ---/--- -- ---)
    2014.05.23 07:32:28 MAPI XP Call: TransportLogon, hr = 0x00000000
    2014.05.23 07:32:28 Initializing: Found a transport, Error code = 0x00000000
    2014.05.23 07:32:28 MAPI XP Call: AddressTypes, hr = 0x00000000, cAddrs = 3, cUids = 1
    2014.05.23 07:32:28 MAPI Status: (IN -- ---/OUT -- ---)
    2014.05.23 07:32:28 MAPI XP Call: TransportNotify(BEGIN_IN|BEGIN_OUT), hr = 0x00000000
    2014.05.23 07:32:28 HELPER::Initialize done, Error code = 0x00000000
    2014.05.23 07:32:28 HELPER::GetCapabilities called, Error code = 0x00000000
    2014.05.23 07:32:28 HELPER::Initialize called
    2014.05.23 07:32:28 Initializing: Finding a Transport
    2014.05.23 07:32:28 MAPI XP Call: XPProviderInit in EMSMDB.DLL, hr = 0x00000000
    2014.05.23 07:32:28 MAPI Status: (-- -- ---/--- -- ---)
    2014.05.23 07:32:28 MAPI XP Call: TransportLogon, hr = 0x00000000
    2014.05.23 07:32:28 Initializing: Found a transport, Error code = 0x00000000
    2014.05.23 07:32:28 MAPI XP Call: AddressTypes, hr = 0x00000000, cAddrs = 3, cUids = 1
    2014.05.23 07:32:28 MAPI Status: (IN -- ---/OUT -- ---)
    2014.05.23 07:32:28 MAPI XP Call: TransportNotify(BEGIN_IN|BEGIN_OUT), hr = 0x00000000
    2014.05.23 07:32:28 HELPER::Initialize done, Error code = 0x00000000
    2014.05.23 07:32:28 HELPER::GetCapabilities called, Error code = 0x00000000
    2014.05.23 07:32:45 HELPER::Uninitialize called
    2014.05.23 07:32:45 MAPI Status: (-- -- ---/--- -- ---)
    2014.05.23 07:32:45 MAPI XP Call: TransportNotify(END_IN|END_OUT), hr = 0x00000000
    2014.05.23 07:32:45 MAPI XP Call: TransportLogoff in EMSMDB.DLL, hr = 0x00000000
    2014.05.23 07:32:45 MAPI XP Call: Shutdown, hr = 0x00000000
    2014.05.23 07:32:45 HELPER::Uninitialize called
    2014.05.23 07:32:45 MAPI Status: (-- -- ---/--- -- ---)
    2014.05.23 07:32:45 MAPI XP Call: TransportNotify(END_IN|END_OUT), hr = 0x00000000
    2014.05.23 07:32:45 MAPI XP Call: TransportLogoff in EMSMDB.DLL, hr = 0x00000000
    2014.05.23 07:32:45 MAPI XP Call: Shutdown, hr = 0x00000000
    2014.05.23 07:32:45 Resource manager terminated
    2014.05.23 07:34:06 <<<< Logging Started (level is LTF_TRACE) >>>>
    2014.05.23 07:34:06 HELPER::Initialize called
    2014.05.23 07:34:06 Initializing: Finding a Transport
    2014.05.23 07:34:06 MAPI XP Call: XPProviderInit in EMSMDB.DLL, hr = 0x00000000
    2014.05.23 07:34:06 MAPI Status: (-- -- ---/--- -- ---)
    2014.05.23 07:34:06 MAPI XP Call: TransportLogon, hr = 0x00000000
    2014.05.23 07:34:06 Initializing: Found a transport, Error code = 0x00000000
    2014.05.23 07:34:06 MAPI XP Call: AddressTypes, hr = 0x00000000, cAddrs = 3, cUids = 1
    2014.05.23 07:34:06 MAPI Status: (IN -- ---/OUT -- ---)
    2014.05.23 07:34:06 MAPI XP Call: TransportNotify(BEGIN_IN|BEGIN_OUT), hr = 0x00000000
    2014.05.23 07:34:06 HELPER::Initialize done, Error code = 0x00000000
    2014.05.23 07:34:06 HELPER::GetCapabilities called, Error code = 0x00000000
    2014.05.23 07:34:06 HELPER::Initialize called
    2014.05.23 07:34:06 Initializing: Finding a Transport
    2014.05.23 07:34:06 MAPI XP Call: XPProviderInit in EMSMDB.DLL, hr = 0x00000000
    2014.05.23 07:34:06 MAPI Status: (-- -- ---/--- -- ---)
    2014.05.23 07:34:06 MAPI XP Call: TransportLogon, hr = 0x00000000
    2014.05.23 07:34:06 Initializing: Found a transport, Error code = 0x00000000
    2014.05.23 07:34:06 MAPI XP Call: AddressTypes, hr = 0x00000000, cAddrs = 3, cUids = 1
    2014.05.23 07:34:06 MAPI Status: (IN -- ---/OUT -- ---)
    2014.05.23 07:34:06 MAPI XP Call: TransportNotify(BEGIN_IN|BEGIN_OUT), hr = 0x00000000
    2014.05.23 07:34:06 HELPER::Initialize done, Error code = 0x00000000
    2014.05.23 07:34:06 HELPER::GetCapabilities called, Error code = 0x00000000
    2014.05.23 07:35:12 [email protected]: Synch operation started (flags = 00000001)
    2014.05.23 07:35:12 [email protected]: UploadItems: 1 messages to send
    2014.05.23 07:35:12 EXECUTING Put MAPI TASK
    2014.05.23 07:35:13 Starting the Spooling Cycle
    2014.05.23 07:35:13 MAPI Status: (IN -- ---/OUT fl ---)
    2014.05.23 07:35:13 MAPI XP Call: FlushQueues, hr = 0x00000000, ulFlushFlags = 0x0000001a
    2014.05.23 07:35:13 Sending one message
    2014.05.23 07:35:13 Progress: Sending message 'RE: Good Morning!' (size 14.76 KBytes)
    2014.05.23 07:35:13 MAPI Status: (IN -- ---/OUT fl act)
    2014.05.23 07:35:13 MAPI Status: (IN -- ---/OUT fl ---)
    2014.05.23 07:35:13 MAPI XP Call: SubmitMessage, hr = 0x00000000
    2014.05.23 07:35:13 MAPI XP Call: EndMessage, hr = 0x00000000
    2014.05.23 07:35:13 FINISHED MAPI TASK
    2014.05.23 07:35:13 [email protected]: ReportStatus: RSF_COMPLETED, hr = 0x00000000
    2014.05.23 07:35:13 [email protected]: Synch operation completed
    2014.05.23 07:35:13 Sending done, Error code = 0x00000000
    2014.05.23 07:35:13 Sending done, Error code = 0x8004010f
    2014.05.23 07:35:13 MAPI Status: (IN -- ---/OUT -- ---)
    2014.05.23 07:35:13 Finishing the Spooling Cycle, Error code = 0x00000000
    2014.05.23 07:37:53 [email protected]: Synch operation started (flags = 00000001)
    2014.05.23 07:37:53 [email protected]: UploadItems: 1 messages to send
    2014.05.23 07:37:53 EXECUTING Put MAPI TASK
    2014.05.23 07:37:53 Starting the Spooling Cycle
    2014.05.23 07:37:53 MAPI Status: (IN -- ---/OUT fl ---)
    2014.05.23 07:37:53 MAPI XP Call: FlushQueues, hr = 0x00000000, ulFlushFlags = 0x0000001a
    2014.05.23 07:37:53 Sending one message
    2014.05.23 07:37:53 Progress: Sending message 'RE: Good Morning!' (size 14.03 KBytes)
    2014.05.23 07:37:53 MAPI Status: (IN -- ---/OUT fl act)
    2014.05.23 07:37:53 MAPI Status: (IN -- ---/OUT fl ---)
    2014.05.23 07:37:53 MAPI XP Call: SubmitMessage, hr = 0x00000000
    2014.05.23 07:37:53 MAPI XP Call: EndMessage, hr = 0x00000000
    2014.05.23 07:37:53 FINISHED MAPI TASK
    2014.05.23 07:37:53 [email protected]: ReportStatus: RSF_COMPLETED, hr = 0x00000000
    2014.05.23 07:37:53 [email protected]: Synch operation completed
    2014.05.23 07:37:53 Sending done, Error code = 0x00000000
    2014.05.23 07:37:53 Sending done, Error code = 0x8004010f
    2014.05.23 07:37:53 MAPI Status: (IN -- ---/OUT -- ---)
    2014.05.23 07:37:53 Finishing the Spooling Cycle, Error code = 0x00000000
    2014.05.23 07:57:34 [email protected]: Synch operation started (flags = 00000001)
    2014.05.23 07:57:34 [email protected]: UploadItems: 1 messages to send
    2014.05.23 07:57:34 EXECUTING Put MAPI TASK
    2014.05.23 07:57:34 Starting the Spooling Cycle
    2014.05.23 07:57:34 MAPI Status: (IN -- ---/OUT fl ---)
    2014.05.23 07:57:34 MAPI XP Call: FlushQueues, hr = 0x00000000, ulFlushFlags = 0x0000001a
    2014.05.23 07:57:34 Sending one message
    2014.05.23 07:57:34 Progress: Sending message 'TP - Hold PE Call ' (size 6.00 KBytes)
    2014.05.23 07:57:34 MAPI Status: (IN -- ---/OUT fl act)
    2014.05.23 07:57:34 MAPI Status: (IN -- ---/OUT fl ---)
    2014.05.23 07:57:34 MAPI XP Call: SubmitMessage, hr = 0x00000000
    2014.05.23 07:57:34 MAPI XP Call: EndMessage, hr = 0x00000000
    2014.05.23 07:57:34 FINISHED MAPI TASK
    2014.05.23 07:57:34 [email protected]: ReportStatus: RSF_COMPLETED, hr = 0x00000000
    2014.05.23 07:57:34 [email protected]: Synch operation completed
    2014.05.23 07:57:34 Sending done, Error code = 0x00000000
    2014.05.23 07:57:34 Sending done, Error code = 0x8004010f
    2014.05.23 07:57:34 MAPI Status: (IN -- ---/OUT -- ---)
    2014.05.23 07:57:34 Finishing the Spooling Cycle, Error code = 0x00000000
    2014.05.23 07:58:58 [email protected]: Synch operation started (flags = 00000001)
    2014.05.23 07:58:58 [email protected]: UploadItems: 1 messages to send
    2014.05.23 07:58:58 EXECUTING Put MAPI TASK
    2014.05.23 07:58:58 Starting the Spooling Cycle
    2014.05.23 07:58:58 MAPI Status: (IN -- ---/OUT fl ---)
    2014.05.23 07:58:58 MAPI XP Call: FlushQueues, hr = 0x00000000, ulFlushFlags = 0x0000001a
    2014.05.23 07:58:58 Sending one message
    2014.05.23 07:58:58 Progress: Sending message 'TP - Hold PE Call' (size 6.00 KBytes)
    2014.05.23 07:58:58 MAPI Status: (IN -- ---/OUT fl act)
    2014.05.23 07:58:58 MAPI Status: (IN -- ---/OUT fl ---)
    2014.05.23 07:58:58 MAPI XP Call: SubmitMessage, hr = 0x00000000
    2014.05.23 07:58:58 MAPI XP Call: EndMessage, hr = 0x00000000
    2014.05.23 07:58:58 FINISHED MAPI TASK
    2014.05.23 07:58:58 [email protected]: ReportStatus: RSF_COMPLETED, hr = 0x00000000
    2014.05.23 07:58:58 [email protected]: Synch operation completed
    2014.05.23 07:58:58 Sending done, Error code = 0x00000000
    2014.05.23 07:58:58 Sending done, Error code = 0x8004010f
    2014.05.23 07:58:58 MAPI Status: (IN -- ---/OUT -- ---)
    2014.05.23 07:58:58 Finishing the Spooling Cycle, Error code = 0x00000000
    2014.05.23 08:03:12 [email protected]: Synch operation started (flags = 00000001)
    2014.05.23 08:03:12 [email protected]: UploadItems: 1 messages to send
    2014.05.23 08:03:12 EXECUTING Put MAPI TASK
    2014.05.23 08:03:12 Starting the Spooling Cycle
    2014.05.23 08:03:12 MAPI Status: (IN -- ---/OUT fl ---)
    2014.05.23 08:03:12 MAPI XP Call: FlushQueues, hr = 0x00000000, ulFlushFlags = 0x0000001a
    2014.05.23 08:03:12 Sending one message
    2014.05.23 08:03:12 Progress: Sending message 'Accepted: TP - Hold PE Call' (size 5.70 KBytes)
    2014.05.23 08:03:12 MAPI Status: (IN -- ---/OUT fl act)
    2014.05.23 08:03:12 MAPI Status: (IN -- ---/OUT fl ---)
    2014.05.23 08:03:12 MAPI XP Call: SubmitMessage, hr = 0x00000000
    2014.05.23 08:03:12 MAPI XP Call: EndMessage, hr = 0x00000000
    2014.05.23 08:03:12 FINISHED MAPI TASK
    2014.05.23 08:03:12 [email protected]: ReportStatus: RSF_COMPLETED, hr = 0x00000000
    2014.05.23 08:03:12 [email protected]: Synch operation completed
    2014.05.23 08:03:12 Sending done, Error code = 0x00000000
    2014.05.23 08:03:12 Sending done, Error code = 0x8004010f
    2014.05.23 08:03:12 MAPI Status: (IN -- ---/OUT -- ---)
    2014.05.23 08:03:12 Finishing the Spooling Cycle, Error code = 0x00000000
    2014.05.23 08:03:16 [email protected]: Synch operation started (flags = 00000001)
    2014.05.23 08:03:16 [email protected]: UploadItems: 1 messages to send
    2014.05.23 08:03:16 EXECUTING Put MAPI TASK
    2014.05.23 08:03:17 Starting the Spooling Cycle
    2014.05.23 08:03:17 MAPI Status: (IN -- ---/OUT fl ---)
    2014.05.23 08:03:17 MAPI XP Call: FlushQueues, hr = 0x00000000, ulFlushFlags = 0x0000001a
    2014.05.23 08:03:17 Sending one message
    2014.05.23 08:03:17 Progress: Sending message 'Accepted: TP - Hold PE Call ' (size 5.70 KBytes)
    2014.05.23 08:03:17 MAPI Status: (IN -- ---/OUT fl act)
    2014.05.23 08:03:17 MAPI Status: (IN -- ---/OUT fl ---)
    2014.05.23 08:03:17 MAPI XP Call: SubmitMessage, hr = 0x00000000
    2014.05.23 08:03:17 MAPI XP Call: EndMessage, hr = 0x00000000
    2014.05.23 08:03:17 FINISHED MAPI TASK
    2014.05.23 08:03:17 [email protected]: ReportStatus: RSF_COMPLETED, hr = 0x00000000
    2014.05.23 08:03:17 [email protected]: Synch operation completed
    2014.05.23 08:03:17 Sending done, Error code = 0x00000000
    2014.05.23 08:03:17 Sending done, Error code = 0x8004010f
    2014.05.23 08:03:17 MAPI Status: (IN -- ---/OUT -- ---)
    2014.05.23 08:03:17 Finishing the Spooling Cycle, Error code = 0x00000000
    2014.05.23 08:04:08 [email protected]: Synch operation started (flags = 00000031)
    2014.05.23 08:04:08 [email protected]: StartImport(flags = 00000000, max msg = ffffffff): full items
    2014.05.23 08:04:08 [email protected]: UploadItems: 0 messages to send
    2014.05.23 08:04:08 [email protected]: Synch operation started (flags = 00000031)
    2014.05.23 08:04:08 [email protected]: StartImport(flags = 00000000, max msg = ffffffff): full items
    2014.05.23 08:04:08 [email protected]: UploadItems: 0 messages to send
    2014.05.23 08:04:08 Starting the Spooling Cycle
    2014.05.23 08:04:08 MAPI Status: (IN fl ---/OUT -- ---)
    2014.05.23 08:04:08 MAPI XP Call: FlushQueues, hr = 0x00000000, ulFlushFlags = 0x0000001c
    2014.05.23 08:04:08 MAPI XP Call: Poll, hr = 0x00000000, cPollCount = 636
    2014.05.23 08:04:08 Progress: Receiving message (message 1 out of 637, size unknown)
    2014.05.23 08:04:08 Downloading one message
    2014.05.23 08:04:08 Transport tightly coupled with store, download is NOOP
    2014.05.23 08:04:08 Downloading done, Error code = 0x8004010f
    2014.05.23 08:04:08 MAPI Status: (IN -- ---/OUT -- ---)
    2014.05.23 08:04:08 FINISHED MAPI TASK
    2014.05.23 08:04:08 [email protected]: ReportStatus: RSF_COMPLETED, hr = 0x00000000
    2014.05.23 08:04:08 Finishing the Spooling Cycle, Error code = 0x00000000
    2014.05.23 08:04:08 Starting the Spooling Cycle
    2014.05.23 08:04:08 MAPI Status: (IN fl ---/OUT -- ---)
    2014.05.23 08:04:08 MAPI XP Call: FlushQueues, hr = 0x00000000, ulFlushFlags = 0x0000001c
    2014.05.23 08:04:08 MAPI XP Call: Poll, hr = 0x00000000, cPollCount = 706
    2014.05.23 08:04:08 Progress: Receiving message (message 1 out of 707, size unknown)
    2014.05.23 08:04:08 Downloading one message
    2014.05.23 08:04:08 Transport tightly coupled with store, download is NOOP
    2014.05.23 08:04:08 Downloading done, Error code = 0x8004010f
    2014.05.23 08:04:08 MAPI Status: (IN -- ---/OUT -- ---)
    2014.05.23 08:04:08 FINISHED MAPI TASK
    2014.05.23 08:04:08 [email protected]: ReportStatus: RSF_COMPLETED, hr = 0x00000000
    2014.05.23 08:04:08 Finishing the Spooling Cycle, Error code = 0x00000000
    2014.05.23 08:04:08 EXECUTING EndSession MAPI TASK
    2014.05.23 08:04:09 Starting the Simplified Transfer Cycle
    2014.05.23 08:04:09 MAPI XP Call: Poll, hr = 0x00000000, iMsgsReceived = 0, cPollCount = 636
    2014.05.23 08:04:09 Progress: Receiving message (message 1 out of 637, size unknown)
    2014.05.23 08:04:09 Downloading one message
    2014.05.23 08:04:09 MAPI Status: (IN -- act/OUT -- ---)
    2014.05.23 08:04:09 MAPI Status: (IN -- ---/OUT -- ---)
    2014.05.23 08:04:09 Downloading done, Error code = 0x8004010f
    2014.05.23 08:04:09 Finishing the Spooling Cycle, Error code = 0x00000000
    2014.05.23 08:04:09 FINISHED MAPI TASK
    2014.05.23 08:04:09 [email protected]: ReportStatus: RSF_COMPLETED, hr = 0x00000000
    2014.05.23 08:04:09 [email protected]: Synch operation completed
    2014.05.23 08:04:09 EXECUTING EndSession MAPI TASK
    2014.05.23 08:04:09 Starting the Simplified Transfer Cycle
    2014.05.23 08:04:09 MAPI XP Call: Poll, hr = 0x00000000, iMsgsReceived = 0, cPollCount = 706
    2014.05.23 08:04:09 Progress: Receiving message (message 1 out of 707, size unknown)
    2014.05.23 08:04:09 Downloading one message
    2014.05.23 08:04:09 MAPI Status: (IN -- act/OUT -- ---)
    2014.05.23 08:04:09 MAPI Status: (IN -- ---/OUT -- ---)
    2014.05.23 08:04:09 Downloading done, Error code = 0x8004010f
    2014.05.23 08:04:09 Finishing the Spooling Cycle, Error code = 0x00000000
    2014.05.23 08:04:09 FINISHED MAPI TASK
    2014.05.23 08:04:09 [email protected]: ReportStatus: RSF_COMPLETED, hr = 0x00000000
    2014.05.23 08:04:09 [email protected]: Synch operation completed
    They are using a CRM client 2011 (Server is CRM 2011 - on premise) as well as having other connected email accounts - managed accounts, like Accounting or HR, etc.
    What can I look for / provide for you all to assist?  I am almost ready to open a ticket with Microsoft to resolve this as it has been happening for multiple users for multiple weeks.
    When "I" go in, logged on as myself, I do NOT have this problem, however my account is not "old" in that I just logged onto the account domain\matthew.carter, where these users use their accounts day in and day out for weeks / months
    / (some years).
    Thank you!

    Did you post this in the SharePoint Section? Did you find a resolution for this?
    We are experiencing the same issue and have yet to find anything to resolve this issue.
    Regards, Daniel
    I ended up scouring his old posts looking for the other thread, and he did open one in the SharePoint forum:
    https://social.technet.microsoft.com/Forums/office/en-US/3dded85b-73ee-47dc-9609-6ee65f329983/outlook-the-path-specified-for-the-file-sharepoint-lists-pst-is-not-valid?forum=sharepointadminprevious#3dded85b-73ee-47dc-9609-6ee65f329983
    Unfortunately, what was marked as an "answer" by the moderators isn't really an answer at all to the problem. We are experiencing pretty much an identical issue with a calendar people are adding to Outlook 2010 from SharePoint 2010 within a XenApp
    server (using roaming profiles). However, we have not had the issue occur outside of XenApp yet.

  • Cisco 2951 router AC-PoE power consumption, meaning of the mention "Platform Only" in the datasheet.

    Hello,
    I have a question regarding the power consumption of a Cisco 2951 router with an AC-PoE power supply (without PoE boost).
    In fact in the table (n°7) of the Cisco 2900 Series ISR (G2) datasheet, that sum up the power consumption data for Cisco 2900 series routers there is the line : "Maximum Power with PoE Power Supply (Platform Only) (Watts)", and I would like to know what is exactly the meaning about the mention "Platform Only".
    Thank you for your help, best regards,

    Hi @francois.trarieux,
    This is the maximum power that is consumed exclusively by the router from the PoE PS (Power Supply). The power capacity that the PoE PS gives to other PoE devices (IP Phones, Cameras, APs, etc) is specified in the line below "Maximum End-Point PoE Power  Available from PoE Power Supply (Watts)" of the datasheet.
    HTH.
    Regards,
    Martin, IT Specialist

  • Error [0x80070003] The system cannot find the path specified

    We have Windows 2012 Server hosting 2 VMs - Domain Controller & RDS.  We have been doing Windows Server Backup incremental and have an ongoing issue with scheduled backups each night.  The backup shows completed with warnings and generates
    2 log files.
    The first log files shows:  
    Backup of volume \\?\Volume{5d46f853-5db2-11e2-93e7-806e6f6e6963}\ succeeded.
    Backup of volume C: succeeded.
    Backup of volume F: succeeded.
    Application backup
    Writer Id: {66841CD4-6DED-4F4B-8F17-FD23F8DDC3DE}
       Component: ACBCD71E-A8CA-4672-B951-52C1BE8444BE
       Caption     : Backup Using Child Partition Snapshot\FMLRDS1
       Logical Path: 
    Writer Id: {66841CD4-6DED-4F4B-8F17-FD23F8DDC3DE}
       Component: Host Component
       Caption     : Host Component
       Logical Path: 
    The 2nd log file more often than not shows:  
    Backup of volume E: has failed. Backup failed as shadow copy on source volume got deleted. This might caused by high write activity on the volume. Please retry the backup. If the issue persists consider increasing shadow copy storage using 'VSSADMIN Resize
    ShadowStorage' command.
    Error in backup of E:\ during enumerate: Error [0x80070003] The system cannot find the path specified.
    Application backup
    Writer Id: {66841CD4-6DED-4F4B-8F17-FD23F8DDC3DE}
       Component: 2B4A9541-C88B-442E-9A7A-6D8A27342C11
       Caption     : Backup Using Child Partition Snapshot\FMLDC1
       Logical Path: 
       Error           : 8078010D
       Error Message   : Enumeration of the files failed.
       Detailed Error  : 80070003
       Detailed Error Message : (null)
    We had been getting a successful backup once or twice a week which showed completed (with no mentioned of warnings) but now it regularly shows completed with warnings as noted above.  
    We did a manual full backup of the DC to a different external drive a few days ago and that completed without warnings and the backup shows:  E: Completed 63.38 Full - VSS Copy Backup Successful, 8/27/13 3:35 PM - 4:43 PM. Data Transferred 63.38
    On a side note, we can view the logs in the windows/logs/windowsserverbackup directory but when we attempt to view the details of a log file through the Local Backup Console for any log which shows completed with errors, we get a "MMC has detected an
    error in the snapin and will unload and then it shows Object referenced not set to instance of an object."  The manual backup noted above that was successful is able to be viewed through the Local Backup Console without this error.  
    Any idea as to why this is failing during the scheduled backups?  This hosts a database that we need to have regular successful backups.

    Hi,
    First please follow the steps below to re-register dll files. Detailed information could be found here: http://support.microsoft.com/kb/940032:
    1. Click Start, click Run, type cmd, and then click OK. 
    2. Type the following commands at a command prompt. Press ENTER after you type each command. 
    3. cd /d %windir%\system32 
    4. Net stop vss 
    5. Net stop swprv 
    6. regsvr32 ole32.dll 
    7. regsvr32 oleaut32.dll 
    8. regsvr32 vss_ps.dll 
    9. vssvc /register 
    10. regsvr32 /i swprv.dll 
    11. regsvr32 /i eventcls.dll 
    12. regsvr32 es.dll 
    13. regsvr32 stdprov.dll 
    14. regsvr32 vssui.dll 
    15. regsvr32 msxml.dll 
    16. regsvr32 msxml3.dll 
    17. regsvr32 msxml4.dll 
    Please let us know if any command failed to be performed with an error.
    If issue still exists, have a try with the step it provided "VSSADMIN Resize ShadowStorage" to enlarge the shadow storage.
    Also you could test to delete all old Shadow Copies by acccessing <Drive> Properties --> Shaodow Copies --> Delete Now. This will remove all your backup information so if it is not acceptable, just skip this step.
    TechNet Subscriber Support in forum |If you have any feedback on our support, please contact [email protected]

  • System call failed. Error 2 (The system cannot find the file specified. ) in execution of system call 'CreateProcessAsUser' with parameter ( , NULL,  Program Files/sapinst_instdir/BS2011/ERP606/AS-ABAP/SYB/HA/DB, &StartupInfo, &ProcessInfo),

    Dear All,
    I am getting a below error while doing ehp6 installation on sybase (high availbility )
    can any one help me on this..?
    An error occurred while processing option SAP Business Suite 7i 2011 > Enhancement Package 6 for SAP ERP 6.0 > SAP Application Server ABAP > SAP ASE > High-Availability System > Database Instance( Last error reported by the step: System call failed. Error 2 (The system cannot find the file specified. ) in execution of system call 'CreateProcessAsUser' with parameter ( , NULL,  Program Files/sapinst_instdir/BS2011/ERP606/AS-ABAP/SYB/HA/DB, &StartupInfo, &ProcessInfo), line (646) in file (d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\syslib\synxcchapp.cpp), stack trace: d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\ejs\ejscontroller.cpp: 181: EJSControllerImpl::executeScript() d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\ejs\jsextension.hpp: 1059: CallFunctionBase::call() d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\osmod\iaxxbprocess.cpp: 423: CIaOsProcess::start_impl() d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\syslib\synxcchapp.cpp: 238: CSyChildApplicationImpl::start(false) d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\syslib\synxcchapp.cpp: 262: CSyChildApplicationImpl::doStart() .). You can no
    Regards,
    Letz..

    Hello Mauricio.
    Thanks
    Two Thinks:
    1.- This error appears precisely in the process of creating SAP users including you mention sidadm:
          A.- Execute sapinst
          B.- Installation option is chosen
                SAP NetWeaver CE Production Edition
                        Installation Options
                            High-Availability System
                                  Central Service  Instance (SCS)
           c.- System ID, Next and appear message error
    2.- However, the user manually create sidadm, I gave the permissions you indicate, and the error message is the same
    Thanks

  • Delete adjacent duplicates how to use in the below select statement

    hi i have a problem
    i am suing the below select statement
    SELECT    a~extno
              a~guid_lclic       " for next select
              e~ctsim
              e~ctsex
    *revised spec 3rd
              f~guid_pobj
              f~amnt_flt
              f~amcur
              f~guid_mobj
              e~srvll     "pk
              e~ctsty     "PK
              e~lgreg  "PK
      INTO TABLE gt_sagmeld
      FROM /SAPSLL/LCLIC  as a
      INNER JOIN /sapsll/tlegsv as e on elgreg = algreg
      inner join /sapsll/legcon as f on fguid_lclic = aguid_lclic   " for ccngn1 selection
      inner join /sapsll/corcts as g on gguid_pobj = fguid_pobj
                               where   a~extno in s_extno.
      sort gt_sagmeld by guid_lclic lgreg ctsty srvll GUID_POBJ GUID_MOBJ.
      delete adjacent duplicates from gt_sagmeld comparing guid_lclic lgreg ctsty srvll GUID_POBJ GUID_MOBJ .
    now i am confused how to use delete adjacent dupliacate and on which fields
    as first table /sal../lclic primary key is guid_lclic
    and it is joined to table
    legcon by guid_lclci ( not a primary key here)
    legcon primary key is guid_legcon
    and table 3 legsv by lgreg (pk here)
    table 3 has tow more primary key srvll and ctsty also
    NOW MY QUESTIO IS TAHT IS I USE ABOVE DELETE ADJACENT STATMENT IT FETCHES 20 LAKH RECORDS
    I WANT TO REDUCE IS LET ME KNOW ON WHAT fields i need to use delete adjacen duplicates
    or use comparing all fields?
    regards
    Arora

    hi sudha
    if u see my select statement is contains four Primary keys
    srvll
    lgreg
    ctsty
    guid_lclic
    but the next table connected to this table legcon is by guid_pobj and anothe table by guid_mobj
    and if i take this gt_sagmeld to another temp table and i find abt 10 lakh uniques guid_pobj
    similary 6 lakh guid_mobj so the next slect is hanpering because of this
    not COMING TO OUR POINT IF I SORT ONLY BY OUR PRIMARY KEYS NOT TAKING INTO ACCOUNT TEH GUID_POBJ AND GUID_MOBJ
    THE ENTRIES ARE VERY LESS BUT IF I TAKE INOT ACCCOUNT IN GT_SAGMELD THE ENTRIES ARE ABT 20 LAKH
    SO I AM NOT SURE WHETHER TO TAKNE GUID_POBJ AND GUID_MOBJ INOT ACCOUNT FOR DELECTING ADJACENT DUPLICATES?
    HENCE THE QUESTION OF ON WHICH FIRLD DELETE OR COMPARING ALL FIELDS I USE?

  • Fatal Error: The system cannot find the path specified. WSUS

    Hi,
    WSUS post installation failed with the below error log. Any Suggestions pls. 
    2015-02-04 09:47:03  Postinstall started
    2015-02-04 09:47:03  Detected role services: Api, UI, WidDatabase, Services
    2015-02-04 09:47:03  Start: LoadSettingsFromParameters
    2015-02-04 09:47:03  Content local is: True
    2015-02-04 09:47:03  Content directory is: D:\WSUS
    2015-02-04 09:47:03  SQL instname is: 
    2015-02-04 09:47:03  End: LoadSettingsFromParameters
    2015-02-04 09:47:03  Start: Run
    2015-02-04 09:47:03  Fetching WsusAdministratorsSid from registry store
    2015-02-04 09:47:03  Value is S-1-5-21-738919999-2738570043-745769279-1003
    2015-02-04 09:47:03  Fetching WsusReportersSid from registry store
    2015-02-04 09:47:03  Value is S-1-5-21-738919999-2738570043-745769279-1004
    2015-02-04 09:47:04  Configuring content directory...
    2015-02-04 09:47:04  Configuring groups...
    2015-02-04 09:47:04  Starting group configuration for WSUS Administrators...
    2015-02-04 09:47:04  Found group in regsitry, attempting to use it...
    2015-02-04 09:47:20  Writing group to registry...
    2015-02-04 09:47:20  Finished group creation
    2015-02-04 09:47:20  Starting group configuration for WSUS Reporters...
    2015-02-04 09:47:20  Found group in regsitry, attempting to use it...
    2015-02-04 09:47:20  Writing group to registry...
    2015-02-04 09:47:20  Finished group creation
    2015-02-04 09:47:20  Configuring permissions...
    2015-02-04 09:47:20  Fetching content directory...
    2015-02-04 09:47:20  Fetching ContentDir from registry store
    2015-02-04 09:47:20  Value is D:\WSUS
    2015-02-04 09:47:20  Fetching group SIDs...
    2015-02-04 09:47:20  Fetching WsusAdministratorsSid from registry store
    2015-02-04 09:47:20  Value is S-1-5-21-738919999-2738570043-745769279-1003
    2015-02-04 09:47:20  Fetching WsusReportersSid from registry store
    2015-02-04 09:47:20  Value is S-1-5-21-738919999-2738570043-745769279-1004
    2015-02-04 09:47:20  Creating group principals...
    2015-02-04 09:47:20  Granting directory permissions...
    2015-02-04 09:47:20  Granting permissions on content directory...
    2015-02-04 09:47:20  Granting registry permissions...
    2015-02-04 09:47:20  Granting registry permissions...
    2015-02-04 09:47:20  Granting registry permissions...
    2015-02-04 09:47:20  Configuring shares...
    2015-02-04 09:47:20  Configuring network shares...
    2015-02-04 09:47:20  Fetching content directory...
    2015-02-04 09:47:20  Fetching ContentDir from registry store
    2015-02-04 09:47:20  Value is D:\WSUS
    2015-02-04 09:47:20  Fetching WSUS admin SID...
    2015-02-04 09:47:20  Fetching WsusAdministratorsSid from registry store
    2015-02-04 09:47:20  Value is S-1-5-21-738919999-2738570043-745769279-1003
    2015-02-04 09:47:20  Content directory is local, creating content shares...
    2015-02-04 09:47:20  Creating share "UpdateServicesPackages" with path "D:\WSUS\UpdateServicesPackages" and description "A network share to be used by client systems for collecting all software packages (usually applications) published
    on this WSUS system."
    2015-02-04 09:47:20  Deleting existing share...
    2015-02-04 09:47:20  Creating share...
    2015-02-04 09:47:20  Share successfully created
    2015-02-04 09:47:20  Creating share "WsusContent" with path "D:\WSUS\WsusContent" and description "A network share to be used by Local Publishing to place published content on this WSUS system."
    2015-02-04 09:47:20  Deleting existing share...
    2015-02-04 09:47:20  Creating share...
    2015-02-04 09:47:20  Share successfully created
    2015-02-04 09:47:20  Creating share "WSUSTemp" with path "C:\Program Files\Update Services\LogFiles\WSUSTemp" and description "A network share used by Local Publishing from a Remote WSUS Console Instance."
    2015-02-04 09:47:20  Deleting existing share...
    2015-02-04 09:47:20  Creating share...
    2015-02-04 09:47:20  Share successfully created
    2015-02-04 09:47:20  Finished creating content shares
    2015-02-04 09:47:20  Stopping service WSUSService
    2015-02-04 09:47:20  Stopping service W3SVC
    2015-02-04 09:47:21  Configuring WID database...
    2015-02-04 09:47:21  Configuring the database...
    2015-02-04 09:47:21  Establishing DB connection...
    2015-02-04 09:47:21  Checking to see if database exists...
    2015-02-04 09:47:21  Database exists
    2015-02-04 09:47:21  Switching database to single user mode...
    2015-02-04 09:47:24  Loading install type query...
    2015-02-04 09:47:24  DECLARE @currentDBVersion       int
    DECLARE @scriptMajorVersion     int = (9600)
    DECLARE @scriptMinorVersion     int = (16384)
    DECLARE @databaseMajorVersion   int 
    DECLARE @databaseMinorVersion   int 
    DECLARE @databaseBuildNumber    nvarchar(10)
    IF NOT EXISTS(SELECT * FROM sys.databases WHERE name='SUSDB')
    BEGIN
        SELECT 1
    END
    ELSE
    BEGIN
        SET @currentDBVersion = (SELECT SchemaVersion FROM SUSDB.dbo.tbSchemaVersion WHERE ComponentName = 'CoreDB')
        SET @databaseBuildNumber = (SELECT BuildNumber FROM SUSDB.dbo.tbSchemaVersion WHERE ComponentName = 'CoreDB')
        DECLARE @delimiterPosition INT = CHARINDEX('.', @databaseBuildNumber)
        IF (@delimiterPosition = 0)
        BEGIN
            RAISERROR('Invalid schema version number', 16, 1) with nowait
            return 
        END 
        SET @databaseMajorVersion = SUBSTRING(@databaseBuildNumber, 1, @delimiterPosition - 1)
        SET @databaseMinorVersion = SUBSTRING(@databaseBuildNumber, (@delimiterPosition + 1), (10 - @delimiterPosition))
        IF @currentDBVersion < 926
        BEGIN
            SELECT 3
        END
        ELSE
        BEGIN
            IF (@scriptMajorVersion > @databaseMajorVersion OR
               (@scriptMajorVersion = @databaseMajorVersion AND @scriptMinorVersion > @databaseMinorVersion))
            BEGIN
                SELECT 2
            END
            ELSE IF (@scriptMajorVersion = @databaseMajorVersion AND
                     @scriptMinorVersion = @databaseMinorVersion)
            BEGIN
                SELECT 0
            END
            ELSE
            BEGIN
                SELECT 4
            END
        END
    END
    2015-02-04 09:47:24  Install type is: Reinstall
    2015-02-04 09:47:24  Creating logins...
    2015-02-04 09:47:24  Fetching account info for S-1-5-20
    2015-02-04 09:47:24  Found principal
    2015-02-04 09:47:24  Found account
    2015-02-04 09:47:24  Got binary SID
    2015-02-04 09:47:24  Fetching WsusAdministratorsSid from registry store
    2015-02-04 09:47:24  Value is S-1-5-21-738919999-2738570043-745769279-1003
    2015-02-04 09:47:24  Fetching account info for S-1-5-21-738919999-2738570043-745769279-1003
    2015-02-04 09:47:24  Found principal
    2015-02-04 09:47:24  Found account
    2015-02-04 09:47:24  Got binary SID
    2015-02-04 09:47:24  Setting content location...
    2015-02-04 09:47:24  Fetching ContentDir from registry store
    2015-02-04 09:47:24  Value is D:\WSUS
    2015-02-04 09:47:24  Swtching DB to multi-user mode......
    2015-02-04 09:47:25  Finished setting multi-user mode
    2015-02-04 09:47:25  Writing DB settings to registry...
    2015-02-04 09:47:25  Marking PostInstall done for UpdateServices-WidDatabase in the registry...
    2015-02-04 09:47:25  Starting service W3SVC
    2015-02-04 09:47:25  Configuring IIS...
    2015-02-04 09:47:25  Start: ConfigureWebsite
    2015-02-04 09:47:25  System.Runtime.InteropServices.COMException (0x80070003): The system cannot find the path specified.
       at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)
       at System.DirectoryServices.DirectoryEntry.Bind()
       at System.DirectoryServices.DirectoryEntry.get_AdsObject()
       at System.DirectoryServices.PropertyValueCollection.PopulateList()
       at System.DirectoryServices.PropertyValueCollection..ctor(DirectoryEntry entry, String propertyName)
       at System.DirectoryServices.PropertyCollection.get_Item(String propertyName)
       at Microsoft.UpdateServices.Administration.UseCustomWebSite..ctor()
       at Microsoft.UpdateServices.Administration.PostInstall.ConfigureWebsite(Int32 portNumber)
       at Microsoft.UpdateServices.Administration.PostInstall.Run()
       at Microsoft.UpdateServices.Administration.PostInstall.Execute(String[] arguments)
    Syed

    Hi Syed,
    >>2015-02-04 09:47:25  Configuring IIS...
         2015-02-04 09:47:25  Start: ConfigureWebsite
         2015-02-04 09:47:25  System.Runtime.InteropServices.COMException (0x80070003): The system cannot find the path specified.
    According to the log, WSUS post install can not configure the website successfully.
    Have you change any default setting in IIS? If there is no other website running on the IIS, please try to reinstall the IIS role.
    Best Regards.
    Steven Lee Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Error in Java compilation: \s7u.log (The system cannot find the file specified)

    Hi there,
    I got an error when I tried to compile a group of sqlj and java files. The error below:
    ----------------------------------------------sqlj -status -passes -compile=true -ser2class -d=. -classpath=.;%CLASSPATH% E:\work\src\java\com\interadnet\persistence\*.sqlj E:\work\src\java\com\interadnet\persistence\*.java
    out [Translating 53 files]
    out [Reading file AdServerInformationType]
    out [Reading file AdsType]
    out [Reading file AgencyType]
    out [Reading file CampaigntocompletionType]
    out [Reading file CampaignType]
    out [Reading file ChannelType]
    out [Reading file ClientType]
    out [Reading file CompletionType]
    out [Reading file ContactType]
    out [Reading file CreativeType]
    out [Reading file FtpServerType]
    out [Reading file InsertioninstructionType]
    out [Reading file MediaServerType]
    out [Reading file SystemPropertyType]
    out [Reading file VendorType]
    out [Reading file AdServerInformationTypeRef]
    out [Reading file AdServerInformationView]
    out [Reading file AdsTypeRef]
    out [Reading file AdsView]
    out [Reading file AgencyTypeRef]
    out [Reading file AgencyView]
    out [Reading file CampaigntocompletionTypeRef]
    out [Reading file CampaignToCompletionView]
    out [Reading file CampaignTypeRef]
    out [Reading file CampaignTypeRefs]
    out [Reading file CampaignView]
    out [Reading file ChannelTypeRef]
    out [Reading file ChannelTypeRefs]
    out [Reading file ChannelView]
    out [Reading file ClientTypeRef]
    out [Reading file ClientTypeRefs]
    out [Reading file ClientView]
    out [Reading file CompletionTypeRef]
    out [Reading file CompletionTypeRefs]
    out [Reading file CompletionView]
    out [Reading file ContactTypeRef]
    out [Reading file ContactView]
    out [Reading file CreativeTypeRef]
    out [Reading file CreativeTypeRefs]
    out [Reading file CreativeView]
    out [Reading file FtpServerTypeRef]
    out [Reading file FtpServerView]
    out [Reading file InsertioninstructionTypeRef]
    out [Reading file InsertioninstructionTypeRefs]
    out [Reading file InsertionInstructionView]
    out [Reading file MediaServerTypeRef]
    out [Reading file MediaServerView]
    out [Reading file SystemPropertyTypeRef]
    out [Reading file SystemPropertyTypeRefs]
    out [Reading file SystemPropertyView]
    out [Reading file VendorTypeRef]
    out [Reading file VendorTypeRefs]
    out [Reading file VendorView]
    out [Translating file AdServerInformationType]
    out [Translating file AdsType]
    out [Translating file AgencyType]
    out [Translating file CampaigntocompletionType]
    out [Translating file CampaignType]
    out [Translating file ChannelType]
    out [Translating file ClientType]
    out [Translating file CompletionType]
    out [Translating file ContactType]
    out [Translating file CreativeType]
    out [Translating file FtpServerType]
    out [Translating file InsertioninstructionType]
    out [Translating file MediaServerType]
    out [Translating file SystemPropertyType]
    out [Translating file VendorType]
    out [Translating file AdServerInformationTypeRef]
    out [Translating file AdServerInformationView]
    out [Translating file AdsTypeRef]
    out [Translating file AdsView]
    out [Translating file AgencyTypeRef]
    out [Translating file AgencyView]
    out [Translating file CampaigntocompletionTypeRef]
    out [Translating file CampaignToCompletionView]
    out [Translating file CampaignTypeRef]
    out [Translating file CampaignTypeRefs]
    out [Translating file CampaignView]
    out [Translating file ChannelTypeRef]
    out [Translating file ChannelTypeRefs]
    out [Translating file ChannelView]
    out [Translating file ClientTypeRef]
    out [Translating file ClientTypeRefs]
    out [Translating file ClientView]
    out [Translating file CompletionTypeRef]
    out [Translating file CompletionTypeRefs]
    out [Translating file CompletionView]
    out [Translating file ContactTypeRef]
    out [Translating file ContactView]
    out [Translating file CreativeTypeRef]
    out [Translating file CreativeTypeRefs]
    out [Translating file CreativeView]
    out [Translating file FtpServerTypeRef]
    out [Translating file FtpServerView]
    out [Translating file InsertioninstructionTypeRef]
    out [Translating file InsertioninstructionTypeRefs]
    out [Translating file InsertionInstructionView]
    out [Translating file MediaServerTypeRef]
    out [Translating file MediaServerView]
    out [Translating file SystemPropertyTypeRef]
    out [Translating file SystemPropertyTypeRefs]
    out [Translating file SystemPropertyView]
    out [Translating file VendorTypeRef]
    out [Translating file VendorTypeRefs]
    out [Translating file VendorView]
    out [Compiling 53 Java files]
    err*** The following character string is too long:
    err***
    out Error in Java compilation: \s7u.log (The system cannot find the file specified)
    Any suggestion appreciated.
    Daniel Huang

    Having not seen this before, I assume that the issue is that the command line string is too long when Javac is invoked.
    Here are a few things to reduce the size of the command line:
    - do not use the CLASSPATH option, but set the CLASSPATH environment variable (you can to that in a .bat file)
    - do not provide the .java files but rely on the implicit make capability in both, the SQLJ translator and the Java compiler. (Note: you must mention all of the .sqlj files that your program requires, do not rely on implicit make to find all of those.)
    - you can perform the -ser2class conversion as a separate step (see the SQLJ FAQ), as well as the Java compilation
    - there may or may not be a facility in your operating system to increase the size of the environment (and this may or may not have an effect on the maximum command line length)
    - you could try to omit the -passes option and see if that helps (that may actually be where your invocation if failing in the first place, in that it cannot write to some temporary file).
    Let us know how it goes. Thanks!

  • Alternative account number in the Balance Sheet

    Hello experts,
    We have a company that besides the usual balance structure uses also an alternative one for its country.
    When I run the Balance sheet query with the normal hierarchy I can see all the nodes correctly. But when I use the one for its country I can see only one node (Not Assigned Fincl Statement Item) with all the account numbers inside.
    When I check it in R/3 (tcode FC10) I can see it with both structures checking the alternative account number option.
    Does anybody know how to use the alternative account numbers with the country specific hierarchy in BW?
    Thanks in advance,
    Abraham.

    Hello,
    Please read F1 help. It is clearly mentioned.
    Test copied below:
    Alternative Bank Acct Number (for Ambiguous Acct Number)
    The alternative bank account number is used for distinguishing house bank accounts with identical account numbers. This can occur if a house bank manages accounts in different currencies using the same account number.
    The alternative bank account number must then only be defined if it differs from the bank account number. You must maintain it together with the bank key in the system.
    If you have house bank accounts with identical account numbers and use the electronic account statement for these accounts, then you enter the internal key used by your house bank here (usually the account number with attached currency encryption). If you use the manual account statement, then you can freely assign the alternative account number. Using bank account number + currency code is, however, recommended.
    Regards,
    Ravi

  • This app does not support the contract specified or is not installed

    I was successfully creating Windows Store Apps using Visual Studio 2013, using my dev account. VS has recently re-registered my ID as well.
    Today, any Strore App (including "Mail", "Store", "PC Settings"...) not running nor any of project is not launching when I start debugging. It gives dialog as shown below. Also, as the app starts showing as installed in the
    start screen, when I tap it there, it doesn't run. Just splash screen flashes for a few seconds and then disappears.
    Microsoft Visual Studio
    Unable to activate Windows Store app '3a829624-c06f-426b-8186-9312684573a2_bs4v6h88qrjp4!App'. The activation request failed with error 'This app does not support the contract specified or is not installed'.
    See help for advice on troubleshooting the issue.
    OK   Help   
    If a post solves the problem you asked, please mark it as Answer.

    This question needs to be asked on answers.microsoft.com. It is not a development question.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Forms Builder / SAP Demo News / Where is the Savepath specified?

    Hi there,
    i just want to check out how the forms Builder work and if i can use it for some little things in our Portal.. so i wanna try the SAP Demo News....
    So i think i check how it works.. but i have only one question.. where in the Forms Builder in SAP Demo News is specified where the news are saved when i write one?
    So the Standart Path is: \documents\News
    So what is if i want to change the path to:  \Documents\xyz
    Where in the Form i have to specifie this?
    Regards
    Bjoern

    Hi,
    Chk this thread.. [http://forums.sdn.sap.com/thread.jspa?messageID=1503773]
    You can pass the path as parameter (post/path=) to the url.
    For example
    http://server/irj/servlet/prt/portal/prtroot/com.sap.km.cm.xmlformedit?XMLFormID=new_form&post/path=/documents/UserMessages
    Also change the configuration of km folder to your new folder. This will alow to edit the news directly from km folder.
    Go to System administration -> System configuration -> Knowledge Management -> Content Management -> Form Based Publishing -> forms availability.
    Creat an id with the following properties -  the folder path within which the form has to appear for e.g., /documents/News and under the Forms to Include - Mention the XML forms to be included.
    Please check the below document.
    [http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/ee639033-0801-0010-0883-b2c76b18583a]
    Regards
    Baby

Maybe you are looking for