SharePoint new Release. SharePoint 2019 Hub Site Latest SharePoint news

Microsoft announced a mid-2018 release date for SharePoint 2019

You can find more details in the below mentioned links

https://techcommunity.microsoft.com/t5/SharePoint-Blog/SharePoint-hub-sites-new-in-Office-365/ba-p/109547


Sharepoint specific update you can find in the below links

https://collab365.community/sharepoint-2019-announced-complete-round-ignite/

http://www.cmswire.com/digital-workplace/mark-your-calendars-microsoft-announces-mid-2018-sharepoint-2019-release/




Few updates of sharepoint 2019:

SharePoint Hub Sites: New Intranet Building Tool
The Redmond, Wash.-based company also announced it will release SharePoint hub sites next year, with an expected roll out to Office 365 First Release customers in the first half of 2018.

SharePoint hub sites are a new intranet-building element that will bring together related sites under a unified look and feel with shared navigation. 

“The digital workplace is dynamic and ever changing. Business goals and team structures evolve and change — often frequently,” Mark Kashman, senior product manager on the SharePoint team wrote in a blog about the new release.

“SharePoint helps your organization adapt, by connecting your workplace with intelligent content management and intranets that give you the tools to share and work together, and to inform and engage people across the organization. And now it gets easier to organize your intranet dynamically.”

What stands out amongst the new functionality included in hub sites is the ability it gives intranet managers to combine multiple team sites and communication sites in one place to create an intranet that reflects the way enterprises work.

Even better, Microsoft designed the new hubs with mobile devices in mind. The SharePoint mobile app will be updated to natively render hub sites, and their pages, news and content, as well as providing smooth navigation between associated sites.


excel and other useful formula and links

1. Excel formula for date and otheres =CONCATENATE("insert into #brand_weeks select '",B4,"','",TEXT(C4,"mm/dd/yyyy"),"'")

good to refere to start the code.
2. http://www.codeproject.com/Articles/399156/SharePoint-Client-Object-Model-introduction


 

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

----

SharePoint online migration from SharePoint 2013/2016 pre-analysis

Migrating SharePoint 2013 to office 365 share point online following steps need to be taken care.

1. Take your existing site inventory first.
2.Check the orphan sites and unused site.
3. Try to remove all the content those are all no longer needed.
4. Check your current office 365 account plan.
5. Make sure your custom code get replaced with new office 365 compatible code.(we can't deploy wsp)
6. Plan for new template and related css to retain the same look and feel
7. Third party workflow online version and usage policy. They may charge for per workflow and etc.
8.Go with migration tool.
9. Checkout and major version file only will be migrated.
10. Purge all the running instance or ask users to complete the workflow tasks.

11.Try one sample run. and test .
Thanks

SPFX - HTTPClient - Curd Operations - SharePoint list.

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