How to find that yuo have modified a Dimension ?
In your modifiedField method, add this :
switch(fieldExt2id(_fieldId)) { case fieldNum(LedgerJournalTrans, Dimension): // Put your code here. break; }
OR , if you want test a specific Dimension, you can use this :
switch (_fieldId) { //Standard case ... case fieldId2Ext(fieldNum(LedgerJournalTrans, Dimension), 1)://1 you index of the array //Put your code break; }
Advertisements