function readOnly(count){ }
Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
By using developer console you can get all the field API name by defining the object name with DOT notation also dynamicly you can use Schema.SObjectType to get the object field dynamically
Map<String,Schema.SObjectField> AccFields = Schema.getGlobalDescribe().get('Account').getDescribe().fields.getMap();
Thanks ,
Sagarika
how can i get field values for that particular api name field.
Select ID, name,email__c from Account limit 1 ;
Where ID , name , email__c specifies the field API name.
i want the values like this Map<fieldname,value>
in the above map i want the value of associated field