Hello All, I am on the learning journey CLD200 Manual Deployment , on task 7 when I run the cds add mta , the generated mta.yaml file is missing the risk-management-xsuaa resource. Although my package.json has the required code for xsuaa. I have tried to delete and recreate the MTA but somehow this resource does not get automatically created. Can someone please share some ideas on what I am doing wrong? SAP BTP, Cloud Foundry environment @MarL my Package.json code is below { "name" : "risk-management" , "version" : "2.0.0" , "description" : "Template for the Learning Journey Building side-by-side extensions on SAP BTP" , "author" : "m.haug@sap.com" , "license" : "SAP SAMPLE CODE LICENSE" , "repository" : "https://github.com/SAP-samples/sap-learning-extension-suite" , "engines" : { "node" : ">=14" }, "private" : true , "dependencies" : { "@sap-cloud-sdk/http-client" : "^2.5.0" , "@sap/cds" : "^6" , "@sap/cds-dk" : "^6.5.2" , "express" : "^4" , "hdb" : "^0.19.0" , "passport" : "^0.6.0" }, "devDependencies" : { "@sap/ux-specification" : "^1.102.16" , "sqlite3" : "^5.0.4" }, "scripts" : { "start" : "cds run" , "watch-risks" : "cds watch --open risks/webapp/index.html?sap-ui-xx-viewCache=false" }, "eslintConfig" : { "extends" : "eslint:recommended" , "env" : { "es2020" : true , "node" : true , "jest" : true , "mocha" : true }, "globals" : { "SELECT" : true , "INSERT" : true , "UPDATE" : true , "DELETE" : true , "CREATE" : true , "DROP" : true , "CDL" : true , "CQL" : true , "CXL" : true , "cds" : true }, "rules" : { "no-console" : "off" , "require-atomic-updates" : "off" } }, "cds" : { "requires" : { "API_BUSINESS_PARTNER" : { "kind" : "odata-v2" , "model" : "srv \\ external \\ API_BUSINESS_PARTNER" , "[development]" : { "credentials" : { "url" : "https://sandbox.api.sap.com/s4hanacloud/sap/opu/odata/sap/API_BUSINESS_PARTNER/" } }, "[production]" : { "credentials" : { "destination" : "API_BUSINESS_PARTNER" } } }, "db" : { "kind" : "hana-cloud" }, "xsuaa" : { "kind" : "xsuaa" } } }, "sapux" : [ "app/risks" ] }
... View more