NS AdminA
08/21/2024, 3:09 AMCeligo AI
08/21/2024, 3:09 AMAI generated answer (using internal Slack threads):Based on the conversations, it seems that you can achieve your requirement by using NetSuite's workflow capabilities. Here's a general approach: 1. Create custom fields to store the individual approvers per approval level. These fields will be populated with the approver's name at each step of the approval process. 2. In your workflow, you can set up actions to populate these fields. This can be done using the 'Set Field Value' action in your workflow. You would set up one action for each approval step, and each action would populate the corresponding approver field. 3. The value to set in each field would be the name of the approver. This can be obtained from the user who approves the record at each step. You can use the
{CURRENT_USER}
placeholder to get this value.
4. The condition for each action would be the completion of the corresponding approval step. You can use the 'State' condition to check if a particular approval step has been completed.
Here's a pseudo-code example of how you might set up the actions in your workflow:
pseudo
Action 1:
- Action Type: Set Field Value
- Field: Approver 1
- Value: {CURRENT_USER}
- Condition: State is 'Approval Step 1 Completed'
Action 2:
- Action Type: Set Field Value
- Field: Approver 2
- Value: {CURRENT_USER}
- Condition: State is 'Approval Step 2 Completed'
Remember to replace 'Approver 1', 'Approver 2', 'Approval Step 1 Completed', and 'Approval Step 2 Completed' with your actual field and state names.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
08/21/2024, 3:10 AMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.822962
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.821601629
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.821408093
Celigo AI
08/21/2024, 3:10 AM