This solution doesn't prevent an input from accepting non-digits - the character is accepted and then later removed.For example if you've got the value bound to a model and there's an event registered on the binding or on the model then they will get...
You can prevent an Input from accepting chars that are not digits by adding an event delegate on keypress:oInput.addEventDelegate({
onkeypress: function(oEvent) {
if (oEvent.key < '0' || oEvent.key > '9') {
oEvent.preventDefault()
}
...
For any fellow traveler still trying to get PNP to work with LDB_PROCESS in 2023:It doesn't work because structure PN used internally for selections is populated in PAI processing based on various options for period selection on the selection screen,...