GetNewEffRow method: Rowset class
Syntax
GetNewEffRow()
Description
GetNewEffRow returns a row object for the row with the effective date closest to the current date, including newly inserted rows. This means dates equal to the current date, but not future dates. If the primary record associated with the rowset is not effective-dated this method returns a null object.
To find the current effective-dated row from the data that already exists in the database, that is, only from saved rows and not a newly created row, use the GetCurEffRow method instead.
Parameters
None.
Returns
A row object for the row with the current effective date.
Example
Local Row &MyRow = &ROWSET.GetNewEffRow();