Posts

Showing posts from February, 2026

Logic App Standard workflow Initialize variables not working in other Actions

Image
       While working on a Logic Apps Standard workflow, I noticed that the new designer groups all Initialize Variable actions into a single block. After saving the workflow, the variable names disappeared — both inside the initialization block and in the actions that reference them.      After checking multiple articles and GitHub, it looks like this is a known Microsoft bug ( https://lnkd.in/gNQG4rTE ) the new UI.     Though it's a bug from Microsoft side, but we have an alternative solution for it. the parameters what i have used in my logic app as below highlighted. As it's a Straight string and Dynamic content , the new UI is not able to render it property Workaround:     I used concat function to combine the strings for my variable "errorDescripiton" concat('General EXCEPTION occurred in the Workflow ', workflow()?['name'],  ' inside the Logic App ',  parameters('ParamLogicAppNameAppointments'),  ' w...