SearchSelectParams
The SearchSelectParams contains the cross reference of select parameters that need to be retrieved from E3C and included in the search results to the UI parameters. The "key" attribute provided for each SearchSelectParam is the internal value of PTC Arbortext Content Delivery UI and "value" provided is the E3C parameter name. Typically the select parameters are passed from the UI using $select OData parameter ($select=id,title,infoType).
<SearchSelectParams>
<SearchSelectParam key="title" value="TITLE" />
<SearchSelectParam key="id" value="PERSISTENTID" />
<SearchSelectParam key="infoType" value="TYPERESULT" />
</SearchSelectParams>
Customization
Typically the customization can be done if there is a change in a E3C parameter name such as “TITLE” (which is changed from “TITLE” in the above example to “DESCRIPTION”) or a new attribute needs to be retrieved (“countryCode” has been added below)..
<SearchSelectParams>
<SearchSelectParam key="title" value="DESCRIPTION" />
<SearchSelectParam key="id" value="PERSISTENTID" />
<SearchSelectParam key="infoType" value="TYPERESULT" />
<SearchSelectParam key="countryCode" value="COUNTRY" />
</SearchSelectParams>