Hi all,I am looking for how to catch the error in the nested deployment descriptor.I have a workflow which will deploy the data to database. On failure of the deployment an email will forward to the user. Initially the workflow will call deployment descriptor say ABC.xml this descriptor will call the other descriptor say XYZ.xml under its dnrDeploymentJob. The XYZ.xml is to deploy the data content to table. The workflow can catch the status of ABC.xml only. But if the XYZ fails then the table would not update and the return to the workflow is success as the execution of ABC is successfull.Any pointer to this?thanks-Parag
Hi Parag,In the DNR you have the option of specifying when you have execute the DNR Script.You can try executing your DataDeploy (xyz.xml) via DNR first followed by the OpenDeploy (abc.xml). This way using the return code of DataDeploy (xyz.xml) you can skip OpenDeploy(abc.xml) and get back to the Workflow.Regards,