alert가 아닌 MessageToast로 표현하기
모듈을 로드하기 위해 sap/m/MessageToast 패키지를 배열에 추가

<Button text="또 다른 메세지" press="onMsg2" icon="sap-icon://comment"/>
sap.ui.define([
"sap/ui/core/mvc/Controller",
"sap/m/Text",
"sap/m/MessageToast"
],
function (Controller, Text, MessageToast) {
"use strict";
return Controller.extend("js.edu.jsedu.controller.View1", {
onInit: function () {
},
onMsg2: function(){
MessageToast.show("");
//constructor(생성자 new)가 없음
}
});
});