|
|
|
|
|
GDPR (Property) In french: RGPD
The GDPR property is used to: - find out if the GDPR applies to an item from a data file.
- define whether the GDPR should apply to an item (in the item description in the code only).
Reminder: The items to which GDPR applies are defined in the data model editor
...
MyItem is Item Description
MyItem.Name = "NAME"
MyItem.Type = hItemText
MyItem.Size = 40
MyItem.KeyType = hUniqueKey
MyItem.GDPR = True
HDescribeItem(AFile, MyItem)
...
Syntax
Finding out if the GDPR applies to the item Hide the details
<Result> = <Data file>.<Item>.GDPR
<Result>: Boolean - True if the GDPR applies to the item associated with the record,
- False otherwise.
Logical name of the data file used. This name was defined in the data model editor or with the File Description type.
<Item>: Character string Name of the item used. This name was defined in the data model editor or with the Item Description type.
Determining if the GDPR should apply to the item Hide the details
<Item>.GDPR = <Management mode>
<Item>: Character string Name of the item used. This name is defined with the Item Description type. <Management mode>: Boolean - True if the GDPR applies to the item,
- False otherwise.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|