In Sequence Generator transformation, CURRVAL is the NEXTVAL incremented by the configured value (increment by value). When NEXTVAL is called, it returns the current value and then increments by the specified increment value. CURRVAL then returns this incremented value. For example, if NEXTVAL returns 100 with an increment of 1, CURRVAL would be 101. This allows you to access both the value used and the next value in the sequence.