Mapping status

Hi
I am using oracle warehouse builder OWB_902560. i have to run the mappings successively. Is there a way to automate this process.
for e.g. i have got three mappings.
Map1>Map2>Map3.
here Map2 is dependent on Map1 and Map3 is dependent on Map3.
HOw do i know that Map2 executed successfully without looking at the table WB_RT_AUDIT. Pls. tell me about this..
currently we are doing like this:
OWB generates PL/SQL package for each mapping.
The dependencies are checked in a PL/SQL program by us
Map2.main
Map3.main
after this we will check the Mappingname and rta_status=complete and rta_errors
Is this right way to handle the run time errors... Pls.give me your Suggestions..
Thanks
Narasimha.

Hello,
Addressing your first question, for releases prior to OWB 9.0.4, you may register the jobs in OEM and draw the flow diagram in Oracle Workflow and automate this process.
In OWB 9.0.4, available in Feb 2003, process flow diagrams can be drawn within the OWB design UI elegantly.
Regards,
Behnaz

Similar Messages

  • CPS-DatabaseTables , Mapping Status

    is there any mapping of the shown Status (GUI) and the Status in several DB-Tables?
    eg:
    the GUI shows Status "Error" ,
    in DB-Table jcs_job0 in Column A_STATUSEN or A_RSTATUSEN  there is a one-Character "E"
    what table provides the mapping of the Status short (one-Char) <=> long or F_KEY
    select * from JCS_TRANSLAT0 where f_language = 7051
       and f_key in (
       select a_uniqueid from JCS_TRANSKEY0
                  where a_key like 'com.redwood.scheduler.api.model.enumeration.JobStatus.%')
       and f_key in (
       select a_uniqueid from JCS_TRANSKEY0
                  where a_key not like '%.description')
    order by f_language , f_key
    select                                                          
      A_UNIQUEID , A_DESCRIPTION , A_JOBID , A_REMOTESTATUS ,       
      A_REMOTESYSTEM, F_PROCESSSERVER, A_RETURNCODE, A_STATUSEN,    
      A_RSTATUSEN, A_SRCHDESC, A_CREATIONTIMETS, A_LASTMODIFTS,     
      A_RUNSTARTTS, A_RUNENDTS, A_STARTTIMETS, F_JOBDEFINITION      
    from jcs_job0

    Hello,
    this translation in an internal enumeration in the application and is not stored in the database.
    On a side note, it is not recommended to query the CPS internal tables like this as the data model can change between versions. You rather use the internal 'views' on the data model instead from CPS reports.
    Regards Gerben

  • How tos check my Map status?

    I am using Nokia E66. I want to update the latest maps to my cellphone. How to I check my current maps is the latest and what country that I already had in my cellphone? What I can see now is my maps version is v2.0 w22 b04. Please help..Thanks!

    There is no link you can use. The only way to confirm unlocking is to try a SIM from a carrier other than the one your iPhone was locked to.

  • SQL for map status!

    Rather than opening control center to know the status of list of mappings available on different locations, can we have any sql to check list of mappings that are deployed successfully,not successfully,warning etc.,??
    Please assist...

    I prefer use this sqls:
    -- Here you can see the state of the execution
    select execution_name nombre_completo, execution_audit_id id, object_name objeto,
    return_result resultado, elapse_time segundos, number_task_errors errores,
    number_task_warnings warnings, to_char( created_on,'dd-mm-yyyy hh24:mi:ss') creado,
    to_char( updated_on,'dd-mm-yyyy hh24:mi:ss') ultimo_cambio
    from
    all_rt_audit_executions
    where parent_execution_audit_id=<audit_id>
    order by execution_audit_id desc;
    -- And here you can see the messages it returned
    select 'Actividad "'|| a.object_name|| '":'|| chr(10)|| chr(13)||p.message_severity ||' '|| p.message_text AuditText
    from all_rt_audit_exec_messages p,all_rt_audit_executions a
    where a.object_name is not null and a.execution_audit_id= p.execution_audit_id and p.execution_audit_id in (select execution_audit_id
    from all_rt_audit_executions a
    where parent_execution_Audit_id=<audit_id>)

  • Mapping Execution Status

    Hi,
    When we I want to see the mapping execution status, I used to look into the WB_RT_AUDIT and get the mapping name, map run id, start time, end time and status. Here the status field gives the information as COMPLETE/SUCCESS. This is relating to 9.0.4. Recently, when I upgrade to OWB 10g the same view for the status it gives as 1 and even for error also it shows as 1, how to exactly know the mapping execution status is successful or not. Pls mention the table name and column name to know the status
    Kishan

    Ola Koshan,
    When you look at the audit table WB_RT_AUDIT and check the column RTA_STATUS you'll get a number. When you decode the number you will see wether the mapping is completed, running or ended in an error.
    This can be done like this:
    DECODE (rta_status, 0, 'Running', 1, 'Completed', 2, 'Error','Else')
    Please keep in mind that if you kill a mapping, the status will still be 'running'. This is because the process will not be able to update oracle's repository (because you killed it).
    There is quite a lot you can extract from the Audit tables. I do not quite know what you mean with mentioning the table and column name to know the status... As far is I understood you are looking for the mapping status... Right?
    Regards
    Moscowic

  • Advice a scenario for retrive a status of mapping.

    Hi all.
    Source (IDOC) --> Mapping ---> sending ---> Target(XML)
    (IDOC) <-- SYSTAT <--|            
    (IDOC) <-- SYSTAT <----
    |
    I need a help for upper case.
    In the Case, We wana receive a staus  Mapping & Sending Result for IDOC by each step.
    For reference, Scenario use asysnc interface.
    At beginning I thought BPM with correlation, but corelation was not fit for it.
    In addition I knew that there is no way to retrive return code of the mapping status.
    How can I get Mapping Status and tranfer it next step?
    And, How can I design scenario efficently?
    If you got a good scenario or other way, pls notice me.
    regards.
    Message was edited by: ChangSeop Song

    solved for myself

  • Mapping to a Lookup Table

    O.K. I have a basic Java question and how to do this the following using
    Java/JDO:
    I have a database table for a lookup class. It will have the following
    structure:
    Create Table ProductStatus
    Id bigint not null
    name char (20);
    In C++ I would have an Enumeration Type which constrains the value of the
    variable to the set of values in the database.
    In Java I was thinking that I would have a ProductStatus class and then in
    the Product Class I would have an instance as follows:
    public class Product {
    ProductStatus status;
    But I have now believe that this is wrong...
    From offline work I have been told that the correct JDO for what I want
    to do is as follows:
    <class name="Product">
    <extension vendor-name="kodo" key="table" value="JDO_PRODUCT"/>
    <extension vendor-name="kodo" key="pk-column" value="ID"/>
    <extension vendor-name="kodo" key="class-column" value="JDOCLASS"/>
    <extension vendor-name="kodo" key="lock-column" value="none"/>
    <field name="currency">
    <extension vendor-name="kodo" key="data-column" value="CURRENCY"/>
    </field>
    <field name="productStatus">
    <extension vendor-name="kodo" key="data-column" value="STATUS_ID"/>
    </field>
    </class>
    <class name="ProductStatus">
    <extension vendor-name="kodo" key="table" value="JDO_STATUS"/>
    <extension vendor-name="kodo" key="pk-column" value="ID"/>
    <field name="name">
    <extension vendor-name="kodo" key="data-column" value="NAME"/>
    </field>
    </class>
    My two questions are:
    1) What do I put for the Java code, both in the product class and for
    ProductStatus.... This is more a Java question than JDO... I have been
    told I am thinking in too much of a C++ way.... I keep wanting to have
    a ProductStatus as a Type Class and then have an instance variable in
    the Product class such as status that is of type: ProductStatus.
    But I have been told this is not the correct Java way to do things.
    How should this be done?
    2) I would have expected that the JDO for the ProductStatus field in the
    Product Class would have been a FK extension, but I had Abe White help me
    with this and he said generated the JDO file I have included.... so how is
    the Product.ProductStatus linking to the ProductStatus class ???? With the
    current JDO I don't see any link, either by name or by shared ID value....
    Obviously I am a total newbie to this and these are basic questions.
    Thanks to anyone who has the time to reply.
    Brian Smith

    Hi Brian --
    Java code:
    public class Product
         private ProductStatus status;
    public class ProductStatus
         private String name;
    Metadata:
    Exactly like you posted it.
    I'm not sure where you're getting confused on how the relation works. It's
    straightforward. The STATUS_ID column in the JDO_PRODUCT table holds the
    primary key value of the related ProductStatus instance. That's all there is
    to it. So, for example, the following Java code:
    ProductStatus stat = new ProductStatus ();
    stat.setName ("foo");
    Product prod = new Product ();
    prod.setProductStatus (stat);
    pm.currentTransaction ().begin ();
    pm.makePersistent (prod);
    pm.currentTransaction ().commit ();
    Would product SQL like:
    INSERT INTO JDO_PRODUCT (ID, STATUS_ID) VALUES (100, 101);
    INSERT INTO JDO_STATUS (ID, NAME) VALUES (101, 'foo');
    Note that the '101' value for STATUS_ID in the inserted JDO_PRODUCT row
    matches the '101' value for the ID (primary key) in the inserted JDO_STATUS
    row.
    If you wanted to simulate a C++ enumeration and at the same time get rid of
    the necessity of a second JDO_STATUS table that seems a little redundant
    (why have a table to hold a single piece of data?), you could do it in 2 ways.
    The simple way would be to just use static constants in the Product class for
    different possible statuses:
    public class Product
         public static final String STATUS_XXX = "xxx";
         public static final String STATUS_YYY = "yyy";
         private String status;
    And then just have the JDO_PRODUCT table have a VARCHAR column to hold the
    status string rather than having a STATUS_ID column that forms a relation to
    a separate table.
    The second way, which more closely mirrors C++ enumerations, is a little more
    complex. You keep the ProductStatus class, but make it non-persistent (note:
    the static-instance, private-constructor pattern below is the standard Java
    way of doing enums):
    public class ProductStatus
         // enumerate all possible product status values
         public static final ProductStatus XXX = new ProductStatus ("xxx");
         public static final ProductStatus YYY = new ProductStatus ("yyy");
         private String name;
         * Convenience method to return a status for a given name.
         public static ProductStatus forName (String name)
              if (XXX.getName ().equals (name))
                   return XXX;
              if (YYY.getName ().equals (name))
                   return YYY;
              throw new IllegalArgumentException (name);
         * Make constructor private to prevent creation of any status instances
         * with illegal values.
         private ProductStatus (String name)
              this.name = name;
         public String getName ()
              return name;
    Then in your Product class, keep a non-persistent ProductStatus instance and
    a persistent field with the status name. Use the javax.jdo.InstanceCallbacks
    interface to transfer the stored status name to/from the ProductStatus:
    public class Product
         implements InstanceCallbacks
         // used internally only; map this to the column in the JDO_PRODUCT table
         // holding the status name for the product; at runtime we'll use JDO
         // lifecycle callbacks to transfer the value to/from a ProductStatus
         // instance
         private String statusName;
         // mark this as non-persistent in the metadata
         private ProductStatus status;
         public void jdoPostLoad ()
              status = ProductStatus.forName (statusName);
         public void jdoPreStore ()
              statusName = (status == null) ? null : status.getName ();
         // rest of InstanceCallbacks methods can be implemented as no-ops...
    With Kodo, you could even implement your own FieldMapping to map status strings
    to ProductStatus instances, but that's getting really complicated for very
    little real advantage.
    Hope that helps.

  • Partititon1,2,3 in  group ODS,FAC status not change after data redistribute

    Hello,
    first thanks for your help. By now the db2 data redistribute has been sucessful. but another issue occurs , could you give me some suggestion?
    1. run Tcode dbacockpit-->db2 for linux, unix, and windows database > configuration>database partiton group
    i found the stutus in db partion group NGRP_FAC_AB7 and NGRP_ODS_AB7 and partion 1,2.3. is partion not in partitioning map containers created. I know if we want to change the status from this to partion in partioning map status , we should do a redistribute.
    i have made a redistribute action like this
    1. double click what i want to distribute
    2. select the relevant partition , for example partition 0001
    3 click the execute immediatelly button .
    when i finished , the status is not changed . so i change the redistribute log located in /db2/db2ab7/sqllib/redist/ AB7.NGRP_FACT_AB7.2008022808582 .
    the log message is
    Data Redistribution cannot be continued.
    Error: Redistribution failed with SQLCODE=-6047 (rc=-2145779603).
    the SQL 6047 detail information is like the following. I don't know what happens.
    it's a SAP bug just like the previous issue ? Could you give me some suggestion ? Thanks
    db2 => ? sql6047
    SQL6047N Database partition group cannot be redistributed
    because table "<name>" does not have a partitioning
    key.
    Explanation:
    At least one table in the single-node database partition does not
    have a partitioning key. All tables in the single-node database
    must have a partitioning key before the database partition group
    can be redistributed to a multiple-node database partition
    group.
    The operation was not performed.
    User Response:
    Use the ALTER TABLE command to specify partitioning keys for
    tables that do not have one. Then try the request again

    Before redistribution, do your tables reside on only one partition? Does the error message you get list the table or tables that do not have a partitioning key?
    All fact tables, ODS tables and PSA tables are created with a partitioning key in a SAP BI system. However, in the FACT and ODS tablespace, there are a few BI management tables (name starting with 'RS') that do not get a partitioning key by default if created in a tablespace on only one partition. The BI data distribution wizard in the DBA Cockpit takes care of some of these tables, for example RSDMFACTAB and RSDMODSTAB. Maybe there are some additional ones.
    Please list the names of the tables without partitioning key. If the error message does not contain them, you can get them with the following SQL statement:
    select varchar(tabname,30)
    from syscat.tables a
    where tbspace='<your_tablespace>'
      and not exists (select partkeyseq from syscat.columns b
                             where a.tabschema=b.tabschema and a.tabname=b.tabname
                                      and b.partkeyseq > 0)
    Brigitte

  • Toplink map: No primary keys defined for table, what can I do?

    I have the following DDL:
    CREATE TABLE CAM_CUSTINFO.CUSTOMERMASTER (
         CUSTID CHAR(15) NOT NULL,
         BILLTOCUSTID CHAR(15) NOT NULL,
         GROUPID NUMBER(11) NOT NULL,
         CUSTSTATUS CHAR(1) NOT NULL,
         CUSTSTATUSDT DATE,
         NAMESHORT CHAR(10) NOT NULL,
         SINCEDT DATE NOT NULL,
         ADDDT DATE NOT NULL,
         FIRSTNAME CHAR(20) NOT NULL,
         MIDDLENAME CHAR(15) NOT NULL,
         LASTNAME CHAR(30) NOT NULL,
         SUFFIXNAME CHAR(15) NOT NULL,
         NAMETYPECD CHAR(1) NOT NULL,
         TITLE CHAR(15) NOT NULL,
         SALUTATIONCD CHAR(6) NOT NULL,
         COMPANYNAME CHAR(40) NOT NULL,
         PRIMADDRSEQBILL NUMBER(5) NOT NULL,
         PRIMADDRSEQSOLD NUMBER(5) NOT NULL,
         PRIMADDRSEQSHIP NUMBER(5) NOT NULL,
         NAME2 CHAR(40) NOT NULL,
         CUSTLEVEL CHAR(1) NOT NULL,
         TAXABLECD CHAR(1) NOT NULL,
         TAXPAYERID CHAR(14) NOT NULL,
         CHGID CHAR(10) NOT NULL,
         CHGDT DATE,
         BILLCURRENCYCD CHAR(10) NOT NULL,
         BILLDAY NUMBER(5) NOT NULL,
         HOLDBILLINGIND CHAR(1) NOT NULL,
         PAYMENTTERMCD CHAR(10) NOT NULL,
         CANCELSTATUSIND CHAR(1) NOT NULL,
         CANCELSTATUSDT DATE,
         INDUSTRYCD CHAR(30));
    CREATE UNIQUE INDEX CAM_CUSTINFO.PK_CUSTOMERMASTER ON CAM_CUSTINFO.CUSTOMERMASTER (CUSTID);
    CREATE INDEX CAM_CUSTINFO.IX_CUSTOMERMASTERBILLTOCUSTID ON CAM_CUSTINFO.CUSTOMERMASTER (BILLTOCUSTID, CUSTID);
    CREATE INDEX CAM_CUSTINFO.IX_CUSTOMERMASTERCOMPNAME ON CAM_CUSTINFO.CUSTOMERMASTER (COMPANYNAME);
    CREATE INDEX CAM_CUSTINFO.IX_CUSTOMERMASTERGROUPID ON CAM_CUSTINFO.CUSTOMERMASTER (GROUPID);
    CREATE INDEX CAM_CUSTINFO.IX_CUSTOMERMASTERNAME ON CAM_CUSTINFO.CUSTOMERMASTER (LASTNAME, FIRSTNAME);
    CREATE INDEX CAM_CUSTINFO.IX_CUSTOMERMASTERBILLDAY ON CAM_CUSTINFO.CUSTOMERMASTER (BILLDAY, CUSTID);
    CREATE INDEX CAM_CUSTINFO.I_00_INDCD ON CAM_CUSTINFO.CUSTOMERMASTER (INDUSTRYCD);
    How do I add this to a Toplink Map? I always get the error:
    Descriptor Custaddr -> Some mappings are incomplete.
    Descriptor Custaddr -> No primary keys specified in CAM_CUSTINFO.CUSTOMERMASTER table.
    Descriptor Custaddr -> The following Query Keys do not have associated database fields: adddt, address1, address2, address3, address4, addressseqnum, billtoaddr, chgdt, chgid, city, country, county, custid, department, descr, effstatus, fax, fips, geocode, houseType, incitylimit, latitude, longitude, num1, num2, phone, phonecountry, phoneext, phonesecondary, postal, secondaryext, shiptoaddr, soldtoaddr, state, taxcd
    Mapping adddt -> No database field is selected.
    Mapping address1 -> No database field is selected.
    Mapping address2 -> No database field is selected.
    Mapping address3 -> No database field is selected.
    Mapping address4 -> No database field is selected.
    Mapping addressseqnum -> No database field is selected.
    Mapping billtoaddr -> No database field is selected.
    Mapping chgdt -> No database field is selected.
    Mapping chgid -> No database field is selected.
    Mapping city -> No database field is selected.
    Mapping country -> No database field is selected.
    Mapping county -> No database field is selected.
    Mapping custid -> No database field is selected.
    Mapping department -> No database field is selected.
    Mapping descr -> No database field is selected.
    Mapping effstatus -> No database field is selected.
    Mapping fax -> No database field is selected.
    Mapping fips -> No database field is selected.
    Mapping geocode -> No database field is selected.
    Mapping houseType -> No database field is selected.
    Mapping incitylimit -> No database field is selected.
    Mapping latitude -> No database field is selected.
    Mapping longitude -> No database field is selected.
    Mapping num1 -> No database field is selected.
    Mapping num2 -> No database field is selected.
    Mapping phone -> No database field is selected.
    Mapping phonecountry -> No database field is selected.
    Mapping phoneext -> No database field is selected.
    Mapping phonesecondary -> No database field is selected.
    Mapping postal -> No database field is selected.
    Mapping secondaryext -> No database field is selected.
    Mapping shiptoaddr -> No database field is selected.
    Mapping soldtoaddr -> No database field is selected.
    Mapping state -> No database field is selected.
    Mapping taxcd -> No database field is selected.
    This isn't in the Developer's guide?
    Detailed information would be greatly appreciated.
    Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Todd,
    Follow these steps.
    1. First map your CustomerMaster descriptor either manually or by using the automap wizard.
    2. Specify the primary key(s) (it does not have to be on the database) by checking appropriate fields listed under the "Primary Keys:" in "Descriptor Info" tab.
    3. Run the mapping status report to make sure you have no errors in mapping.
    Hope this helps.

  • BW Status field does not hold value

    Hi experts,
                        in 0CRM_SRV_PROCESS_H data source Status field doesn't come that's why I enhanced the
    data source with a new field in CRM system by creating new BW Status objects. But, when i tried extracting
    data, BW Status is holding value for only few records. We have checked the transactions & the status object
    declaration but not able to find the reason why only 2/3 records giving status.Please help me in this regard if
    anybody has worked on similar problem.  
    Regards,
    Priyanka Joshi

    Hi Hemanth,
                           Source system has data. I have no idea about the exit written by the system internally but I
    have not written any EXIT to put Status field value into my BWSTATUS field.I have created BW Status object
    in SBIW transaction --> user status in CRM system. Generally this is the method to map Status field value for
    BW Data sources, I have used it already but this time its not working for all records.
    Regards,
    Priyanka Joshi

  • How to know if Message mapping failed?

    Hi gurus,
    do anyone know how to determine in clean up method if a message mapping failed? i just want to know the status of the message mapping to put it in the trace.
    Regards

    Thanks for your reply Abhishek,
    but this is not exactly what i need.
    Suppose following Graphical message mapping: two number  A and B need to be divided, A/B. If B equal 0 (zero), this will throw Runtime Exception. In some point of my mapping (maybe at the end of it) i need to catch this Exception, or at least i need to know exception happened. I need to know it to update a table with message mapping status, eg succesfully executed, runtime error, etc.
    Regards.

  • Problem in creation of system alias for bw system

    Hi,
    I want to create system alias for the bw system
    system admin->sys Config->system landscape->portal content->my own folder
    for this folder i created the system object
    after creation of system object, from property category i select the connector and give the details.
    after that i select the user management and give
    authentication ticket - select
    Logon method- UIDPW
    User Management type- admin,user
    i saved till now
    in the display object i select the system alias
    then that screen displays
    In the system alias screen, i clicked on add button for adding alias then we r getting this message.
    User Mapping Status:  (Not ready for user mapping configuration)
    Please give the solution for solving this problem
    Regards,
    Sid.
    Edited by: sid m on Mar 11, 2008 12:15 PM

    Hi Krishna,
    I checked  the connection settings.
    WAS settings in system object is giving this mistake
    before user mapping it works fine.
    after giving usermapping i ma getting this exception.
    SAP Web AS Connection
      Test Details:
    The test consists of the following steps:
    1. Check the validity of the system ID in the system object
    2. Check whether the system can be retrieved
    3. Check whether a SAP system is defined in the system object
    4. Validate the following parameters: WAS protocol; WAS host name
    5. Check HTTP/S connectivity to the defined backend application
      Results
    1. The system ID is valid
    2. Retrieval of the system was successful
    3. The system object represents an SAP system
    4. The following parameters are valid: Web AS Protocol (http) Web AS Host Name (172.19.18.75)
    5. HTTP/S connection failed
    for testing the connector i am getting this exception
    Test Connection with Connector
      Test Details:
    The test consists of the following steps:
    1. Retrieve the default alias of the system
    2. Check the connection to the backend application using the connector defined in this system object
      Results
    Retrieval of default alias successful
    Connection failed. Make sure user mapping is set correctly and all connection properties are correct.
    Regards,
    Sid.

  • 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.

  • Push buttons doesn't show up in Appraisal template-(ESS,MSS)

    Hi SAP friends,
    I have template created with few sub-statuses and thus have created few push buttons to control the flow in ESS and MSS portal.
    However I do not see any pushbuttons (or radio buttons) in ESS/MSS.  Appreciate if you can guide me what all areas I was missing?  Do we need to do anything in portal or Iviews? I read somewhere in forum that we need to do some thing in Iviews, but I was not convinced with it. Appreciate your speedy suggestions as we are in critical stage of project.
    I have substatus created in In-Planning.
    I'm not using In-planning status but using sub-status.  Here is how I have mapped
    Status flow at template level:
    Outbout status - "In-PLanning"
    Outbout substatus : Enter Objectives & Goals(Employee level)
    PUSH BUTTON  - Submit for Mgr review
    Person Authorized - Aprraises
    Target status : In- PLanning
    Target substus - Manager Review

    Hi
    I think u are trying to go to previous status from sub status. From In Preparation you can come to In planning or the sub status of in planning.
    Thanks & regards,
    Vikas

  • None of your e-mail accounts could send to this recipient

    One of our users is having a very strange issue where when he sends email to SMTP recipients he gets an immediate NDR stating "None of your e-mail accounts could send to this recipient" and the from field of the email is blank if you look in sent items.  I've seen the KB article http://support.microsoft.com/kb/872896 but it doesn't apply.
    we're running Exchange Server 2003 SP2
    user is running Outlook 2007 SP1 from multiple computers in cached mode
    user has this issue intermittently from all 3 machines... there seems to be no pattern.
    something additional that I've noticed about the emails in the sent items that produce NDRs is that if I double-click the email address in the To field there is a custom email type of "S" specified instead of SMTP which of course isn't custom.  This is surely the reason for the NDR since our exchagne server has no way to route type "S" email messages but the user isn't typing this in and the contacts he's using are correctly set to type "SMTP"
    Has anyone seen this before?
    Miles

    I find this happens fairly regularly but intermittently, almost always to new email addresses that aren't in the users contacts list. I suspected that our users are clicking the 'mailto' link when replying but deleting the autocomplete entry doesn't resolve
    it and it's even happened when it's a new message (not replied or forwarded) to someone the user hasn't emailed before. Generally, if we try again after a few hours then the email will eventually send but it's very frustrating.
    A couple  of our users reported that it was happening to them so I enabled Outlook logging to try and get to the bottom of it, here's the results of one of the log files (they're both pretty much the same)
    2012.07.03 11:49:36 <<<< Logging Started (level is LTF_TRACE) >>>>
    2012.07.03 11:49:36 HELPER::Initialize called
    2012.07.03 11:49:36 Initializing: Finding a Transport
    2012.07.03 11:49:36 MAPI XP Call: XPProviderInit in EMSMDB.DLL, hr = 0x00000000
    2012.07.03 11:49:36 MAPI Status: (-- -- ---/--- -- ---)
    2012.07.03 11:49:36 MAPI XP Call: TransportLogon, hr = 0x00000000
    2012.07.03 11:49:36 Initializing: Found a transport, Error code = 0x00000000
    2012.07.03 11:49:36 MAPI XP Call: AddressTypes, hr = 0x00000000, cAddrs = 3, cUids = 1
    2012.07.03 11:49:36 MAPI Status: (IN -- ---/OUT -- ---)
    2012.07.03 11:49:36 MAPI XP Call: TransportNotify(BEGIN_IN|BEGIN_OUT), hr = 0x00000000
    2012.07.03 11:49:36 HELPER::Initialize done, Error code = 0x00000000
    2012.07.03 11:49:36 HELPER::GetCapabilities called, Error code = 0x00000000
    2012.07.03 11:50:18 [email protected]: Synch operation started (flags = 00000001)
    2012.07.03 11:50:18 [email protected]: UploadItems: 1 messages to send
    2012.07.03 11:50:18 EXECUTING Put MAPI TASK
    2012.07.03 11:50:19 Starting the Spooling Cycle
    2012.07.03 11:50:19 MAPI Status: (IN -- ---/OUT fl ---)
    2012.07.03 11:50:19 MAPI XP Call: FlushQueues, hr = 0x00000000, ulFlushFlags = 0x0000001a
    2012.07.03 11:50:19 Sending one message
    2012.07.03 11:50:19 Progress: Sending message ' damage to door' (size 5.48 KBytes)
    2012.07.03 11:50:19 MAPI Status: (IN -- ---/OUT fl act)
    2012.07.03 11:50:19 MAPI Status: (IN -- ---/OUT fl ---)
    2012.07.03 11:50:19 MAPI XP Call: SubmitMessage, hr = 0x80040502
    2012.07.03 11:50:19 MAPI XP Call: SubmitMessage returned MAPI_E_NOT_ME.
    2012.07.03 11:50:19 FINISHED MAPI TASK
    2012.07.03 11:50:19 [email protected]: ReportStatus: RSF_COMPLETED, hr = 0x00000000
    2012.07.03 11:50:19 [email protected]: Synch operation completed
    2012.07.03 11:50:19 Sending done, Error code = 0x00000000
    2012.07.03 11:50:19 Sending done, Error code = 0x8004010f
    2012.07.03 11:50:19 MAPI Status: (IN -- ---/OUT -- ---)
    2012.07.03 11:50:19 Finishing the Spooling Cycle, Error code = 0x00000000
    2012.07.03 11:55:21 [email protected]: Synch operation started (flags = 00000001)
    2012.07.03 11:55:21 [email protected]: UploadItems: 1 messages to send
    2012.07.03 11:55:21 EXECUTING Put MAPI TASK
    2012.07.03 11:55:21 Starting the Spooling Cycle
    2012.07.03 11:55:21 MAPI Status: (IN -- ---/OUT fl ---)
    2012.07.03 11:55:21 MAPI XP Call: FlushQueues, hr = 0x00000000, ulFlushFlags = 0x0000001a
    2012.07.03 11:55:21 Sending one message
    2012.07.03 11:55:21 Progress: Sending message 'damage to door' (size 5.50 KBytes)
    2012.07.03 11:55:21 MAPI Status: (IN -- ---/OUT fl act)
    2012.07.03 11:55:22 MAPI Status: (IN -- ---/OUT fl ---)
    2012.07.03 11:55:22 MAPI XP Call: SubmitMessage, hr = 0x80040502
    2012.07.03 11:55:22 MAPI XP Call: SubmitMessage returned MAPI_E_NOT_ME.
    2012.07.03 11:55:22 FINISHED MAPI TASK
    2012.07.03 11:55:22 [email protected]: ReportStatus: RSF_COMPLETED, hr = 0x00000000
    2012.07.03 11:55:22 [email protected]: Synch operation completed
    2012.07.03 11:55:22 Sending done, Error code = 0x00000000
    2012.07.03 11:55:22 Sending done, Error code = 0x8004010f
    2012.07.03 11:55:22 MAPI Status: (IN -- ---/OUT -- ---)
    2012.07.03 11:55:22 Finishing the Spooling Cycle, Error code = 0x00000000
    can anyone shed any light on this for me please?
    cheers
    Carter

Maybe you are looking for

  • Help with repeating a menu panel on each page

    Hi, I am new to designing in Dreamweaver and am working on a site which has about 30 pages. The menu structure has changed since I first created the pages so I'm wondering if there's a simple way of copying the menu code to each page without manually

  • *Some* movies in iPhoto not showing in iMovie

    Over the last few years I have shot many movies on my Canon S400 and loaded them into iPhoto. All my movies are .avi format. However, iMovie is not recognizing them all so some are not showing up in the Event Library. This problem appeared directly a

  • Table link between product category and responsible purchase group

    Hi Expert, Can anybody tell me if there is a table which contains the link between the product category and its responsible purchase group in SRM 5.0? Best Regards, Tom

  • Cant print on canon mp560 from Firefox. I can fom Internet explore?

    I have just bought a canon mp560 and have installed it on my dell windows 7. It will print pages from the web using Internet Explorer but not using Firefox 3.6.

  • Workgroup/Samba connection issues

    I've got a home network with an Ubuntu Linux PC running KDE (Kubuntu) which connects via wireless. I have a PM G4 tower that is hardwired to the wireless router which in turn connects to the cable modem. I've been able to get SMB working from the Mac