Record producer adjustments
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-26-2024 05:39 AM
Hi everyone,
I need to make adjustments in record producer, and this is the requirement. How to achieve this?
If the user selects salary advance or SAC advance, until the approval is complete, the SLA should be paused.
- In the form, if the user selects salary advance, the field percentage of the advance does not allow us to include %. It allows us to include numbers up to 50, which is correct, but it should also allow to include the % character.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-26-2024 12:08 PM
Hi, 'If the user selects salary advance or SAC advance, until the approval is complete, the SLA should be paused.'
unless this is already identifiable via a set of field values on your target task table then I suspect you will need to add a custom field to your target table and populate accordingly, you can then update your SLA definition so that it is paused based on existing field values or new custom field (if it is required).
In order to resolve the issue with percentage you could consider using a string field on the producer form, a regex to ensure the submitted value was within the 0-100 range, then append the % symbol (if not added by user) in the client script that validates the content. you can then parse the value in your record producer's script and map to your task table field.