SP_SetProperty
Sets the column property in SharePoint for the documents you want to upload.
Syntax
bool SP_SetProperty(StrParam)Parameters
Two comma separated values:- Column name is the name or ID of the target column in SharePoint.
- Data value is the value to be uploaded to that column. Refer to the documentation for more information about the column types.
Smart Parameters are supported.
Returns
True if the parameters are not blank. The index information is uploaded to SharePoint when a document is subsequently uploaded. Otherwise, False.Level
All.Details
Sets an index value (column in SharePoint) for the documents to follow. Can be called multiple times to set multiple index values.Notes®:
- Any spaces in column names must be replaced with “_0x02c_”.
- The real column name may be different from what is displayed in SharePoint. To determine the real Column name select the column settings and check the browser address.
- For example for the property called Description you may see "....3F2%7D Field=Comments" at the end. This means that the real name of the Column to be used in the SP_SetProperty action is "Comments".
- Example
SP_SetProperty("Date,@Value") SP_Upload()Moves the value of the current field to the SharePoint column named Date.