Describe the Bug
When a parent workflow which refers a child workflow, both the workflows are in the same logic app and the parent workflow is saved, the save operation fails with an incorrect error as following:
"The child workflow 'xyz' could not be found in the logic app. Both the parent workflow 'abc' and the child workflow 'xyz' must exist in the same logic app.
Plan Type
Standard
Steps to Reproduce the Bug or Issue
- Create a new workflow - wfChild
- Create another workflow - wfParent
- Add action Invoke Workflow, specify to call wfChild
- Attempt to save wfParent
- Observe the incorrect error
{
"code":"NestedWorkflowNotFound",
"message":"The child workflow 'wfChild' could not be found in the logic app. Both the parent workflow 'wfParent' and the child workflow 'wfChild' must exist in the same logic app."
}
- Attempt to save wfChild, observe the correct error:
{
"error": {
"code": "ValueNotSupported",
"message": "The trigger 'When_a_HTTP_request_is_received' at line '1' and column '1867' is not valid. The 'operationOptions' property value 'SuppressWorkflowHeaders, SuppressWorkflowHeadersOnResponse' is not supported. Only the 'EnableSchemaValidation, SuppressWorkflowHeadersOnResponse, IncludeAuthorizationHeadersInOutputs, PersistRequestContextForConcurrencyControl' operation options are supported for triggers of type 'Request'."
}
}
Workflow JSON
Screenshots or Videos
No response
Additional context
No response
Describe the Bug
When a parent workflow which refers a child workflow, both the workflows are in the same logic app and the parent workflow is saved, the save operation fails with an incorrect error as following:
"The child workflow 'xyz' could not be found in the logic app. Both the parent workflow 'abc' and the child workflow 'xyz' must exist in the same logic app.
Plan Type
Standard
Steps to Reproduce the Bug or Issue
{ "code":"NestedWorkflowNotFound", "message":"The child workflow 'wfChild' could not be found in the logic app. Both the parent workflow 'wfParent' and the child workflow 'wfChild' must exist in the same logic app." }{ "error": { "code": "ValueNotSupported", "message": "The trigger 'When_a_HTTP_request_is_received' at line '1' and column '1867' is not valid. The 'operationOptions' property value 'SuppressWorkflowHeaders, SuppressWorkflowHeadersOnResponse' is not supported. Only the 'EnableSchemaValidation, SuppressWorkflowHeadersOnResponse, IncludeAuthorizationHeadersInOutputs, PersistRequestContextForConcurrencyControl' operation options are supported for triggers of type 'Request'." } }Workflow JSON
Screenshots or Videos
No response
Additional context
No response