Wednesday, November 18, 2015

SAP UI5: Logic to start a tile from launchpad

Shell-dbg.controller.js openApp() method is called, which then calls NavContainer-dbg.js to method.
Render manger will call ApplicationContainer-dbg.js createUI5Component method

The UI5 application's component.js createContent method is called, this is the first chance the application's code is executed. The method will create the view.
When creating the view, the application's Main.Controller.js' onInit method is called.

Application-dbg.js main() method is called, which calls ApplicationImplementation-dbg.js startApplication method.

ConnectionManger-dbg.js getNewInstance method is called, which will call initModels() for creating oDataModel based on url and application config (line 171)

oDataModel-dbg.js oDataModel constructor is called to create the model, which will get metadata from server.

The UI5 application view's onInit method is called, which will all getServiceSchemeVersion()

No comments:

Post a Comment