InterviewSolution
| 1. |
How To Retrieve The Data From 3rd Scroll, Using Traversing? |
|
Answer» getlevel0.getrow(1).getrecord(record.level1record)getrow(2). getrecord(record.level2record)getrow(3). getrecord(record.level3record); The above ANSWER is for to retrieve the 3rd scroll recoed LEVEL data only. If u want the field level information use below syntax: getlevel0.getrow(1).getrecord(record.level1record)getrow(2). getrecord(record.level2record)getrow(3). getrecord(record.level3record)getfield(field.fieldname); getlevel0.getrow(1).getrecord(record.level1record)getrow(2). getrecord(record.level2record)getrow(3). getrecord(record.level3record); The above answer is for to retrieve the 3rd scroll recoed level data only. If u want the field level information use below syntax: getlevel0.getrow(1).getrecord(record.level1record)getrow(2). getrecord(record.level2record)getrow(3). getrecord(record.level3record)getfield(field.fieldname); |
|