Skip to main content

Development time in SFDC vs. .Net and Java

Well I suppose, it is the most sellable statement in SFDC's list of features/advantages of using SFDC over .Net and Java. Well, having worked on SFDC I believe that there is more to it.

SFDC is one of the most innovative platforms and gives us all (almost) what we need to develop enterprise level business applications. With a lot of out-of-the box functionalities and innovative On-demand platform, it is my platform well I suppose it is the most sellable statement in SFDC's list of features/advantages of using SFDC over .Net and Java. Well, having worked on SFDC I believe that there is more to it.

SFDC is one of the most innovative platforms and gives us all (almost) what we need to develop enterprise level business applications. With a lot of out-of-the box functionalities and innovative On-demand platform, it is my platform of choice for developing business applications. But, as I mentioned that there are hidden elements in SFDC development.

SFDC Configuration:- With Object relationships, Vanilla UI (default), Formula fields, Roll-up summary fields, Workflows, Approvals, email templates and many more out-of-the-box features, SFDC is a very rich platform. The features are easy to use and configure and lets us of choice for developing business applications.

SFDC Customization:- with powerful apex and Visualforce and awesome SOAP web Services its a truly class customization platform.

Myth:- Development in Salesforce is 5+ times faster than .Net or Java

Fact:- This is a contextual statement. In case the development is done using SFDC Configuration only, then offcourse I would say its 5 (or even more) times faster than .Net or Java. The deployment is seamless and you don't even need to worry about performance and security. But, when you get into realm of custom logic (Apex) and custom UI (visualforce), I have seen that it is not like that. It has to go through all the same stages and has to face same conventional issues.

So, I would say that development in SFDC is faster than that in .Net and Java but saying that it is 5 times is contextual based on how you choose to develop in SFDC.

Comments

Popular posts from this blog

Quick Tips: Salesforce default Images

Well, I'm sure a lot of you still rely on using out of the box salesforce images for displaying quick icons within formula fields or even using them within your Visualforce pages. Lately, I realized that a lot of earlier resources are no longer accessible, so I tried to quickly extract all images from Salesforce CSS files and provide a quick reference here. Please note, I've referenced all images from SF servers directly, so if anything changes, the image should stop rendering here. As these images are completely controlled by Salesforce, and in case they change anything, it might lead to image not being accessible. Image path Image /img/samples/flag_green.gif /img/samples/flag_green.gif /img/samples/flag_red.gif /img/samples/color_red.gif /img/samples/color_yellow.gif /img/samples/color_green.gif /img/samples/light_green.gif /img/samples/light_yellow.gif /img/samples/light_red.gif /img/samples/stars_100.gif /img/samples/stars_200.gif /img/samples/stars_300....

Lightning: Generate PDF from Lightning components with in-memory data

I'm sure as everyone is diving into lightning components development, they are getting acquainted with the nuances of the Lightning components framework. As well as, its current limitations. Being a new framework, this is bound to happen. Although we have our users still using salesforce classic, we have started using lightning components framework our primary development platform and Visualforce is considered primarily for rendering lightning components within Classic Service console. Recently, while re-architecting a critical module, we encountered a problem wherein we needed to generate PDF from lightning components. Now, being Javascript intensive framework, it has limited room for such features (may be included in future roadmap). As of now, there is no native feature within the lightning framework to do so (at least I didn't find anything). Common Scenario - Create Visualforce page to retrieve data and generate PDF For scenarios where the data exist within Sa...

Sneak Peek: Checkpoints (a.k.a. Simulated Breakpoints)

What? Simulated breakpoints a.k.a. checkpoints enable developers to assign breakpoints to assess stack values at that point of execution. Where? Simulated breakpoints are available in new Developer console.  Why? At many occasions developers need to assess variable/ instance values during execution. This comes in very handy especially when debugging something in production wherein developers cannot add "system.debug" statements at their will. With breakpoints, developers can very well place breakpoints at desired code locations and execute the code to get breakpoint results How? To create checkpoints, open a class/ trigger in developer console and click on left hand side (just next to line no.). Once added, you can view your breakpoints in "Checkpoint Locations" sub tab within Checkpoints tab.  Each execution of class/ trigger generates Checkpoint data in "Checkpoints" sub tab. Double click on the individual checkpoint log, to view correspondin...