sorry the post was not finished
Hi all,
i have a problem with my input array.
i use GST 3.00.22 and GDC 3.00.21
if try to create an input array like this example:
define
arr_val dynamic array of
record
rec1 string,
rec2 string,
rec3 string,
rec4 string
end record
dialog
input array arr_val from record1.* attribute (UNBUFFERED, WITHOUT DEFAULTS)
BEFORE ROW
let arr_val[dialog.getcurrentRow('record1')].rec1 = 'example'
after row
####### here i have the problem
end input
end dialog
if the column relative to "rec1" is hidden in my 4fd form file, when i read the current value of rec1 in the after row the value is null (the expected value is "example ").
anyone have the same problem?
thank you