AppRecordList Read() Method

Fills the AppRecordList from its table.

Function Signature

 bool Read()

Parameters

Parameter Type Description

None

Return

Type Description

bool

Returns true if successful; false otherwise. A successful read may return zero results if no items match the query. Check for results by calling the AppRecordList.empty() method.

Technical Details

SBM ModScript version: 11.3.

Example

var prjList = Ext.CreateAppRecordList( Ext.TableId( "TS_PROJECTS" ));
var readOK = prjList.Read();

Notes

None.

Related Topics

AppRecordList