Have implemented below workflow for JDBC Access Request Failure Notification and not working properly and does anyone has any idea on this code issues?
In this case, you are referencing accountRequests[0], but the index may not always remain the same. This could lead to inconsistent behavior if the required entry is not at position 0.
I would recommend storing the required value in a variable and then utilizing it throughout the workflow.
We would like to implement this to Notify when JDBC access request provisioning fails for access requests so that user gets notified where email" and “displayname” which are not part of JDBC source account schema and not stored in DB schema and not part of create provisioning policy
We can get it from identity. In workflow I have used get identity that I have shared you yesterday. Please test it and let me know if it works for you.
Thank you.
We are using below workflow JSON for sending notification about initial password generated in JDBC provisioning rule.
workflow json for success notifications calling below external trigger workflow from JDBC provisioning rule to pass some values and can we add some block of code for failure notifications in the same workflow about access request provisioning failure notifciations?
{
“name”: “EBS DB Email Notify Testing”,
“description”: “EBS DB Email Notify Testing”,
“definition”: {
“start”: “Send Email”,
“steps”: {
“End Step - Success”: {
“actionId”: “sp:operator-success”,
“displayName”: “”,
“type”: “success”
},
“Send Email”: {
“actionId”: “sp:send-email”,
“attributes”: {
“body”: “Hello {{$.trigger.input.displayName}},\nWelcome! Your Oracle E‑Business Suite (EBS) account has been successfully created.\nHere are your login details:
Using the below workflow JSON code for this requirement where success email notification for provisioning success and failure email notification for provisioning failure. I am trying to capture provisioning status in JDBC provisioning rule and pass to this external workflow trigger. But getting lot of errrors and any idea on this?