Link

Syntax

SetRow(row_value)

Description

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

Parameters

Name Description
row_value Specifies the row value of the JSON Node as a Row object.

Returns

None.

Example

Local Rowset &rsOperDefn = CreateRowset(Record.PSOPRDEFN);
&rsOperDefn.Fill("WHERE OPRID = 'PS'");
   
Local Row &rOperDefn = &rsOperDefn.GetRow(1);
   
Local PSM_JSON:Node &oNode = create PSM_JSON:Node();
   
&oNode.SetRow(&rOperDefn);