Hi,
I have a variable (db-field) from the form (InventTable.ItemId) that I need to store internally.
When I want to use this value it is not accessible.
I have in my class declared the following, but I seem to miss the setting from pack to InventTable.ItemId.
Does anyone know?
class A_FINMA40_Validate
{
A_FINMA40_MandatoryFields a_FINMA40_MandatoryFields;
ClassBuild classBuild;
container ItemId_Pack;
container pack()
{
return [ItemId_Pack];
}
boolean unpack(container _packedClass)
{
[ItemId_Pack] = _packedClass;
return true;
}
}
Regards,
/Fredrik.
*This post is locked for comments
I have the same question (0)