Joe Dias
IndividualForum Replies Created
-
Joe Dias
MemberOctober 20, 2016 at 7:01 am in reply to: Which kinds of Salesforce Custom Component can be added to home page?Links Images HTML Area
-
Hi,
Please see the document which shows step by step how to configure layouts in SF1.
https://developer.salesforce.com/docs/atlas.en-us.salesforce1.meta/salesforce1/page_layouts_how_they_work_in_s1.htm
Also see how you can set compact layouts in SF1 feature. -
Joe Dias
MemberSeptember 28, 2016 at 10:14 am in reply to: How to run assignment rule from Salesforce apex?You can run case assignment rule from UI by simply selecting "Assign using active assignment rules" . But For running case assignment rules using apex code please refer to the following link :http://developer.force.com/cookbook/recipe/running-case-assignment-rules-from-apex
-
Joe Dias
MemberSeptember 28, 2016 at 10:04 am in reply to: How can I rolled back my class when it runs into exception in salesforce?If business rules require that partial work (already executed DML statements) be “rolled back” so that the processing can continue in another direction. Apex gives you the ability to generate a savepoint, that is, a point in the request that specifies the state of the database at that time. Any DML statement that occurs after the savepoint can be discarded, and the database can be restored to the same condition it was in at the time you generated the savepoint.
-
Joe Dias
MemberSeptember 28, 2016 at 10:01 am in reply to: How to hard-Delete Objects Using the Salesforce Force.com Migration toolFor Sandbox and Dev orgs only: does not work on production orgs.
use purgeOnDelete="true" in your build.xml to permanently delete your destructive changes.For Prod:
You can download a modified ant-salesforce.jar here from the FinancialForce.com Developers Github repo (be warned this is API v22.0, though you can use it to deploy code at any version).Or
If you want rebuild a new version, then you need to download this Java class, compile it, unzip the ant-salesforce.jar (rename .jar to .zip), put it in and zip it back up again and your all set! -
Joe Dias
MemberSeptember 28, 2016 at 9:58 am in reply to: How to see the whole debug log in Salesforce?Please see the similar answer
https://developer.salesforce.com/forums/?id=906F0000000900SIAQThanks .
-
Joe Dias
MemberSeptember 28, 2016 at 9:55 am in reply to: Each custom setting counts against total no. of custom objects in salesforce org?Custom settings are a type of custom object. Each custom setting counts against the total number of custom objects available for your organization.
Source : See the Salesforce documentation.