function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Puja Gupta 18Puja Gupta 18 

Please help to find in correct answer

Hello All

Please tell me correct answers of below question :

Ques:1  A developer needs to display all the available field for an object.
In which two ways can the developer retrieve the available fields if the variable myObject represents name of the object.

Choose 2 answers
Use myObject.sObjectType.getDescribe().fieldSet() to return a set of fields
Use SObjectType.myObject.fields.getMap() to return a map of fields
Use Schema.describeSObjects( new string[][myObject])[0].fields.getMap() to return a map of fields
Use getGlobalDescribe().get(myObject).getDescribe().fields.getMap() to return a map of fields

Ques2: What are the two features of Heroku connect?
Choose 2 answers
Near real time sync between Heroku postgres and Salesforce
Bidirectional syncs, allowing data to be written into salesforce(right)
Realtime sync between salesforce and postgres
Displaying data from an external data store vs external objects


 Thanks in advance.
v varaprasadv varaprasad
Hi Puja,

Ques:1  A developer needs to display all the available field for an object.
Ans : 2 and 4
 
Map <String, Schema.SObjectField> fieldMap = schema.getGlobalDescribe().get('account').getDescribe().fields.getMap();
system.debug('==fieldMap=='+fieldMap);

======================
    


Map<String, Schema.SObjectField> setfields = schema.SobjectType.account.fields.getMap();
system.debug('==setfields=='+setfields);




Ques2: What are the two features of Heroku connect?

Bidirectional sync, allowing data to be written into SFDC
Displaying data from an external data store via External Objects

https://www.proprofs.com/discuss/q/1291278/what-are-two-features-of-heroku-connect-choose-answers

Hope this helps you!
If my answer helps resolve your query, please mark it as the 'Best Answer' & upvote it to benefit others.

Thanks
Varaprasad
@For  Support: varaprasad4sfdc@gmail.com




 
Rajesh KanikeRajesh Kanike
for Quest 1: Answer is only 2.

I WOULD agree with option 3, if the Option is 
Use Schema.describeSObjects( new string[]['myObject'])[0].fields.getMap() to return a map of fields

I WOULD agree with option 4, if the Option is 
Use getGlobalDescribe().get('myObject').getDescribe().fields.getMap() to return a map of fields

if the object is sourrounded by single quotes

        Map<String,Schema.SObjectField> m2 = Schema.describeSObjects(new String[]{'Account'})[0].fields.getMap();
        system.debug(' Map 2 '+m2.Values());

        Map<String,Schema.SObjectField> m = Schema.getGlobalDescribe().get('Account').getDescribe().fields.getMap();
        system.debug(' Map 1 '+m.Values());