RowInit is a field specific PeopleCode event.
-
True
-
False
Reveal answer
Fill a bubble to check yourself
B
Correct answer
Explanation
RowInit is a PeopleCode event that fires for an entire row of data when a row is initialized or inserted, not for individual fields. It is row-level, not field-specific. Field-specific events would be like FieldEdit or FieldChange.
AI explanation
RowInit is a row-level (record-level) PeopleCode event — it fires once for each row of data as it's added to a scroll or grid, not per individual field. Field-level events like FieldFormula or FieldEdit are the ones tied to a specific field, so RowInit doesn't belong to that category.