Пікірлер
@SonaS-v3n
@SonaS-v3n 2 сағат бұрын
pls provide code
@nethravathihs7902
@nethravathihs7902 3 күн бұрын
Thank you😊
@ManishJagnani-s4q
@ManishJagnani-s4q 4 күн бұрын
Hi I am facing the contructor issue , could anyone help .?
@salmapathan-w4j
@salmapathan-w4j 12 күн бұрын
hlo
@MamataDas-w1r
@MamataDas-w1r 12 күн бұрын
done. thanx for the video
@MamataDas-w1r
@MamataDas-w1r 12 күн бұрын
unable to create 2nd apex class, while giving the name MyIterableTest , its saying - could not create Apex Class - The Apex class "MyIterableTest " is not a legal name., what should i do ? pl suggest
@MamataDas-w1r
@MamataDas-w1r 12 күн бұрын
unable to create the apex class for myIterable test.its saying it's not a legal name , so unable to create one, what should i do?
@vaibhavsharma7630
@vaibhavsharma7630 13 күн бұрын
Very helpful thank you . Excellent audio instructions
@techtrailrangers
@techtrailrangers 13 күн бұрын
@@vaibhavsharma7630 Thanks buddy feeling motivated 😃🙌
@prashantpatil5972
@prashantpatil5972 14 күн бұрын
Error I am getting is 'The constructor MyIterable should accept parameter of type List<String>. '
@ManishJagnani-s4q
@ManishJagnani-s4q 4 күн бұрын
Even I am facing the same , how did you resolve it .?
@prashantpatil5972
@prashantpatil5972 3 күн бұрын
@@ManishJagnani-s4q kindly use other playground to implement this.
@RaviKumar0910
@RaviKumar0910 15 күн бұрын
Thank You 😊
@RaviKumar0910
@RaviKumar0910 15 күн бұрын
Thank You 😊
@RaviKumar0910
@RaviKumar0910 15 күн бұрын
Thank you
@alokalokkumar4050
@alokalokkumar4050 15 күн бұрын
thank you
@AnanyaMishra-k9h
@AnanyaMishra-k9h 21 күн бұрын
It's perfectly working. Thank you for your step by step guidance.
@AnanyaMishra-k9h
@AnanyaMishra-k9h 21 күн бұрын
Thank you so much.. It's very helpful.
@ruchitabansod9635
@ruchitabansod9635 22 күн бұрын
its not working
@angymansi1860
@angymansi1860 22 күн бұрын
Grazieee :)
@saimahesh6520
@saimahesh6520 22 күн бұрын
unable to see the domain option after the website
@phytonclass5154
@phytonclass5154 23 күн бұрын
thnk you
@ItsRiddlesTime
@ItsRiddlesTime 23 күн бұрын
I failed specialist exam .now to retake it i meed to pay 100 dollars. Anyway to make it free?
@techtrailrangers
@techtrailrangers 23 күн бұрын
@@ItsRiddlesTime Sorry to hear that buddy, unfortunately no way to take it for free again. I strongly hope you will get it sooner 🙂.
@techtrailrangers
@techtrailrangers 23 күн бұрын
@@ItsRiddlesTime if u have any other trailhead account you can certainly try it for free, but it is not recommended.
@FajarElla-i2l
@FajarElla-i2l 25 күн бұрын
Great content, as always! I need some advice: I have a SafePal wallet with USDT, and I have the seed phrase. (alarm fetch churn bridge exercise tape speak race clerk couch crater letter). What's the best way to send them to Binance?
@techtrailrangers
@techtrailrangers 25 күн бұрын
@@FajarElla-i2l Sure! Here are the steps: 1. *Open SafePal Wallet* and unlock it. 2. *Find USDT* in your wallet. 3. *Select "Send"* or "Transfer" for USDT. 4. *Go to Binance*, navigate to *Wallet > Fiat and Spot*, and click *Deposit* for USDT. 5. *Copy the Binance USDT deposit address* (choose the correct network: ERC-20, TRC-20, BEP-20). 6. *Paste the Binance deposit address* into SafePal. 7. *Enter the amount of USDT* you want to send. 8. *Select the same network* (ERC-20, TRC-20, or BEP-20) in SafePal as on Binance. 9. *Confirm the transaction* in SafePal. 10. *Wait for confirmation* and verify the deposit on Binance.
@rayhorton2752
@rayhorton2752 25 күн бұрын
Thank you
@raviteja3777
@raviteja3777 28 күн бұрын
cant find the code
@lingareddygarimadhusudhanr7506
@lingareddygarimadhusudhanr7506 29 күн бұрын
When it will be updated as active for certificate after completing maintenance module
@techtrailrangers
@techtrailrangers 29 күн бұрын
@@lingareddygarimadhusudhanr7506 within 10 to 15 minutes
@lingareddygarimadhusudhanr7506
@lingareddygarimadhusudhanr7506 29 күн бұрын
@techtrailrangers ok . Thanks
@AshutoshPandey-cp8ou
@AshutoshPandey-cp8ou 29 күн бұрын
Done completed thankyou
@nileshsuryawanshi4132
@nileshsuryawanshi4132 29 күн бұрын
Thank you 👍🏻
@NAGURUHARISH
@NAGURUHARISH 29 күн бұрын
i'm not able to add data cloud can you please help on this how can i do that
@ajaycertification-ji5hf
@ajaycertification-ji5hf Ай бұрын
please send me the code winter 25 pd1
@techtrailrangers
@techtrailrangers Ай бұрын
@@ajaycertification-ji5hf please check it in comment section it's pinned
@fitness_freak_navin
@fitness_freak_navin Ай бұрын
Anyone getting an error try this method: MyIterable public class MyIterable implements Iterable<String> { private List<String> strings; // Constructor to initialize the list public MyIterable(List<String> strings) { this.strings = strings; } // Implementation of the Iterable interface public Iterator<String> iterator() { return strings.iterator(); } } ================================================== @IsTest public class MyIterableTest { @IsTest static void testIterableForLoop() { // Step 1: Create a list of strings List<String> strings = new List<String>{'Hello', 'World'}; // Step 2: Create an instance of MyIterable with the list of strings MyIterable myIterableInstance = new MyIterable(strings); // Step 3: Add a debug statement to verify test execution System.debug('Running the for loop...'); // Step 4: Use a for loop to iterate over the MyIterable instance for (String str : myIterableInstance) { // Step 5: Print each string using System.debug System.debug('String: ' + str); } } }
@santnis6813
@santnis6813 Ай бұрын
Hello I am getting error as the parameter List<String> cannot be null when using the code
@sterling-gd3hx
@sterling-gd3hx Ай бұрын
Thanks very well presented.
@Daminiii_24
@Daminiii_24 Ай бұрын
Hellooo, I have completed maintenance but still its showing due only
@techtrailrangers
@techtrailrangers Ай бұрын
@@Daminiii_24 it will take some time to reflect not to worry buddy
@ellapuroopchand5008
@ellapuroopchand5008 Ай бұрын
🎉thank you it was helpful
@nigelc.2686
@nigelc.2686 Ай бұрын
Thank you! very helpful
@TejaSri-j3g
@TejaSri-j3g Ай бұрын
I am getting error
@tigersroar1392
@tigersroar1392 Ай бұрын
Getting un error : we can't find the annotation @IsTest method 'testIterableForLoop'. But i have annotationed it with @IsTest..
@kapildeore3126
@kapildeore3126 Ай бұрын
Errors
@jerryraju6293
@jerryraju6293 Ай бұрын
Hi, thank you so much for your videos. Do you have CPQ Billing trailhead videos....?
@techtrailrangers
@techtrailrangers Ай бұрын
@@jerryraju6293 you are 🤗 welcome. Will upload soon buddy.
@praharshinithakare4841
@praharshinithakare4841 Ай бұрын
For the 4th report not getting the filter for login type as does not include
@ReetabrataMishra
@ReetabrataMishra Ай бұрын
Thanks
@techtrailrangers
@techtrailrangers Ай бұрын
@@ReetabrataMishra no worries buddy 😃
@ReetabrataMishra
@ReetabrataMishra Ай бұрын
Thanks
@samisadventure
@samisadventure Ай бұрын
i cannot find Partners or any saved name in my available profile member list
@technomaster8329
@technomaster8329 Ай бұрын
Thank you! It is really helpful
@techtrailrangers
@techtrailrangers Ай бұрын
@@technomaster8329 Glad that it helped, Thankyou 😃
@heenarajguru9060
@heenarajguru9060 Ай бұрын
Thanks.. its working
@asishbehera7000
@asishbehera7000 Ай бұрын
Mam, you need to connect Send Email Action as For Each Item and Update Contact as After Last item. The use case is to send email to all reader whose birthday is currentdate, and finally update loyality points for them.
@netishmb761
@netishmb761 Ай бұрын
3:34 i am unable to get this option its asking for turn on data cloud could you olease help me thankyou 😊
@ShivamVerma-dn3tk
@ShivamVerma-dn3tk Ай бұрын
Getting error it's saying you are not passing list type string in the constructor
@bharathb-h3d
@bharathb-h3d Ай бұрын
Its working fine
@techtrailrangers
@techtrailrangers Ай бұрын
@@bharathb-h3d Thanks for confirming
@ManishJagnani-s4q
@ManishJagnani-s4q 4 күн бұрын
Even I am facing the same
@techtrailrangers
@techtrailrangers Ай бұрын
MyIterable public class MyIterable implements Iterable<String> { private List<String> strings; // Constructor that initializes the strings field with the provided list public MyIterable(List<String> strings) { this.strings = strings; } // Iterator method that returns an iterator for the strings list public Iterator<String> iterator() { return strings.iterator(); } } ________________________________________________________________________ MyIterableTest @IsTest public class MyIterableTest { @IsTest static void testIterableForLoop() { // Step 1: Create a list of strings List<String> strings = new List<String>{'Hello', 'World'}; // Step 2: Create an instance of MyIterable with the list of strings MyIterable myIterableInstance = new MyIterable(strings); // Step 3: Add a debug statement to verify test execution System.debug('Running the for loop...'); // Step 4: Use a for loop to iterate over the MyIterable instance for (String str : myIterableInstance) { // Step 5: Print each string using System.debug System.debug('String: ' + str); } } }
@mhetreakshay
@mhetreakshay Ай бұрын
Please come back with old indian original accent...that was good.. :)
@rajat.mahajan3095
@rajat.mahajan3095 Ай бұрын
So hard to understand your accent.
@techtrailrangers
@techtrailrangers Ай бұрын
😳