Maybe I need a break….
Do you ever get the feeling in Aware that you have forgotten things that you thought you knew…?
Riddle me This….
Assume I have an Initialisation Process for a logging in Employee
Of course we will have LoggedInEmployee in Context.
But, in that Initialisation Process, I call a SubProcess that expects an Input of an Employee instance
There are a couple of ways to do this …. or so I thought…
Option 1:
FIND the Logged In Employee
FIND Employee WHERE Employee = LoggedInEmployee
CallMySubProcess
Option 2:
CallMySubProcess USING LoggedInEmployee
Ok… So tell me… Should BOTH of these work?
If not, which should work and which shouldn’t.