我正在使用Tooling API来更新选项列表值。它给出了以下错误:
无法更改Apex类中引用的自定义字段的字段类型 触发器:
代码:
String json = '{ "Metadata" : { "externalId" : false, "label" : "Meeting Type", "picklist" : { "controllingField" : null, "picklistValues" : [';
Schema.DescribeFieldResult fieldResult = Scope_Of_Services_Tasks__c.Meeting_Type__c.getDescribe();
List<Schema.PicklistEntry>listpickVal = fieldResult.getPicklistValues();
/*Set<string>setPickValue = new set<string>{'Open Items Review','Implementation','Q1','Q2','Q3','Q4','Benefits Review','Vendor Partner Review'};
for(string plEntry : setPickValue){
json = json+'{"default" : false, "description" : null, "fullName" : "'+plEntry+'"},';
}*/
for(Schema.PicklistEntry plEntry : listpickVal){
json = json+'{"default" : false, "description" : null, "fullName" : "'+plEntry.getLabel()+'"},';
}
json = json+'{"default" : false, "description" : null, "fullName" : "'+picklistval+'"}],"restrictedPicklist" : null,"sorted" : false},"type" : "Picklist","unique" : null,"urls" : null,"visibleLines" : null,"writeRequiresMasterRead" : null },"FullName" : "Scope_Of_Services_Tasks__c.Meeting_Type__c"}';
System.debug('@@@___'+json);
Httprequest req = new HttpRequest();
req.setEndpoint('https://cs7.salesforce.com/services/data/v32.0/tooling/sobjects/customField/00NE0000004t18P?_HttpMethod=PATCH');
req.setMethod('POST');
req.setHeader('Content-Type', 'application/json');
req.setHeader('Authorization', 'OAuth ' + UserInfo.getSessionId());
req.setBody(json);
Http httpReq = new Http();
HttpResponse res = httpReq.send(req);
答案 0 :(得分:0)
好的,所以在这个阶段,虽然我不是100%肯定,但这似乎不可能,至少使用工具API ,我已经解释了一下以下是我尝试过的事情。在此期间,我可以100%确认这确实与Metadata API完全一致!这是一个例子......
MetadataService.MetadataPort service = createService();
// Read Custom Field
MetadataService.CustomField customField =
(MetadataService.CustomField) service.readMetadata('CustomField',
new String[] { 'Lead.picklist__c' }).getRecords()[0];
// Add pick list values
metadataservice.PicklistValue two = new metadataservice.PicklistValue();
two.fullName= 'second';
two.default_x=false;
metadataservice.PicklistValue three = new metadataservice.PicklistValue();
three.fullName= 'third';
three.default_x=false;
customField.picklist.picklistValues.add(two);
customField.picklist.picklistValues.add(three);
// Update Custom Field
handleSaveResults(
service.updateMetadata(
new MetadataService.Metadata[] { customField })[0]);
关于工具API错误的理论。 Tooling API的数据结构的方面,就像Metadata API一样,最初看似是可选的,但有些看起来不是。我的错误消息背后的理论是,您需要在元数据部分中设置更多信息,例如字段类型,因为看起来Salesforce正在考虑您想要更改它,因为您没有通过它。
尝试使用工具API方法。为了解决这个问题,我通常建议先检索自定义字段,然后修改数据结构并执行更新。但是在这种情况下,无论我尝试什么,似乎我从CustomField上的Tooling API SOQL查询中获得了大部分空白的元数据信息。我将看看我是否可以让Tooling API开发人员在这里发表评论。
Select Id, Metadata, DeveloperName, NamespacePrefix, TableEnumOrId
From CustomField
Where DeveloperName = 'YesNo'