sharepoint online - C# CSOM SPView ListItemCollection did not update after I add new field in the SP view -


spclientcontext.credentials = new sharepointonlinecredentials(username, securepassword);  //https://msdn.microsoft.com/en-us/library/office/ee534956(v=office.14).aspx web spweb = spclientcontext.web; list splist_csv = spweb.lists.getbytitle("supplier master list");  view spview_csv = splist_csv.views.getbytitle("_data pending export csv");//oracle export field  spclientcontext.load(spview_csv); spclientcontext.executequery();  camlquery query = new camlquery(); query.viewxml = spview_csv.viewquery;  listitemcollection items = splist_csv.getitems(query); spclientcontext.load(items); spclientcontext.executequery();  foreach (var item in items) {    //some field/item missing? } 

hi, using code above retrieve data sharepoint online. @ first, working fine.

but, when add in new column view _data pending export csv on sharepoint online, found out new added field missing. idea?

ok. found out others issue, lookup field on limit. did fix change lookup field single line of text field, use workflow fill new single line of text field.


Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -