Contents: | Main | Chapter | See Also: | Getting Started Manual | Advanced User Manual |
This procedure converts an IENS into an array with the structure of a DA() array.
DA^DILF(IENS,.DA)
IENS |
(Required) A string with record and subrecord numbers in IENS format. |
.DA |
(Required) The name of the array which receives the record numbers. NOTE: This array is cleaned out (killed) before the record numbers are loaded. |
An array with the record numbers from the IENS - the array is structured like the traditional VA FileMan DA() array.
>S IENS="4,1,2,532," >D DA^DILF(IENS,.MYDA) >ZW MYDA MYDA=4 MYDA(1)=1 MYDA(2)=2 MYDA(3)=532
None
Reviewed/Updated: March 10, 2007