Link

Syntax

SetRowset(rowset_value)

Description

Use this method to set the rowset value of the JSON Node.

Parameters

Name Description
rowset_value Specifies the rowset value of the JSON Node as a Rowset object.

Returns

None.

Example

Local Rowset &rsOperDefn = CreateRowset(Record.PSOPRDEFN);
&rsOperDefn.Fill("WHERE OPRID = 'PS'");

Local PSM_JSON:Node &oNode = create PSM_JSON:Node();
   
&oNode.SetRowset(&rsOperDefn);