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
Map<String, String> originalMap;
Map<String, String> newMap;
for(String s : originalMap.keySet()) {
if(condition == true) {
newMap.put(s, originalMap.get(s));
}
}
Thank You.
Map <String, Schema.SObjectField> schemaMap;
Map<String, Schema.SObjectField> comparisonFieldMapobject ;
When I store valuesthe result I am getting:
Keys Map{, date__c, name}
Value Map(Name, Date__c)
I could not see the actual values that is stored in the field.
Is it that values stored in the secod map or just the field name
How could I see the values of a field
Regards,
Nisha