Virendra Kumar - Salesforce Technical Lead
Virendra Kumar - Salesforce Technical Lead
  • 78
  • 84 797

Відео

Salesforce LWC Video 2 - (Basics - Part 2)
Переглядів 2139 місяців тому
Salesforce LWC Video 2 - (Basics - Part 2)
Salesforce LWC Video 1(Setup Salesforce DX Environment)
Переглядів 1809 місяців тому
Link - www.apexhours.com/how-to-setup-visual-studio-code-for-salesforce/
Day 8 - Apex Test Class For Batch/Trigger/LWC/Web Service/HTTP API Callout
Переглядів 9910 місяців тому
Day 8 - Apex Test Class For Batch/Trigger/LWC/Web Service/HTTP API Callout
Day 6 - Batch Class/ Queueable Class/ Schedule Class/ Future Method
Переглядів 7710 місяців тому
Day 6 - Batch Class/ Queueable Class/ Schedule Class/ Future Method
Day 6 - Apex Trigger - Examples
Переглядів 9010 місяців тому
Day 6 - Apex Trigger - Examples
Day 5 - Apex Trigger - Basic Part 1
Переглядів 9610 місяців тому
Day 5 - Apex Trigger - Basic Part 1
Day 4 - SLOSL/SOQL
Переглядів 10910 місяців тому
Day 4 - SLOSL/SOQL
Day 3 - Data Type (List, Set, Map) - Part 2
Переглядів 11711 місяців тому
Day 3 - Data Type (List, Set, Map) - Part 2
Day 2 - Data Type - Part 1
Переглядів 8211 місяців тому
Day 2 - Data Type - Part 1
Day 1 - Basic of Apex and Syllabus
Переглядів 34311 місяців тому
Day 1 - Basic of Apex and Syllabus
Salesforce Admin Video 0 - (Signup Salesforce, User Creation, Profile, Permission Set) #salesforce
Переглядів 1,6 тис.11 місяців тому
Salesforce Admin Video 0 - (Signup Salesforce, User Creation, Profile, Permission Set) #salesforce
Day 5 - Part 2 - Basics of Record Types With Page layout
Переглядів 13911 місяців тому
Day 5 - Part 2 - Basics of Record Types With Page layout
Day 16 - Flow - Use Case 3,4
Переглядів 10911 місяців тому
Day 16 - Flow - Use Case 3,4
Day 15 - Flow - Use Case 2
Переглядів 97Рік тому
Day 15 - Flow - Use Case 2
Day 14 - Flow - Use Case 1
Переглядів 119Рік тому
Day 14 - Flow - Use Case 1
Day 13 - Basics of Flows - Part 2
Переглядів 131Рік тому
Day 13 - Basics of Flows - Part 2
Day 12 - Basics of Flows - Part 1
Переглядів 196Рік тому
Day 12 - Basics of Flows - Part 1
Day 11 - Duplicate Rule in Depth
Переглядів 116Рік тому
Day 11 - Duplicate Rule in Depth
Day 10 - Lookup Filters + Change Data Type For Field
Переглядів 196Рік тому
Day 10 - Lookup Filters Change Data Type For Field
Day 9 - Sharing Model End to End
Переглядів 147Рік тому
Day 9 - Sharing Model End to End
Day 8 - Reports with Report Type
Переглядів 122Рік тому
Day 8 - Reports with Report Type
Day 7 - Validation Rules with Formula
Переглядів 186Рік тому
Day 7 - Validation Rules with Formula
Day 6 - Flexi Page/Lightning Record Page With Dynamic Form/Dynamic Action/Dynamic Related List
Переглядів 1,4 тис.Рік тому
Day 6 - Flexi Page/Lightning Record Page With Dynamic Form/Dynamic Action/Dynamic Related List
Day 5 - Part 1 - Page Layout With List View End to End
Переглядів 235Рік тому
Day 5 - Part 1 - Page Layout With List View End to End
Day 4 - Fields Creation
Переглядів 324Рік тому
Day 4 - Fields Creation
Day 3 - Profile, Permission set, Permission set Group, Role
Переглядів 466Рік тому
Day 3 - Profile, Permission set, Permission set Group, Role
Day 2 - Object Creation in Detail
Переглядів 493Рік тому
Day 2 - Object Creation in Detail
Day 1 - First Step to Salesforce
Переглядів 1,1 тис.Рік тому
Day 1 - First Step to Salesforce
Salesforce Admin Video - 16 (Sharing Model)
Переглядів 1,1 тис.Рік тому
Salesforce Admin Video - 16 (Sharing Model)

КОМЕНТАРІ

  • @gauravjoshi3879
    @gauravjoshi3879 Місяць тому

    thankyou sir

  • @gauravjoshi3879
    @gauravjoshi3879 Місяць тому

    Hi sir , account is creating but in contact that accountid is not mapping like Account is created but when do to related then related contact is not created with that account id

  • @vishnuktech
    @vishnuktech Місяць тому

    9:02

  • @kunalborkarksb9554
    @kunalborkarksb9554 Місяць тому

    thank u sir

  • @KaranDiwakar2kd
    @KaranDiwakar2kd 2 місяці тому

    👍

  • @st.k.4528
    @st.k.4528 3 місяці тому

    11.15 hope that person is still alive 🤣

  • @ankitavasthi9864
    @ankitavasthi9864 4 місяці тому

    Hello sir, i want to attend live classes, what i do. Please share plateform where I register for classes

  • @manyagangwar2033
    @manyagangwar2033 4 місяці тому

    Thank you ❤

  • @barissakarya42
    @barissakarya42 4 місяці тому

    /*When you create a contact, if contact not have account create a account and link to the contact*/ public with sharing class ContactTriggerHandler { public static void createAcc(List<Contact> newList) { List<Account> accList = new List<Account>(); Map<Id, Account> contactToAccountMap = new Map<Id, Account>(); // Create new Accounts and update to Contacts for (Contact con : newList) { if (con.AccountId == null) { Account acc = new Account(Name = con.LastName, Phone = con.Phone); accList.add(acc); contactToAccountMap.put(con.Id, acc); } } if (!accList.isEmpty()) { System.debug('Creating new Accounts: ' + accList); insert accList; System.debug('New Accounts created: ' + accList); // Update to Contacts List<Contact> contactsToUpdate = new List<Contact>(); for (Contact con : newList) { if (contactToAccountMap.containsKey(con.Id)) { contactsToUpdate.add(new Contact(Id = con.Id, AccountId = contactToAccountMap.get(con.Id).Id)); } } if (!contactsToUpdate.isEmpty()) { System.debug('Updating Contacts with new AccountIds: ' + contactsToUpdate); update contactsToUpdate; System.debug('Contacts updated: ' + contactsToUpdate); } } } } *********************************************************************************************************************** *********************************************************************************************************************** trigger ContactTrigger on Contact (after insert, after update) { if (Trigger.isAfter && Trigger.isInsert) { System.debug('Trigger.new: ' + Trigger.new); ContactTriggerHandler.createAcc(Trigger.new); } }

  • @yashpalsingh2340
    @yashpalsingh2340 4 місяці тому

    Nice video

  • @barissakarya42
    @barissakarya42 4 місяці тому

    Why are you didn't explain, how we can connect new acc TO Contact ?

    • @virendrakumar-salesforcete9151
      @virendrakumar-salesforcete9151 4 місяці тому

      Sorry Barish if I have missed that use case. Let me know you need me to create another video with your use case. Please send the same

  • @f.ntechnicals.3542
    @f.ntechnicals.3542 6 місяців тому

    Sir Best Salesforce Keep Helping us

  • @abhishekshah8723
    @abhishekshah8723 6 місяців тому

    Between Student and batch Batch is parent Student is child And Set lookup relationship. U taught wrong to your student.

    • @virendrakumar-salesforcete9151
      @virendrakumar-salesforcete9151 6 місяців тому

      You may be right but I was not wrong Relationship depend upon use case and you ether can it student by batch or batch by student. You just need to make sure consept is cleared with any of the use case.

  • @Just_chill9
    @Just_chill9 7 місяців тому

    Hello sir, please share your contact details. Mujhe Salesforce shikna h

  • @kushagrarahul3121
    @kushagrarahul3121 7 місяців тому

    please add more videos in this playlist, Sir

  • @atshamahmad7041
    @atshamahmad7041 7 місяців тому

    Dear Sir , Let me know if any online class will start

  • @mohdamjad7660
    @mohdamjad7660 7 місяців тому

    Kitne din lag jayenge seekhne me

  • @mohdamjad7660
    @mohdamjad7660 7 місяців тому

    Sir isme record hi banate sabka

  • @atshamahmad7041
    @atshamahmad7041 8 місяців тому

    "Enthusiastic, knowledgeable, and endlessly supportive, my favorite mentor embodies the epitome of guidance. Their ability to distill complex concepts into understandable bits of wisdom is unparalleled. With patience and dedication, they empower growth, fostering not just learning but a genuine passion for the subject matter. Grateful for their mentorship, I confidently navigate new challenges armed with their invaluable insights."

  • @akashpatel-ru7do
    @akashpatel-ru7do 8 місяців тому

    @Virendra Kumar Sir, Your teaching is very awesome, I would like to have paid classes with you, do you have linkedin or phone number to connect.

  • @erwaqar
    @erwaqar 8 місяців тому

    please upload full course ...

  • @shilpadhanuks2528
    @shilpadhanuks2528 9 місяців тому

    can you share your contact number

  • @sunilyadav-th5bt
    @sunilyadav-th5bt 9 місяців тому

    Sir mujhe Salesforce ka 8 week ka paid virtual internship certificate chahiye

  • @sunilyadav-th5bt
    @sunilyadav-th5bt 9 місяців тому

    Sir mujhe Salesforce 8week ka virtual paid internship certificate chahiye

  • @VasuSharma-b4z
    @VasuSharma-b4z 9 місяців тому

    Sir your videos are so much helpful for revision the course. And your teaching trick is superb.

  • @Random.Videos.007
    @Random.Videos.007 9 місяців тому

    any videos on use on integration with 3rd party and using APIs

  • @Random.Videos.007
    @Random.Videos.007 9 місяців тому

    Great video but Apex new class is disabled. I looked on internet and it says to enable 'Autor Apex' from Administrative permissions( most of information is very old) . I am using Salesforce 24 sandbox and it does not 'Autor Apex' option instead it has 'Apex REST Services' which is already enabled. Can you help please ( i am subscriber)

    • @virendrakumar-salesforcete9151
      @virendrakumar-salesforcete9151 9 місяців тому

      Hi Thanks for watching and I would like to schedule a call to check the same as never seen that someone don’t have access to create class in sandbox. Please drop me your email please

    • @Random.Videos.007
      @Random.Videos.007 9 місяців тому

      @@virendrakumar-salesforcete9151 thanks for quick reply. Salesforce support helped to fix it.

  • @kailashrampariya6904
    @kailashrampariya6904 10 місяців тому

    Very Nice course with in-depth explanation .

  • @Random.Videos.007
    @Random.Videos.007 10 місяців тому

    any more videos to this series or this is full series ?

  • @Random.Videos.007
    @Random.Videos.007 10 місяців тому

    upload more videos. very useful videos. Also you are close to 1000 Subs :)

  • @sanjaymehta4510
    @sanjaymehta4510 10 місяців тому

    hello if i want to open flexipage with dyanmic url in seperate window without showing salesforce tabs and header how can i do that .

    • @virendrakumar-salesforcete9151
      @virendrakumar-salesforcete9151 10 місяців тому

      You need to create static resources with custom CSS to hide extra UI whatever you want and on click of button you can have it. I did it long back but yes CSS can do anything

    • @sanjaymehta4510
      @sanjaymehta4510 10 місяців тому

      @@virendrakumar-salesforcete9151 can you pls create a seperate video on that.

  • @harshitagarg2594
    @harshitagarg2594 11 місяців тому

    Do you take online live training ?

  • @World_ofKnowledge
    @World_ofKnowledge 11 місяців тому

    how are you adding records. you already hvae records in studesnt, but i want to add new

    • @virendrakumar-salesforcete9151
      @virendrakumar-salesforcete9151 11 місяців тому

      Hi thanks for reaching out. To add new student record you need to follow below steps - 1. Go to student Tab ( click on 9 dots ->search for student -> click on it ) 2. You will see new button, just click on it and you can create new student record

  • @ShaffuMehta
    @ShaffuMehta 11 місяців тому

    hlo sir, You are doing really brilliant work . I am salesforce qa but your videos really help me to try to switch my carrer in development. Your videos content is brilliant in less time gain more. Thanku so much sir

  • @anasahmedup
    @anasahmedup 11 місяців тому

    Hello your linkedin profile is not opening can we connect on LinkedIn?

  • @nishantpant-px8ub
    @nishantpant-px8ub 11 місяців тому

    sir mera engineering background nahi hai na mujhe coding aati hai ,kya main sales force kar sakta hoon pls bateyein tks

  • @pankajverma-xm9qv
    @pankajverma-xm9qv 11 місяців тому

    Hindi may ni bana sakte.

  • @SheikhJazib844
    @SheikhJazib844 11 місяців тому

    Thank you Sir for sharing your videos are Awesome and easy to Understand really helpful Please Upload more videos in LWC playlist

    • @virendrakumar-salesforcete9151
      @virendrakumar-salesforcete9151 11 місяців тому

      Thanks for watching and loving the same. We gona have one more playlist for lwc coming in next 10 days

    • @SheikhJazib844
      @SheikhJazib844 11 місяців тому

      @@virendrakumar-salesforcete9151 Hi Virendra Sir, is there any Update regarding Lwc playlist we are awaiting complete Lwc playlist thank you

    • @virendrakumar-salesforcete9151
      @virendrakumar-salesforcete9151 11 місяців тому

      @@SheikhJazib844 started with apex probably after 10 days we will have fresh playlist for lwc

  • @SheikhJazib844
    @SheikhJazib844 11 місяців тому

    Awesome explaination please Upload more Video Sir

  • @basantkumarsamantaray8029
    @basantkumarsamantaray8029 11 місяців тому

    Hello sir, is there any live classes.

  • @DianaSN
    @DianaSN Рік тому

    can u upload copado and git for deployment in sfdc

    • @virendrakumar-salesforcete9151
      @virendrakumar-salesforcete9151 11 місяців тому

      Hi I have build it already but need editing on that so trying to find time for the same. But will upload it soon

  • @shrutibhagat5464
    @shrutibhagat5464 Рік тому

    Sir, i am from arts field and planning for Salesforce Admin so is it a good choice?

    • @virendrakumar-salesforcete9151
      @virendrakumar-salesforcete9151 Рік тому

      Yes definitely, not just because I am in Salesforce it’s because anyone can do it and grow exponentially

    • @shrutibhagat5464
      @shrutibhagat5464 Рік тому

      @@virendrakumar-salesforcete9151 okay sir thank you so much 😊

    • @shrutibhagat5464
      @shrutibhagat5464 Рік тому

      @@virendrakumar-salesforcete9151 sir can you guide me how can I start Salesforce Admin career

  • @pankajsavale.4591
    @pankajsavale.4591 Рік тому

    best

  • @dagmarinju9828
    @dagmarinju9828 Рік тому

    Nice video. Pls make the same for list and set

  • @mahwishmurtaza3947
    @mahwishmurtaza3947 Рік тому

    Is there live classes ?

  • @Stryker-y3k
    @Stryker-y3k Рік тому

    hi sir, do you teach personally ?, i want to learn admin and apex

  • @satyendra1886
    @satyendra1886 Рік тому

    Hi ,is there any live class ?

  • @sachinpratap6171
    @sachinpratap6171 Рік тому

    Hi sir Want to know that only 16 vidio is full complete course or not

  • @ArbazGunwan
    @ArbazGunwan Рік тому

    Good video bhai keep going you make more videos bhai like this & thank you

  • @samyt7699
    @samyt7699 Рік тому

    Sir Salesforce me free voucher kya hai?

    • @virendrakumar-salesforcete9151
      @virendrakumar-salesforcete9151 Рік тому

      Ye event complete krne pe Milta hai. Abi ka event ye hai ki if you take one exam and pass it you will get one free voucher