Hi,
Your application simply is not able to find your view since you have defined wrong path to local resources. "qsapUI" should be replaced with "qsapui". See code snippet here - Plunker
| sap.ui.localResources("qsapui"); | |||
| var view = sap.ui.view({ | |||
| id: "idqsapui1", | |||
| viewName: "qsapui.qsapui", | |||
| type: sap.ui.core.mvc.ViewType.XML | |||
| }); | |||
| view.placeAt("content") |