FavoritosRakesh Mallikarjun (Bit Order Technologies) perguntou em #CRM Configuration27 de fev. de 2021, 14:16Return type of an Apex action method must be a PageReference. Found: core.apexpages.el.adapters.ApexListELAdapterpublic class WorkBenchControllerClass { public String obj; public List<String> objFields {get;set;} public WorkBenchControllerClass() { } public String getobj() { return obj; } public void setobj(String obj) { this.obj = obj; } //Fetching Sobjectspublic List<SelectOption> getobjectnames(){ Map <String, Schema.SObjectType> schemaMap = Schema.getGlobalDescribe(); System.debug('globaldesc values--> '+schemaMap); List<SelectOption> options=new List<SelectOption>(); options.add(new SelectOption('None','None')); for(Schema.SObjectType objType : schemaMap.values()) { options.add(new SelectOption(objType.getDescribe().getName(),objType.getDescribe().getName())); } return options;} //Fetching Fields public List<SelectOption> fetchFields() { List<SelectOption> allfields=new List<SelectOption>(); List<String> fields = new List<String>(); Map<String , Schema.SObjectType> globalDescription = Schema.getGlobalDescribe(); System.debug('Selected Object is ' + obj); Schema.sObjectType objType = globalDescription.get(obj); System.debug('Object Type is ' + objType); Schema.DescribeSObjectResult r1 = objType.getDescribe(); Map<String , Schema.SObjectField> mapFieldList = r1.fields.getMap(); for(Schema.SObjectField field : mapFieldList.values()) { Schema.DescribeFieldResult fieldResult = field.getDescribe(); if(fieldResult.isAccessible()) { System.debug('Field Name is ' + fieldResult.getName()); //fields.add(fieldResult.getName()); allfields.add(new SelectOption(fieldResult.getName(),fieldResult.getName())); } } return allfields; } }I Tried PageReference also but its not working because.it should return list of fields.Please Help Me to fix this errorMostrar mais3 respostasClassificarClassificar por dataClassificar por mais útilClassificar por dataCarregar mais comentários...Rakesh Mallikarjun (Bit Order Technologies)27 de fev. de 2021, 14:39yes it shoud display picklist (all the fields) in the visualforceAdicionar um comentárioEscrever uma resposta...NegritoItálicoSublinhadoTachadoLista com marcadoresLista numeradaAdicionar linkBloco de códigosInserir imagemAnexar arquivosURL do linkCancelarSalvar0/9000Responder
Rakesh Mallikarjun (Bit Order Technologies)27 de fev. de 2021, 14:39yes it shoud display picklist (all the fields) in the visualforce