Posts

store connect videos youtube series

 https://www.youtube.com/watch?v=i7oqF3rLWEI&list=PL0o3SkpUAmgnto8UcAPu7BbJS0ygYuPnF&index=9

sfdc stuff

 https://medium.com/@sfdcpulse

Verify Your Return Email Address for Sender Verification - release update - salesforce

 https://www.infallibletechie.com/humix/video/PTd1fQkJjW2 We can use the TwoFactorMethodsInfo object/entity to query the users who haven’t verified their email addresses yet in Salesforce. Admins or Users need the “Manage Multi-Factor Authentication in API” permission at Profile or Permission Set level to query or use SOQL against the TwoFactorMethodsInfo object/entity. SELECT Id, UserId, User.Name, ExternalId, HasUserVerifiedEmailAddress FROM TwoFactorMethodsInfo WHERE HasUserVerifiedEmailAddress = false

Lwc series - with js

 https://www.youtube.com/watch?v=tvdVmyyr2c8&list=PLFe2L4qdtVpYnyuKs0q-eJ7nZLSFTc0nQ&index=2

𝐃𝐢𝐟𝐟𝐞𝐫𝐞𝐧𝐭 𝐰𝐚𝐲𝐬 𝐭𝐨 𝐑𝐞𝐬𝐞𝐭 𝐏𝐚𝐬𝐬𝐰𝐨𝐫𝐝 𝐢𝐧 𝐒𝐚𝐥𝐞𝐬𝐟𝐨𝐫𝐜𝐞

  ⭐𝐃𝐢𝐟𝐟𝐞𝐫𝐞𝐧𝐭 𝐰𝐚𝐲𝐬 𝐭𝐨 𝐑𝐞𝐬𝐞𝐭 𝐏𝐚𝐬𝐬𝐰𝐨𝐫𝐝 𝐢𝐧 𝐒𝐚𝐥𝐞𝐬𝐟𝐨𝐫𝐜𝐞 ✔ Users usually forget password or try multiple wrong passwords and many more reasons where system locks their credentials and restrict further access. ✔ A system admin can reset the password in many ways. 𝑾𝒂𝒚𝒔 𝒚𝒐𝒖 𝒄𝒂𝒏 𝒓𝒆𝒔𝒆𝒕 𝒑𝒂𝒔𝒔𝒘𝒐𝒓𝒅 𝒐𝒇 𝒂 𝒖𝒔𝒆𝒓 𝒊𝒏 𝒔𝒂𝒍𝒆𝒔𝒇𝒐𝒓𝒄𝒆: 1️⃣ User Detail page. 2️⃣ Reset multiple users password at once. 3️⃣ Developer Console 4️⃣ Workbench 🔑𝐑𝐞𝐬𝐞𝐭 𝐩𝐚𝐬𝐬𝐰𝐨𝐫𝐝 𝐟𝐫𝐨𝐦 𝐔𝐬𝐞𝐫 𝐝𝐞𝐭𝐚𝐢𝐥 𝐩𝐚𝐠𝐞: ⏩ Login into salesforce org ⏩ Go to Setup – Type Users in quick search – Select ‘Users’ submenu. ⏩ Select the user whose password must be reset. ⏩ Click on ‘Reset Password’ Button. ⏩ Once Rest Password button is clicked, user will receive an email from salesforce with a link to reset password. 🔑𝐑𝐞𝐬𝐞𝐭 𝐩𝐚𝐬𝐬𝐰𝐨𝐫𝐝 𝐨𝐟 𝐦𝐮𝐥𝐭𝐢𝐩𝐥𝐞 𝐔𝐬𝐞𝐫𝐬: ⏩ Login into salesforce org ⏩ Go to Setup – Type Users in quick search ...

Java

 List of Core Java topics: OOPs Collection Annotations Generics IO Streams Multi-threading Exception Handling Arrays String Manipulations ======================== https://takeuforward.org/strivers-a2z-dsa-course/strivers-a2z-dsa-course-sheet-2/

Salesforce Password reset from apex

  User usrrt3 = [SELECT Id FROM User WHERE username = 'siva@cloudycode.com.au'] ; System.setPassword(usrrt3.Id,'test@1234Ger') ;