Creating DICT fields within a Basic program to Access @Record (OpenInsight Specific)
At 24 APR 1998 03:04:48PM Steve C. wrote:
In a stored procedure
I want to create the equivalent to:
.
Variable={FIELDNAME1}
.
I have an array of fieldnames such as:
ARRAY=FIELDNAME1'FIELDNAME2'FIELDNAME3"; where '=@fmI need to programmatically do this:
FOR X=1 TO COUNT
Variable={":ARRAY:"}"NEXT X
But needless to say this doesn't work…
I get Variable={FIELDNAME1}" instead of the Variable=the @Record info.
Anyone have a suggestion on how to get this to work….
ARRAY will change, so I can't hard code the @Record in the
program…. and I also need to access symbolic dict. items as well.
TIA… Steve C.
At 24 APR 1998 04:56PM Andrew P McAuley wrote:
Use the CALCULATE function - ensure @Record, @Dict and @Id are loaded.
World Leaders in all things RevSoft
At 24 APR 1998 05:40PM Steve C. wrote:
Thanks… That does it.
Steve C.