Desupported Built-in Functions from Prior to PeopleTools 8.0

The first column in the following table lists built-in PeopleCode functions that existed prior to PeopleTools 8.0. The second column lists the new method or property that should be used instead of the desupported function. The existing functions still work in PeopleTools 8.0, however, they are being retained for backward compatibility only. New applications should be created using the new classes, methods, and properties.

Desupported Function Use Instead

ActiveRowCount

Rowset class, ActiveRowCount property

ClearSearchDefault

Field class, SearchDefault property

ClearSearchEdit

Field class, SearchEdit property

CompareLikeFields

Record class, CompareFields method

CopyFields

Record class, CopyFieldsTo method or CopyChangedFieldsTo method

CopyRow

Row class, CopyTo method

CurrEffDt

Rowset class, DeleteEnabled property

CurrEffRowNum

Row class, RowNumber property in combination with Rowset class, GetCurrEffRow method

CurrEffSeq

Rowset class, EffSeq property

CurrentRowNumber

Row class, RowNumber property

DeleteRecord

Record class, Delete method

DeleteRow

Rowset class, DeleteRow method

FetchValue

Field class, Value property

FieldChanged

Field class, IsChanged property

GetRelField

Field class, GetRelated method

GetStoredFormat

Field class, StoredFormat property

Gray

Field class, Enabled property

Hide

Field class, Visible property

HideRow

Row class, Visible property

HideScroll

Rowset class, HideAllRows method

InsertRow

Rowset class, InsertRow method

IsHidden

Row class, Visible property

NextEffDt

GetNextEffRow().REC.FIELD.Value

NextRelEffDt

GetNextEffRow.()REC.FIELD.GetRelated(rec.field).value

PriorEffDt

GetPriorEffRow().REC.Field.Value

PriorRelEffDt

GetPriorEffRow().REC.FIELD.GetRelated(rec.field).value

RecordChanged

Record class, IsChanged property

RecordDeleted

Record class, IsDeleted property

RecordNew

Row class, IsNew property

RemoteCall for Application Engine

CallAppEngine function

RowFlush

Rowset class, FlushRow method

RowScrollSelect

Rowset class, Select method

RowScrollSelectNew

Rowset class, SelectNew method

ScrollFlush

Rowset class, Flush method

ScrollSelect

Rowset class, Select method

ScrollSelectNew

Rowset class, SelectNew method

SetDefault

Field class, SearchDefault property

SetDefaultAll

Rowset class, SetDefault method

SetDefaultNext

GetNextEffRow().REC.FIELD.SetDefault()

SetDefaultNextRel

GetNextEffRow().REC.Field.GetRelated(REC.FIELD).SetDefault()

SetDefaultPrior

GetPriorEffRow().REC.FIELD.SetDefault()

SetDefaultPriorRel

GetPriorEffRow().REC.Field.GetRelated(REC.FIELD).SetDefault()

SetDisplayFormat

Field class, DisplayFormat property

SetLabel

Field class, Label property

SetSearchDefault

Field class SearchDefault property

SetSearchEdit

Field class, SearchEdit property

SetTracePC

If using API (Session object), use Trace Setting class properties.

SetTraceSQL

If using API (Session object), use Trace Setting class properties.

SortScroll

Rowset class, Sort method

TotalRowCount

Rowset class, RowCount property

Ungray

Field class, Enabled property

UnHide

Field class, Visible property

UnHideRow

Row class, Visible property

UnhideScroll

Rowset class, ShowAllRows method

UpdateValue

Field class, Value property