Hello!
I want to export data from forms to a csv-file (via TEXT_IO).
My problem: The data should be exported using the format mask as in the item properties of the form declared.
E.g. the value 123456789012 with the according format mask should be exported as 1234 5678 9012.
As there are a lot of items with different format masks, it cannot be solved with manually redesigning the format mask like substr(field_val,1,4) || ' ' || substr(field_val,5,4) || ' ' || substr(field_val,9,4)
I fetch the needed format mask with
var_fm := get_item_property(field, format_mask);
Do you know a way to get the field content "connected" with the format mask?
Thank you for your help!
Best regards,
Dirk