Apex Use Case 29 | Chapter 88 | Salesforce Developer Masterclass

Поделиться
HTML-код
  • Опубликовано: 1 дек 2024

Комментарии • 21

  • @viloklakkimsetti1244
    @viloklakkimsetti1244 2 месяца назад +1

    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!

  • @vishnurajv142
    @vishnurajv142 6 дней назад +1

    schema makes excellent sense✌

  • @SachinM1985
    @SachinM1985 3 месяца назад +1

    Schema make sense 😊

  • @GNarendharReddy
    @GNarendharReddy 2 месяца назад +1

    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?

  • @naveenyalamala
    @naveenyalamala 3 месяца назад +1

    Schema makes more sense

  • @jobshorts5079
    @jobshorts5079 3 месяца назад +1

    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.

    • @salesforcemakessense
      @salesforcemakessense  3 месяца назад

      @@jobshorts5079 sure I will share something around it soon.

    • @jobshorts5079
      @jobshorts5079 3 месяца назад +1

      @@salesforcemakessense thank you ☺️

    • @naveenyalamala
      @naveenyalamala 3 месяца назад

      You can accomplish this by using Apex Trigger with SOQL queries.

    • @jobshorts5079
      @jobshorts5079 3 месяца назад

      @@naveenyalamala yes but they want apex code not trigger

    • @salesforcemakessense
      @salesforcemakessense  3 месяца назад

      @@jobshorts5079 apex triggers are part of apex code 😅

  • @rajeshbandaruu
    @rajeshbandaruu 3 месяца назад +1

    Scheme makes more sense