Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 

 

Name

SFS: Enable Back Button in Flows

Key

pulsar.fsl.enableFlowBackButton

Value

TRUE/FALSE

Default Value (if any)

FALSE

Description

When set to TRUE, the Pulsar will enable display of the Back button where appropriate in a properly configured SFS Mobile Flow.

Notes/Comments

For more information about SFS Mobile Flow behavior, see this documentation: Considerations for Using Flows in the Field Service Mobile App (salesforce.com)

NOTE:

  • Salesforce data changes that occur before displaying a screen are committed to the database and will not be rolled back when the Back button is clicked.

  • Flows retain variable values after they’re entered. Clicking the Back button in a flow doesn’t clear the value.

Customizing Additional Display Fields in the Pricebook Products List

 

 

Name

SFS: Fields to Display in Pricebook Products List

Key

pulsar.fsl.pricebookentry.displayfields

Value

Comma or newline separated list of fields from the PricebookEntry object

Default Value (if any)

Description

The Pricebook product list, by default, will show only the product name in the list. Specifying additional PricebookEntry fields in this setting will display these fields under the Product Name line and separated by the “•” (bullet character).

Here is an example where this setting was specified with these fields: ProductCode, UnitPrice

Image Added

Notes/Comments

Determining if the User Can or Cannot View an Object using beforeView (available in Pulsar 14.0+)

 

 

Name

Before View

Key

pulsar.beforeView.<Object API Name> (e.g. pulsar.beforeView.ServiceAppointment)

Value

This setting executes when a user tries to view a record. PSL can be used to implement business rule validations to determine if the current user can or cannot view an object

Code Block
languagejs
DEFAULT{ 
Action=SetResult;
Result=Service Appointment viewing access denied.;
ResultValid=false;
}

Default Value (if any)

Description

image-20240805-123627.pngImage Added

Notes/Comments