Versions Compared

Key

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

...

 

 

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

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