Our orchestration does a RFC call. the return status has OK or a userid, when I get a userid, it usually means that a user has a lock on the order. What I want to do is send the user an email asking them to release the order.
My thought was I could construct a message with
construct shape
Message_out(SMTP.EmailBodyText) = “Some text”;
Message_out(SMTP.Subject) = “Subject”;
followed by an exprssion
SMTPAlertPort(Microsoft.XLANGs.BaseTypes.Address) = “mailto:[email protected]“;
I am not having much success. Any assistance would be appreciated.