gpayne
(Greg Payne)
August 12, 2024, 9:59pm
2
This will take some hunting since I think the usage will happen so fast that getting it in session management will be elusive.
Set this trace flag in Appserver.config
will get you entries like this.
this thread has the sessiontypes to verify you are getting the web.
For the curious, this is my code block in the BPM. (Yes, I did a code block; I guess I cringed at the 5 nested if statements that would be the alternative.) And yes, the code really does thank @josecgomez . Gotta give credit.
// Thank you Jose: https://www.epiusers.help/t/epicor-license-guids/61669
switch (this.Session.SessionType.ToString().ToUpper())
{
case "00000003-B615-4300-957B-34956697F040":
MySessionType = "Default";
break;
case "00000003-B8EB-40C4-8897-248CB30C5D47":
MySe…
2 Likes