SOQL Injection
SOQL Injection can occur in Apex code whenever your application relies on end user input to construct a dynamic SOQL statement and you do not handle the input properly. To ....
SOQL Injection can occur in Apex code whenever your application relies on end user input to construct a dynamic SOQL statement and you do not handle the input properly. To ....
Dynamic SOQL refers to the creation of a SOQL string at runtime with Apex code. Dynamic SOQL enables you to create more flexible applications. For example, you can create a ....
First VF Page: <apex:page controller="Sample"> <apex:form > <apex:pageBlock > <apex:pageBlockSection > <apex:pageBlockSectionItem >Enter the text to be passed: ....
Give your sales reps a visual guide in the Salesforce1 mobile app: Show them where they are in the sales process and what they need to do next to close ....
If you face no main manifest attribute, in svnstat-all.jar issue, download the latest svnstat.jar file from the below link and replace it with your old jar file. http://www.statsvn.org/downloads.html The latest jar ....
1. Check out the project using Tortoise SVN Checkout.. option. 2. Give the URL and select the Directory. 3. Right Click the checked out project and select Tortoise SVN --> ....
While installing Tortoise SVN, we should make sure that "command line client tools" is selected. If it is not selected, while installing, we get SVN is not recognized as an internal ....
1. Use the below link to download SVNStat application. http://sourceforge.net/projects/statsvn/ 2. Unzip the file. 3. Move it to any drive. In my case, I have moved it to D:SVN. 4. Install ....
Formula Field: Output: Cheers!!!
Sample Code: <apex:page> <apex:outputText> {! EndDateVariable - StartDateVariable} <apex:outputText> </apex:page> Instead of creating formula fields, we can just subtract it in the ....