ADOM Item Id |
![]() ![]() ![]() |
ADOM Items are similar to the Relational table records. To update or delete an ADOM item we need an identity. When a new ADOM Item is created with AML function Insert it is assigned an identity.
In the above example when referring the items of the "customers" ADOM we can make use of the id attributes. The following code can be uses to make a ProcessField that contains the ADOM item ids in a hidden input element.
An AML process that is configured to process the Process Block of this element can access to the ADOM Item id with f:@id symbol. Examples: Update(s:cart, *, *, a:@id = f:@id) Delete(s:cart, a:@id = f:@id) |