Displaying a SharePoint List in a ListView Control with Grouping by Date

Dear All
I have created a ListView to display items from a SharePoint list:
<asp:ListView ID="UpAndComingEventsLV" runat="server">
<LayoutTemplate>
<ul>
<li id="itemPlaceholder" runat="server" />
</ul>
</LayoutTemplate>
<ItemTemplate>
<li id="Li1" runat="server">
<asp:Literal ID="CurrentDate" runat="server" />
<%#Eval("Title")%> <%#Eval("Event_x0020_Category")%> <%#Eval("EventDate", "{0:HH:mm}")%>
</li>
</ItemTemplate>
</asp:ListView>
To perform the binding and then display the date I'm doing the following:
Using oSiteCollection As New SPSite(_ListPath)
Using web As SPWeb = oSiteCollection.OpenWeb()
List = web.GetList(_ListPath)
End Using
End Using
Dim Query As New SPQuery
Query.Query = "<Where><And><Eq><FieldRef Name='Status' /><Value Type='Choice'>Approved</Value></Eq><Geq><FieldRef Name='EventDate' /><Value Type='DateTime'><Today Offset='4' /></Value></Geq></And></Where><OrderBy><FieldRef Name='EventDate' /></OrderBy>"
'Query.RowLimit = 1
Query.ViewFields = "<FieldRef Name='Event_x0020_Category' /><FieldRef Name='Title' /><FieldRef Name='EventDate' /></ViewFields>"
Dim ItemColl As SPListItemCollection = List.GetItems(Query)
UpAndComingEventsLV.DataSource = ItemColl.GetDataTable
UpAndComingEventsLV.DataBind()
dfgdfgfg
I would like to group my events by date though, rather than display the date against each row. To make things even more complicated, I would like to use friendly names like Today, Tomorrow, Monday, Tuesday instead of dates:
TODAY
Event number one
Event number two
Event number three
TOMORROW
Event number 4
Event number 5
MONDAY
Event number 6
Event number 7
At the moment, I've created a ItemDataBound event on the ListView control and I have been able to display the Today, Tomorrow, Monday etc bit but I can't figure out the best way to perform the grouping. Incidentally, I only want to group on the date not
on time:
Private Sub UpAndComingEventsLV_ItemDataBound(sender As Object, e As Web.UI.WebControls.ListViewItemEventArgs) Handles UpAndComingEventsLV.ItemDataBound
If e.Item.ItemType = Web.UI.WebControls.ListViewItemType.DataItem Then
'Retrieve data item
Dim DataItem As ListViewDataItem = DirectCast(e.Item, ListViewDataItem)
Dim RowView As DataRowView = DirectCast(DataItem.DataItem, DataRowView)
Dim EventDate As DateTime = RowView("EventDate")
'Get literal control
Dim CurrentDate As Literal = e.Item.FindControl("CurrentDate")
'Display friendly date
If Not IsNothing(CurrentDate) Then
Select Case EventDate.Date
Case Is = Now.Date
CurrentDate.Text = "Today"
Case Is = Now.Date.AddDays(1)
CurrentDate.Text = "Tomorrow"
Case Is = Now.Date.AddDays(2)
CurrentDate.Text = Now.Date.AddDays(2).DayOfWeek.ToString
Case Is = Now.Date.AddDays(3)
CurrentDate.Text = Now.Date.AddDays(3).DayOfWeek.ToString
Case Is = Now.Date.AddDays(4)
CurrentDate.Text = Now.Date.AddDays(4).DayOfWeek.ToString
Case Is = Now.Date.AddDays(5)
CurrentDate.Text = Now.Date.AddDays(5).DayOfWeek.ToString
Case Is = Now.Date.AddDays(6)
CurrentDate.Text = Now.Date.AddDays(6).DayOfWeek.ToString
End Select
Else
CurrentDate.Text = "-"
End If
End If
End Sub
Please could you help me understand the best way to perform the grouping by date?
Any help or advice is greatly appreciated!
Many thanks
Daniel

When I've done this in the past I've always used a calculated field that translated the days into the groupings I wanted.  You couldn't do quite the groupings that you list above, but it would give you categories to group on.  You could then
apply the groupings in the base view.  Then you could use the Row Databound event to change the labels on the Groupings at runtime to the ones you want to use.
Paul Stork SharePoint Server MVP
Principal Architect: Blue Chip Consulting Group
Blog: http://dontpapanic.com/blog
Twitter: Follow @pstork
Please remember to mark your question as "answered" if this solves your problem.

Similar Messages

  • Update SharePoint list programatically twice a day with SQL 2008 r2

    How complicate is to sustain the update  SharePoint list programatically twice a day by using SQL job?
    the data need  to be update twice a day and it is going o be use to feed a share point form...where the user(S) will be choosing by lookup in infopath form.
    BTW..I do not have control of the SharePoint farm, I have MS SQL 2008 R2 and SharePoint version is 2010. 
    Or Also I am considering to use  MS access 2010 and SharePoint version is 2010.
    CRISTINA&amp MICROSOFT Forum

    >DRAFT IDEA<
    Is this will corrupt SharePoint if I try this?
    The two data list that I want to update twice a day come from other database sources
    One is from Human Resources roster list. (The result of the query) –amount of records >> 600
    UNREAL
    example
    Unique ID
    domain name
    Region
    Badge
    Full Name
    email address
    Manager
    Director
    EUROPE
    EMEA
    123456
    Bear, Charles
    [email protected]
    Hanc, Juilan
    Cano, Oscar
    AMERICAS
    ABU
    223456
    Ros, Adrian
    [email protected]
    Knight, Dexter
    Brown, Dexter
    ASIA-PACIFIC
    APJ
    323456
    Chen, Andy
    [email protected]
    Ducann, Scott
    Ginger, Jeff
    (JOIN) From the roster list connect with the User Information List "user
    credential"(/_vti_bin/UserProfileService.asmx) to allow me Create dependent drop-down by using these articles:
    https://claytoncobb.wordpress.com/2009/06/21/userprofileservice-extended/
    http://sharepoint911.com/blogs/laura/Lists/Posts/Post.aspx?ID=172
    http://blogs.msdn.com/b/infopath/archive/2004/03/24/95529.aspx
    http://www.dotnetcurry.com/showarticle.aspx?ID=794
    http://www.codeproject.com/Articles/155829/SQL-Server-Integration-Services-SSIS-Part-Basics
    The second one comes from Account list. (The result of the query) –amount of records >> 22,000
    FAKE
    example
    Unique ID
    email_address
    account_id
    account_lk_id
    account_name
    subdivision_region_name
    subdivision
    support_model
    [email protected]
    22650
    22649
    NANA Web Skills
    AP
    Martial Law
    PunkingSPlus
    [email protected]
    16624
    16624
    ELECTRIC FOOD
    AMER
    Short Circuit Blue
    PunkingSPlus
    [email protected]
    12538
    12538
    100 Got drunk
    EMEA
    100 Got drunk
    PunkingSPlus
    [email protected]
    22206
    22205
    911 Hospital Ghost
    AP
     Hospital AP
    PunkingSPlus
    [email protected]
    6886
    6886
    Administration for UFO LAND
    AP
    Xiamen
    PunkingSPlus
    [email protected]
    22242
    22241
    ACT  Recording
    EMEA
    ACT  Recording  Orange
    PunkingSPlus
    (JOIN) In this list I will need to do the same connect with the User Information List "user
    credential"(/_vti_bin/UserProfileService.asmx)
    To narrow these lists to what they are only responsible to work..
    These two tables are going to be part of InfoPath form ...
    with these draft idea , Do I need to be considering to be using what you suggest ? >>>"PowerShell
    availabe in SQL and the CSOM to interact with SharePoint "
    Could be possible that you can also provide an article?? relate to ....
    "Firstly you must not update SharePoint content databases directly from SQL. Doing so may
    corrupt your farm and will render it unsupported by Microsoft."
    Thanks in advance
    CRISTINA 

  • Linked table in Access not displaying all SharePoint List columns

    In Access 2007 I created a link to a list in SharePoint 2010. 
    Originally the modified by and created by columns were not visible in SharePoint.  They did not appear in the Access table.
    I made the two lists visible in Sharepoint and refreshed the link.  However, the two columns did not appear in the Access table.  I created a new .accdb file and re-created a link to the list yet the two columns still do
    not appear in the table.
    How do I get these two columns to appear in the Access table?
    Thanks,
    - Bruce

    I figured it out by accident.  The fields are in the linked table ... they are just hidden!
    I face the same Problem with Access 2013 and SharePoint-Online from Office 365. I added additional columns to the list in SharePoint, but they won't appear in the linked table in Access. Even when I make all columns visible, they are not listed.
    Updating data for the other columns works like a charm.
    Any idea from anyone?

  • External display's brightness can no longer be controlled with external keyboard in 10.8.2

    I can no longer control external display's brightness with external keyboard.
    Until now my external keyboard controlled external display's brightness and MBPr's keyboard MBPr's brightness. Now the only way of changing external display's brightness is via Display preferences which is cumbersome
    Is there any way of going to pre 10.8.2 settings?

    I noticed that the keyboard and tablet were'nt working when plugged into a usb hub or monitor usb port.  I had to plug in the keyboard and tablet into a mbp usb port where they worked.  For some reason, after plugging them back into the usb hub they worked again.  Could just be dumb luck though.

  • Since the new MSN started I can display the email list but can to nothing with it, cannot open, delete or anything else with the individual emials

    Since the new MSN started several days ago I have not been able to do anything with my emails in Hotmail while in Firefox. I have had to return to Safari. What do I do?
    == URL of affected sites ==
    http://bl102w.blu102.mail.live.com

    Yeah, there seems to be many of us with a common problem. I guess Apple will issue a work around or patch at sometime.
    However, the Airmail app I mentioned before is worth a look - has worked fine since I purchased it. I admit it doesn't solve the problem of accessing any emails you need that are stored in the Mail application....
    You might be able to get to copies of them on the relevant server of your email account provider via whatever browser you use (web mail).
    My friend who has a much newr MacBook Pro isn't having any Mail issues....so maybe Apple are unwittingly pushing us with older systems to upgrade...I'm not really a cynic

  • Credit control with Groups of Customers and individul customer

    Hello,everyone.
    I want to realize the credit control for the groups of customers and
    each individul customer belongs to it.
    how can i do ?
    thanks first

    Well you can group these customers under one credit control area Tcode OB45 , and you can define your individual customer under this credit control area.
    & in OB38 assign company code to this credit control area.
    Hope this fixes your Problem
    Cheers

  • I have custom sharepoint list and i have displayed this list on sharepoint webpage as a webpart.

    Hi,
    i have custom sharepoint list and i have displayed this list on sharepoint webpage as a webpart.
    now, i want to display limited sharepoint list items in that webpart and remainig items i want to show in read more link in right bottom of the webpart.
    Any one help me how to do this

    Hello,
    As i understand you want to add read more link for rest of items in listview webpart. You can create new view and set item limit in that view then add that list as webpart on webpart-->edit your webpart-->select view from view selection dropdpwn-->
    save it
    Later add one CEWP and use html <a> tag to redirect to your main list when clicks on it. Here is the steps to do this:
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/a9d036ff-04a8-4235-84a5-c90164ff5294/read-more-for-sharepoint-list
    You can also use Jquery/Javascript/ECMA script but above one is OOTB and easy solution
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see<br/> Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to add a running value from external field in a repeating table of SharePoint list

    I'me creating an infopath form that will display a SharePoint list. I want to add a link control in a repeating table using the value of the first column per row but I'm getting an issue. the link control displays only the first row. thanks in advance.

    Hi,
    I found a similar thread posted by you here:
    http://social.technet.microsoft.com/Forums/en-US/e1fa36c1-cb5c-456d-ba40-2f26301913d2/how-to-loop-through-each-row-in-a-repeating-table-using-sharepoint-workflows?forum=sharepointgeneralprevious
    I suppose both the threads are reuqesting the method to get values from repeating table via workflow, so we can focus on the issue on the other case. If there is more requestment here, let me know.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Is there a way to Insert Data into a Lookup Column Type on a SharePoint List Destination in SSIS?

    Greetings.
    I have successfully worked out inserting SQL data (2008 R2) into my 2010 SharePoint list (New, Update, Delete) by creating an SSIS Data Flow Task as outlined here:
    http://fsugeiger.blogspot.com/2010/01/synchronise-sql-table-with-sharepoint.html
    However, the problem I am running into is inserting data into the SharePoint Columns that are "Lookup" column types. I verified that all of the values I am copying from SQL into the SharePoint lookup column exist in the customn list it is pointing to. It
    is important to have this column be a lookup column as it links to another custom list that has many more columns of related information.
    I have read and re-read the SharePoint SSIS Adapters 2011.docx from
    http://sqlsrvintegrationsrv.codeplex.com/ and the only section that seems to apply is this:
    "Looking Up Values in a SharePoint List
    If you have to look up a value in a SharePoint list, you can use the Lookup transformation in your data flow, and use the SharePoint List source to load the lookup table. You may have to add a Derived Column transformation or a Script component that splits
    data in the lookup column on the ";#" delimiter to separate the ID value from the description.
    If you are replacing values in your data with the values that you look up in the list, then loading the changed data back into SharePoint, you only have to include the ID from the lookup column. SharePoint ignores the description if you include it."
    I am not sure if the above statement means that I should be passing the assocaited ID's other than the actual data into the SharePoint List destination. If that is the case, that will not really work as the lookup contains hundreds of rows. Not too mention
    I have several of these lookup column types pointing to several different lists.
    Any guidance in how I can put data into a SharePoint Lookup column type via Data Flow Task would be so much appreaciated.
    Thank you.
    My errors are:
    Error: 0x0 at Data Flow Task, SharePoint List Destination: Error on row ID="1": 0x1 - Unspecified error, such as too many items being updated at once (batch), or an invalid core field value.
    Error: 0xC0047062 at Data Flow Task, SharePoint List Destination [1903]: Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.PipelineProcessException: Errors detected in this component - see SSIS Errors at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListDestination.ProcessInput(Int32
    inputID, PipelineBuffer buffer) at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostProcessInput(IDTSManagedComponentWrapper100 wrapper, Int32 inputID, IDTSBuffer100 pDTSBuffer, IntPtr bufferWirePacket)
    Error: 0xC0047022 at Data Flow Task, SSIS.Pipeline: SSIS Error Code DTS_E_PROCESSINPUTFAILED. The ProcessInput method on component "SharePoint List Destination" (1903) failed with error code 0x80131500 while processing input "Component Input" (1912). The identified
    component returned an error from the ProcessInput method. The error is specific to the component, but the error is fatal and will

    I have found a solution to my problem and thought I would share it here in case there are others who are struggling with the above scenario. If you have a better way, I would love to hear about it since my way is a bit tedious.
    In a nutshell, in order to have an SSIS package put data from an OLE DB Source into a SharePoint List Destination Lookup Column, you need to pass the ID of the value that is being looked up, not the value that is in the “master” OLE DB source.
    Rough explanation, OLE DB Source value for column “Approp” is “4005” --> SQL matches “4005” with the ID in the new lookup table (“4005” = ID “5” as defined in the SharePoint lookup list) --> “5” gets passed into SharePoint List destination lookup
    column --> SharePoint displays “4005” and successfully links to the lookup list.
    Funny thing (not really), the error(s) outlined in my original post are not related in getting data into a SharePoint Lookup column as I am now successful in getting data into the system but I am still getting the same above error(s). I think it has to do
    with the ID column in the SharePoint list destination. What I can’t seem to figure out is why since I am not linking any data to that ID column (at least on new records). I am however linking it on Update and Delete and the errors mentioned above disappear
    and things work well.
    There are three tasks that need to get done in order to get data from SQL into a SharePoint lookup column assuming you have already set up your SharePoint lookup lists:
    1. Create new lookup table(s) in SQL that has the IDs from the SharePoint Lookup list and the values coming from the “master” OLD DB Source. You can see the ID column in SharePoint by toggling it on in a view.
    2. Create a SQL command that JOINs all the databases and tables so that the ID is passed and not the value into the SharePoint lookup column
    3. Change the “Data access mode” to “SQL Command” instead of the “Table or view” in the OLE DB Source and paste your command into the “SQL command text:” area.
    Other helpful info is that you may also need to add additional columns in the new lookup tables in SQL for the scenarios when the data is not unique. You can see this two times in my SQL command example for Units and JobTitles:
    SELECT
    pps.SSNm,
    pps.file_updated,
    pps.Employee_id,
    /* pps.CheckDistNm,*/
    Check_Distribution_id = COALESCE( d.ID, 0 ),
    pps.Job_nbr,
    pps.SeqNm,
    pps.action_eff_dt,
    Fund_id = COALESCE( f.id, 0 ),
    Appropriation_id = COALESCE( ap.id, 0 ),
    ActionCode_id = COALESCE( ac.id, 0 ),
    SpecNumber_id = COALESCE( jt.ID, 0 ),
    pps.Employee_id,
    /* pps.Fund,
    pps.Approp,
    pps.Unit,*/
    Unit_id = COALESCE( u.ID, 0 ),
    PosNm,
    PosCode,
    pps.LastName,
    pps.FirstName,
    pps.MI
    FROM
    x_PPS.aReportVw.pps_screens_active AS pps
    LEFT OUTER JOIN dbo.DistributionNumbers AS d ON
    pps.CheckDistNm = d.Check_Distribution
    LEFT OUTER JOIN dbo.Units AS u ON
    pps.Fund = u.Fund AND
    pps.Approp = u.Approp AND
    pps.Unit = u.Unit
    LEFT OUTER JOIN dbo.Appropriations AS ap ON
    pps.Approp = ap.Approp
    LEFT OUTER JOIN dbo.Funds AS f ON
    pps.Fund = f.Fund
    LEFT OUTER JOIN dbo.ActionCodes AS ac ON
    pps.ActionCode = ac.ActionCode
    LEFT OUTER JOIN dbo.JobTitles AS jt ON
    pps.SpecNm = jt.SpecNumber AND
    pps.JurisClass = jt.JurisClass

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

  • I have a SharePoint list, that list contains photos(images), now i want display that images in spgridview?

    Hi All,
    i have a SharePoint list, that list contains photos(images).
    now i want display that images in spgridview.
    How can i display?
    Thanks in advance!

    Hi,
    According to your post, my understanding is that you want to display that images in spgridview.
    You can use a hyperlinkfield that is bound to the SPGridView. Please refer to:
    Add a Hyperlink Image in a SPGridView
    You can also use TemplateField or ImageField to render images. Please refer to:
    Image not showing in grid view
    In addition, here are two similar articles for your reference:
    How To: Use SharePoint 2010 WebParts with a GridView Control to get SQL Image Data
    type and other Values
    DotNetSharePoint: How to display images in gridview from database using asp.net
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Change the value of a SharePoint List lookup control value using javascript

    hi,
    could you please help in changing the value of a SharePoint List lookup control value using javascript.
    Please note that i have to change the lookup value which is in the form of a drop down from the infopath form.
    Thanks

    https://stackoverflow.com/questions/5678210/select-dropdown-menu-option-with-javascript
    Does that help?

  • Displaying icons in List control

    Hi everybody…
    I am trying to display icons in List control:
    <mx:List id="wEuropeList" width="100%" height="100%"
    color="blue"
    dataProvider="{wEuropeXML..client.@label}"
    change="changeHandler(event)"
    borderThickness="0"
    iconField="{wEuropeXML..country.@flag}"/>
    I know I am an idiot but please help me to make it
    work….
    Thanks

    Icons are not natively set to allow runtime images. So trying
    the method you are now won't work just because by default when your
    Flex application compiles it looks for that icon to embed with it.
    There are two ways you can essentially get around this. A) is best
    described by Ben Stucki with his post
    here B) would be to use
    an itemRenderer that uses an Image Control and pass the source to
    that. Either one should do the trick. Hope this helps.

  • I want to assign the Url of a Sharepoint list page to a Constant, and I am using it into User Control navigate Url.

    I want to assign the Url of a Sharepoint list page to a Constant, and I am using it into User Control navigate Url.
    But it is Not working there , Could you Please Suggest me the Better way..
    Regards
    Nitesh

    Your question isn't clear. Can you explain what you're trying to do and what you've attempted?

  • How to display Sharepoint list in SQL Server as physical tables

    Hi,
    How can I link sharepoint list into a sql server database. I am working in migration that is converting some Access databases into SQL Server. The access files have some tables that are a link to a sharepoint list. The tables look like actual tables of the
    database. How can I duplicate the same linked tables into the new databases in the SQL Server.
    Some help or guidance will be appreciated.

    You can use SSIS to extract the SharePoint data and load it into SQL Server.  see
    Extracting and Loading SharePoint Data in SQL Server Integration Services
    David
    David http://blogs.msdn.com/b/dbrowne/

Maybe you are looking for