How to use getinstance method in salesforce

You should add it to that class: public class FAHCreator { static final FAHCreator instance = new FAHCreator (); public static FAHCreator getInstance () { return instance; } // Other code } From there, you still need to make sure that you’re using two paramters on generateAndInsertFARecords (your Apex example shows only one parameter). Full … Read more

How to use custom settings in salesforce

You can create a custom setting in the Salesforce user interface: from Setup, enter Custom Settings in the Quick Find box, then select Custom Settings. After creating a custom setting and you’ve added fields, provide data to your custom setting by clicking Manage from the detail page. What are the types of custom settings in … Read more

How to use custom label in flow salesforce

Guided Practice (We-do): Salesforce Flow – Clone an Existing Flow. Click Setup. … Update the Screen Component Properties to Show the Footer. It will open the screen detail page. … Configure Custom Label for Next or Finish Button. The next step is to customize the label for the Next or Finish button. … Configure Custom … Read more