question

Upvotes
Accepted
1 0 1 4

Codes for Search Light results

Hi,

I am investigating RDP search light and wondering where I can find list of all codes for the following fields: AdjustmentFactorCode, RCSCurrency, Unit. For example, all these fields can be found in results of next query:

{
    "View": "SearchAllLight",
    "Filter": "RIC eq 'aXZCGDPD/CA'",
    "Select": "_debugalllight"
}

Can you help me with this?

#technologyrdp-apisearchrdp
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
Accepted
79.7k 257 52 74

@bmirzai

Thanks for reaching out to us.

If you mean the possible values of those fields, you can use the "GroupBy" or "Navigators" property.

The "AdjustmentFactorCode" field supports the "GroupBy" property and the "RCSCurrency" and "Unit" fields support both the "Navigators" and "GroupBy" properties.

 "AdjustmentFactorCode": {
      "Type": "String",
      "Searchable": true,
      "Sortable": true,
      "Groupable": true,
      "Exact": true,
      "Symbol": true
    },
...
    "RCSCurrency": {
      "Type": "String",
      "Searchable": true,
      "Navigable": true,
      "Groupable": true,
      "Exact": true
    },
...
   "Unit": {
      "Type": "String",
      "Searchable": true,
      "Sortable": true,
      "Navigable": true,
      "Groupable": true,
      "Exact": true
    },

The request with the "GroupBy" property looks like this:

{
  "View": "SearchAllLight",
  "GroupBy": "AdjustmentFactorCode",
  "Filter": "AdjustmentFactorCode ne null",
  "GroupCount": 1,
  "Select": "RIC,DocumentTitle,AdjustmentFactorCode,RCSCurrency,Unit",
  "Top": 10000
}

The requests with the "Navigators" property look like this:

{
  "View": "SearchAllLight",
  "Navigators": "RCSCurrency(buckets:1000)",
  "Select": "RIC,DocumentTitle,AdjustmentFactorCode,RCSCurrency,Unit",
  "Top": 0
}
{
  "View": "SearchAllLight",
  "Navigators": "Unit(buckets:1000)",
  "Select": "RIC,DocumentTitle,AdjustmentFactorCode,RCSCurrency,Unit",
  "Top": 0
}

I hope that this information is of help.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
1 0 1 4

@Jirapongse

Thanks for your help. In my original question I forgot to mention that I also need value descriptions.

For example what does mean:

"AdjustmentFactorCode": "Q",

I'll be glad if you help me find descriptions for other values of these fields.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

@bmirzai

Sorry. I am unable to find the descriptions of the AdjustmentFactorCode.

You need to contact the content support team directly via MyRefinitiv for the descriptions.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.