I just wanted to take a moment to express my sincere gratitude for your amazing videos on Apex use cases. Your content has been incredibly helpful, and today I was able to learn how to effectively use the Schema class, all thanks to your clear explanations and practical examples. Your videos have truly made a difference in my development journey, and I appreciate the effort you put into sharing your knowledge with the community. Keep up the fantastic work!
@SachinM19852 ай бұрын
Schema make sense 😊
@salesforcemakessense2 ай бұрын
@@SachinM1985 awesome 🤩
@GNarendharReddy2 ай бұрын
public class recordTypes { public static List checkRecordType(String type) { List rT = [select id,name,SobjectType from recordtype where SobjectType =:type]; return rT; } } What about this code?
@salesforcemakessense2 ай бұрын
@@GNarendharReddy looks good 👍
@naveenyalamala2 ай бұрын
Schema makes more sense
@salesforcemakessense2 ай бұрын
@@naveenyalamala yay!
@jobshorts50792 ай бұрын
Hey can you explain this question in your next video ……this question is asked to me in TCS exam ……they told me to write APEX code for this question QNS: You need to create 2 Custom Objects . Object - 1 : Tech_Firm__c Fields : Max_Salary__c (Currency) , Min_Salary__c (Currency) Object - 2 : Employee__c Fields : Salary__c (Currency) , Tech_Firm__c (Lookup) wants to keep track of the highest and lowest salaries paid by each of its tech firms to gain insights into how salaries are distributed across different parts of the organization and take appropriate actions to ensure that employee salaries are fair and equitable.
@salesforcemakessense2 ай бұрын
@@jobshorts5079 sure I will share something around it soon.
@jobshorts50792 ай бұрын
@@salesforcemakessense thank you ☺️
@naveenyalamala2 ай бұрын
You can accomplish this by using Apex Trigger with SOQL queries.
@jobshorts50792 ай бұрын
@@naveenyalamala yes but they want apex code not trigger
@salesforcemakessense2 ай бұрын
@@jobshorts5079 apex triggers are part of apex code 😅