@cap-js-community/sap-afc-sdk
Version:
SAP Advanced Financial Closing SDK for CDS
14 lines (12 loc) • 353 B
JavaScript
;
sap.ui.define([], function () {
return {
onPress: function (event) {
const baseUrl = this.getModel().getServiceUrl();
const ID = event.getObject?.()?.ID ?? event.getSource?.().getBindingContext?.().getObject()?.ID;
if (ID) {
window.open(`${baseUrl}JobResult(${ID})/data`, "_self");
}
},
};
});