Get all the values of Local Fields from a Multi-value Local Group in T24

Last updated: 2024-02-14

This code snippet is to fetch the values from multi-value LOCAL REF FIELDS in Transact using Java L3

LocalRefList reflist = isParam.getLocalRefGroups("LOCAL.GROUP");
for (int i = 0; i < reflist.size(); i++) {
   localFieldValue1 = reflist.get(i).getLocalRefField("LOCAL.FIELD1").getValue();
   localFieldValue2 = reflist.get(i).getLocalRefField("LOCAL.FIELD2").getValue();
   localFieldValue3 = reflist.get(i).getLocalRefField("LOCAL.FIELD3").getValue();
}