Use "field value" in parameter of SLA triggered Activity

In a SLA as below, a self-defined activity is triggered/

In one of the parameter, I specify a field value (defined on pyCaption): ActionRequiredEmailForSLA

However, the string “ActionRequiredEmailForSLA” is passed instead of the field value.

May I know any solution to pass field value here?

Or, if no simple way, can I get field value inside the activity using a function?

Thanks.

@MaxonL16591286

Use @getLocalizedText(“ActionRequiredEmailForSLA”,“pyCaption”,tools) to retrieve the actual value.

Thanks,

Vinay

@VinayKumarL16594575

It works! If the field value is not defined, it returns the 1st param “ActionRequiredEmailForSLA”, then I can know the field value is defined or not.

Thanks!