Hello,
I need to programatically modify SchemaName of all option set attributes. (Basically I want to add some suffix).
RetrieveAttributeRequest attributeRequest = new RetrieveAttributeRequest
{
EntityLogicalName = Contact.EntityLogicalName,
LogicalName = "new_piclist",
RetrieveAsIfPublished = true
};
above code just giving me single option set attribute but I need to get list of all option set attribute, is there some way to query it?
Thanks,
Ashish





