getTable

Definition:

NDLDS<datasource name>.getTable(datasetName)

 

Description:

Obtain the table object for the specified Dataset.

 

Parameters:

This function has one parameter:

datasetName - Required

The name of the Dataset whose table object you want to retrieve.

Note: This function does not use the default ndlParams object.

 

Returns:

The table object containing the specified Dataset.

 

Code Sample:

datasetName = "MyDataset";

return NDLDSMyDatasource.getTable(datasetName);

 

Notes:

The Dataset table object includes a number of intrinsic functions, some of which are suitable for use in your custom JavaScript functions and others which are for internal use only and shouldn't be included in your custom JavaScript. The functions suitable for general use are listed in the 'See also' section below. These functions can also be accessed directly using NDLDS<datasource name>.<dataset name>.<function>. Remember, when calling functions directly that you may need to modify the Dataset name.

 

Using as Predefined Action in Event:

n/a

 

 


See also:

findRecord

getCurrent

moveFirst

moveNext

movePrevious

moveLast

moveToIndex

moveToRecord

updateRecord

Writing Scripts