Hi
I am trying do some EF on the screen WSOPCL in Infor EAM.
However i don't get EAM to use my EF on that screen.
I have added a simple EF just displaying av alert after klicking on save button.
Ext.define('EAM.custom.external_wsopcl', {
extend: 'EAM.custom.AbstractExtensibleFramework',
getSelectors: function () {
return {
'[extensibleFramework] [tabName=HDR]': {
aftersaverecord: function () {
alert('After save');
}
}
}
}
});
But nothing happens ???!!!
I even tried misstyping the EF to provoke an error, but it is like it is no loaded to that screen, because no error is reported and the function of the screen remains unaffected. If i add the EFto some other screen like personnel (WSEMPS) it works as expected.
Is there anyone that bring some light on this issue ?
I know that there are no tabs on the WSOPCL screen, but [tabName =HDR] should be used anyway i guess?
Regards Lars