SP 2013 Learnings Important links



1. How to Configure Email Enabled Document Libraries in SharePoint 2013 
     Video -  https://www.youtube.com/watch?v=FpFSsQUzi7M

2.How to configure the site access requests in Sharepoint 2013
    Article -  http://blog.cloudshare.com/2012/12/09/how-to-configure-the-site-access-request-in-sharepoint-2013/

3.Good video for share point development 2010
http://www.youtube.com/watch?v=7c-6GrWuwbQ

4.2013 info path form.
https://www.youtube.com/watch?v=YykPToPH0Cc
5.http://www.youtube.com/watch?v=sFiPtoGpjFI
SharePoint 2010 | Cascading Lookup Field using Client Object Model

5.   client object model sample code : pagination, add, update,delete

http://msdn.microsoft.com/en-us/library/office/ee857094%28v=office.14%29.aspx


6.http://www.learningsharepoint.com/2010/07/27/programatically-create-user-groups-client-object-model-sharepoint-2010/

7.https://www.facebook.com/learning.sharepoint.page   - good tips


work at home:
8.http://www.oclktrk.com/f.php?btid=024-SPU-1049789-441-BTIDP95ennPPBzY_&u=http%3A%2F%2Fovaed.com%2Fclick%3Foffer%3D368%26aff%3D41%26subid%3DBamboosolutions.com%26subid2%3D024-SPU-1049789-441-BTIDP95ennPPBzY_&p=Greener Web


Please read the user feedback.

How to update table which is having trigger..

 alter table CampaignBuyer disable trigger
begin tran
update CampaignBuyer
set b.user_id = c.user_id
-- select b.user_id,c.user_id,b.*
from CampaignBuyer b,  #test c
where
b.market_code = c.market_code
and b.campaign_id = c.campaign_id
and b.notes = c.notes
and b.buy_due_date = c.buy_due_date
and b.assigned_date = c.assigned_date
and b.station_replicate_flag = c.station_replicate_flag
and b.buyer_type = c.buyer_type
commit tran
rollback tran
alter table CampaignBuyer enable trigger

----

No comments:

Post a Comment

SPFX - HTTPClient - Curd Operations - SharePoint list.

  Create solution in the name of SpfxCrud. ISpfxCrudProps.ts export interface ISpfxCrudProps {   description : string ;     context : an...