Darshan Shanbhag
MemberVideos
-
Nikita posted a new blog 4 years ago
Testing HTTP Callouts using SFCraft MockServer: Part 1 | Salesforce Help GuideRecently I published my MockServer lib. The history behind it is simple — for years I’ve been writing HttpCalloutMock implementations for each new project. I don’t want to do it anymore and instead, I’ve…
-
Nikita posted an update 4 years ago
Decided to re-animate my profile here
-
Iatsham and
Nikita are now connected 6 years ago
-
Pradeep and
Nikita are now connected 6 years ago
-
Nikita updated their profile 6 years ago
-
Obivan and
Nikita are now connected 7 years ago
-
Navatha and
Nikita are now connected 7 years ago
-
Nikita replied to the discussion What's the basic course that I would need to take for becoming a salesforce developer? in the forum Salesforce® Discussions 7 years ago
Reply to What's the basic course that I would need to take for becoming a salesforce developer?
Hi Audrey,
Use TrailHead - it's actually the best way to learn SF development and administration.
It's preferable to know admin tools in Salesforce because sometimes you can avoid development and do a task much faster with them.
-
Nikita replied to the discussion Creating Salesforce Developer Org - what does this mean? in the forum Salesforce® Discussions 7 years ago
Reply to Creating Salesforce Developer Org - what does this mean?
Hi Maria,
Developer Org is exactly what it sounds - it's an org for development. As it's not connected to any other Salesforce org at all, you won't have any data there (except for the samples). Your developers can deploy code there and work on new features. But from my experience, most customers prefer dev sandboxes.
To have a full data… Read more
-
Nikita replied to the discussion how to avoid mixed dml exception in Salesforce test class? in the forum Salesforce® Discussions 7 years ago
Reply to how to avoid mixed dml exception in Salesforce test class?
Hi Uday,
Try using "Test.startTest()" and "Test.stopTest()". These break unit test context into two contexts (inside startTest-stopTest and outside)
-
Nikita replied to the discussion Download Salesforce Visualforce page on Single Click of Button in the forum Salesforce® Discussions 7 years ago
Reply to Download Salesforce Visualforce page on Single Click of Button
Hey Parv!
You can just append ' renderAs="pdf" ' to you <apex:page> tag.
You can find more info here: https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_page.htm
-
Abhay and
Nikita are now connected 7 years ago
-
Nikita replied to the discussion Which is the best place to learn Salesforce admin? in the forum Salesforce® Discussions 7 years ago
Reply to Which is the best place to learn Salesforce admin?
Hey, Ashok.
No surprise, the best place is Trailhead: https://trailhead.salesforce.com/en
-
Nikita replied to the discussion In Salesforce SOQL - if there are 10000 records, how to find records in between 2000 to 6000? in the forum Salesforce® Discussions 7 years ago
Hey, Kenny.
Why don't you just use standard 'for' loop?
for(Integer i = 2000; i < 6000; i++) {
System.debug('objList[i] >>> ' + objList[i]);
} -
Nikita replied to the discussion In Salesforce SOQL - if there are 10000 records, how to find records in between 2000 to 6000? in the forum Salesforce® Discussions 7 years ago
Hey, Kenny.
Why don't you just use standard 'for' loop?
[[code]]czoxMTQ6XCIKCmZvcihJbnRlZ2VyIGkgPSAyMDAwOyBpICZsdDsgNjAwMDsgaSsrKSB7ClN5c3RlbS5kZWJ1ZyhcXCYjMDM5O29iakxpe1smKiZdfXN0W2ldICZndDsmZ3Q7Jmd0OyBcXCYjMDM5OyArIG9iakxpc3RbaV0pOwp9CgpcIjt7WyYqJl19[[/code]]
-
Nikita replied to the discussion In Salesforce SOQL - if there are 10000 records, how to find records in between 2000 to 6000? in the forum Salesforce® Discussions 7 years ago
Hey, Kenny.
Why don't you just use standard 'for' loop?
for(Integer i = 2000; i < 6000; i++) {
System.debug('objList[i] >>> ' + objList[i]);
} -
Nikita replied to the discussion In Salesforce SOQL - if there are 10000 records, how to find records in between 2000 to 6000? in the forum Salesforce® Discussions 7 years ago
Hey, Kenny.
Why don't you just use standard 'for' loop?
`
for(Integer i = 2000; i < 6000; i++) {
System.debug('objList[i] >>> ' + objList[i]);
}`
-
Nikita posted a new blog 7 years ago
Apex Intention Actions: The Next Frontier for Apex CompletionsIdea from IDEa Recently, I needed to code a little tool in Java. The last time I coded something in Java was in high school, so it was a nice exercise for me to dust off my Java and get back up to speed…
-
Nikita posted a new blog 7 years ago
Automation of JSON2APEX - My journey to writing my own automated tooling for this!Lyrics Each and every time developing an integration, I wanted to automate the most tedious and routine part of it - creating wrappers for integration entities. I found a couple of tools for it, but all of…
-
Rahul and
Nikita are now connected 7 years ago
- Load More