Hi,
I am using global optionset containing list of counties for one of our requirements. I have created this global option set in dev environment and then I moved the solution to UAT. After moving the solution in UAT, the global optionset values are not displaying on the form. I have created the lookup field in one of the entities and when I look at the look up in the advance find in UAT I can see the data but while querying the global optionset fetchxml code in XRM tool Box i dont see the data. Here is the fetchxml for the global optionset that i have created.
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false" >
<entity name="stringmap" >
<attribute name="attributevalue" />
<attribute name="value" />
<filter type="and" >
<condition attribute="attributename" operator="eq" value="new_county" />
</filter>
</entity>
</fetch>
Can anyone tell me why I dont see the data of the global optionset in UAT?