We have have converted several automations from Pega 19 to Pega 22. In our Pega 19 solutions we have several instances where we use the FullName property of the current automation and then pass it to a logging component.
While this has converted to Pega 22 successfully and works as expected we are unable to find a way to access that property in new automations in Pega 22.
@EliS2905 The way to do this in 22.1 is to store the name in a variable and pass that (for the time being). The automation name property is not currently exposed in 22.1.
@ThomasSasnett For now, we are manually typing the automation name into the input parameter of our logging component. However, this is tedious and subject to human error so the name property would be preferable.
As for putting it into a variable first and passing that, almost all of the examples I have seen so far have a single call to the log method so putting it in a variable just adds to the overhead of setting this up. For automations where we do make multiple calls to the logging component makes sense.