Dear Team,
I am sending values inside Data parameters ($Context) through my code.
Inside my $Context, i have values like these,
CRMPageDataParameters (string) LogicalName=[[$Context.LogicalName]] customerid = [[$Context.CustomerID]]
Also, inside my $Context i have LogicalName and CustomerID aswell,
LogicalName (string) = incident
CustomerID (string) 123455
Now, i am calling an action call to open a new incident page and passing data inside like this,
[[$Context.CRMPageDataParameters]]
But the problem is it is not working, if i send hardcoded values inside my $Context it works, but i send values like this [[$Context.LogicalName]] (LogicalName is also available inside context) then it does not. I was assuming it would replace [[$Context.LogicalName]] with incident. But it is not.
How can i replace the values like [[$Context.LogicalName]] inside $Context with values already available like LogicalName=incident.
*This post is locked for comments