Error when Packaging: View is referencing the 'SiteURL:[URL]' property on the 'ListSetting'...

  • 9 September 2019
  • 1 reply
  • 7 views

Badge +3

Hi Everyone,

 

 

 

 

I found a silly little limitation that can cause a major looking error that is able to be easily resolved. 

 

 

 

 

 

ISSUE:

 

 

 

 

 

If you have a Picker control using the 'SharePoint Intergration People Picker Source' SmartObject as the data source, you have the option to configure the 'Search' method input properties used on the Picker. If you have manually configured this, you recieve the following error when packaging the solution on all rules related to the Picker:

 

 

 

 

 

'New ParentList' View is referencing the 'SiteURL: https://portal.denallix.com/' property on the 'ListSetting' ListSetting that could not be found.

 

 

 

 

 

DIAGNOSIS:

 

 

 

 

 

In the input propeties of the Search method used on the Picker, for SiteURL you have something similar to the following:

 

 

 

 

 

https://portal.denallix.com/

 

 

 

 

 

Compared to:

 

 

 

 

 

https://portal.denallix.com

 

 

 

 

 

RESOLUTION:

 

 

 

 

 

It turns out this is an issue with the / at the end of the URL. When the / is left at the end of the URL, this causes an issue with how the URL is read which ends up causing the ListSetting error during package creation. 

 

 

 

 

 

This is resolved simply by removing the trailing / at the end of the URL in the SiteURL, to look something like this:

 

 

 

 

 

https://portal.denallix.com

 

 

 

 

 

Thanks!

 


1 reply

Userlevel 5
Badge +20

Thanks Thomas! 

Reply