CurrEffSeq function
Syntax
CurrEffSeq([level_num])
Description
Use the CurrEffSeq function to determine the effective sequence of a specific scroll area.
Note:
This function remains for backward compatibility only. Use the EffSeq rowset class property instead.
If no level is specified, CurrEffSeq returns the effective sequence of the current scroll level.
Returns
Returns a Number representing the effective sequence of the specified scroll level.
Example
If INSTALLATION.POSITION_MGMT = "P" Then
If All(POSITION_NBR) Then
If (EFFDT = CurrEffDt(1) and
EFFSEQ >= CurrEffSeq(1)) or
(EFFDT > CurrEffDt(1) and
EFFDT = %Date) Then
Gray_employment( );
End-if;
End-if;
End-if;
Related Topics
- PeopleCode API Reference: EffSeq property: Rowset class
- PeopleCode API Reference: GetCurrEffRow method: Rowset class
- PeopleCode API Reference: DeleteEnabled property: Rowset class
- PeopleCode Developer’s Guide: Understanding Data Buffer Access
- CurrEffDt function
- CurrentLevelNumber function
- CurrEffRowNum function