Forum Replies Created
-
# 1 year ago# 2 years agoin reply to: ECMASCRIPT5# 2 years ago# 2 years ago::
please see this topic, that should resolve your problem:
https://community.simplifier.io/forum/topic/csv-file-upload-with-fileuploader/
in reply to: Convert output into Excel file# 2 years ago::No, nothing changed.
sap.ui.getCore().getEventBus().publish(this.getModuleName() + “ToApp”, “statusMessage”, adataForstatusMessage);
the generated code “this.getModuleName() + “ToApp” creates in my oppinion the wrong channel name <modul_name>+”ToApp” (results in my example in: “Password_ModulToApp”
But if i change it to “Screen_StatusDialog” (channel will be found now) I get another error “no event is registered” (see Simplifier code below).
var aEventListeners will be ‘undefined’.
var aEventListeners = EventProvider.getEventList(oChannel)[sEventId];
if (Array.isArray(aEventListeners)) {
// this ensures no ‘concurrent modification exception’ occurs (e.g. an event listener deregisters itself).
aEventListeners = aEventListeners.slice();
var oInfo;
for (var i = 0, iL = aEventListeners.length; i < iL; i++) {
oInfo = aEventListeners[i];
this._callListener(oInfo.fFunction, oInfo.oListener || this, sChannelId, sEventId, oData);
}
} else if (Log.isLoggable(Log.Level.DEBUG, “sap.ui.core.EventBus”)) {
// no listeners
Log.debug(“Failed to publish Event ‘” + sEventId + “‘ in ‘” + sChannelId + “‘.” + ” No listeners found.”, sChannelId + “#” + sEventId, “sap.ui.core.EventBus”);
}in reply to: action “send to app” not working# 2 years ago::there is no ‘Password_ModulToApp’ in oEventBus (see below).
Name of ‘sChannelId’ is generated by Simplifier.
oEventBus._mChannels
[object]
__proto__[object]
ApplicationChannel[object (constructor)]
Home[object (constructor)]
Login[object (constructor)]
Main[object (constructor)]
sap.ui[object (constructor)]
Screen_Approval[object (constructor)]
Screen_Infosystem[object (constructor)]
Screen_Main[object (constructor)]
Screen_Password[object (constructor)]
Screen_Roles[object (constructor)]
Screen_StatusDialog[object (constructor)]
Screen_User_Maintain[object (constructor)]
Screen_valueHelp_Customer[object (constructor)]
SuperAdministration[object (constructor)]
in reply to: action “send to app” not working# 2 years agoin reply to: csv file upload with fileUploader# 2 years agoin reply to: csv file upload with fileUploaderin reply to: widget extension with error when deploying# 2 years agoin reply to: csv file upload with fileUploader# 2 years ago::Thank you but example is not working because of missing mapping for export to csv in process designer.
Also in table I can’t edit data (because input field looses data when focus changes).
How do I get table data into global variable? There is no script step before calling client Business object (in your example it exports an empty global variable).
Could you please update these information?
in reply to: csv file upload with fileUploader# 2 years agoin reply to: csv file upload with fileUploaderin reply to: csv file upload with fileUploader