CopyFromJavaArray
Syntax
CopyFromJavaArray(JavaArray, &PeopleCodeArray [, &RestrictionArray])
Description
Use the CopyFromJavaArray function to copy the array specified by JavaArray into one-dimensional PeopleCode array &PeopleCodeArray .
Note: The Java array must be at least the same size as the PeopleCode array.
The optional &RestrictionArray parameter is a PeopleCode array that contains the index elements ...
CopyRow
Syntax
CopyRow(destination_row, source_row)
Description
Use the CopyRow function to copy data from one row to another row.
Note: This function remains for backward compatibility only. Use the CopyTo row class method instead.
destination_row is the row number to which you want the source _row data values copied. The two ...
CopyToJavaArray
Syntax
CopyToJavaArray(&PeopleCodeArray, JavaArray [, &RestrictionArray])
Description
Use the CopyToJavaArray function to copy the one-dimensional array specified by &PeopleCodeArray into the Java array JavaArray . The Java array must be at least as large as the PeopleCode array.
The optional &RestrictionArray parameter is a PeopleCode array that contains the index elements of ...
Cos
Syntax
Cos(angle)
Description
Use the Cos function to calculate the cosine of the given angle (adjacent / hypotenuse).
Parameters
Field or Control |
Definition |
---|---|
angle |
A value in radians. |
Returns
A real number between -1.00 and 1.00.
Cot
Syntax
Cot(angle)
Description
Use the Cot function to calculate the cotangent of the given angle (adjacent / opposite, that is, the reciprocal of the tangent).
Parameters
Field or Control |
Definition |
---|---|
angle |
A value in radians, excluding 0. If the input value is 0, you receive an error message at runtime ... |
create
Syntax
create PKG_NAME[:SubpackageName[:SubpackageName]]{:ClassName([paramlist])
Description
Use the create function to instantiate an object of the specified application class.
Because the objectâs constructor method is automatically invoked by the create function, any parameters needed by the constructor method must be included in the invocation of create.
Parameters ...
CreateAnalyticInstance
Syntax
CreateAnalyticInstance(AnalyticType, ID, Descr, &RecordRef, ForceDelete)
Description
Use the CreateAnalyticInstance function to create an analytic instance as identified by the analytic ID . If ID is an empty string, the system automatically generates a unique ID.
This function only creates the metadata for the ID. It doesn't load the ...
CreateArray
Syntax
CreateArray(paramlist)
Where paramlist is an arbitrary-length list of values in the form:
param1 [, param2] ...
Description
Use the CreateArray function to construct an array and returns a reference to it.
The type of the first parameter determines the type of array that is built. That is, if the first ...
CreateArrayAny
Syntax
CreateArrayAny([paramlist])
Where paramlist is an arbitrary-length list of values in the form:
param1 [, param2] ...
Description
Use the CreateArrayAny function to construct an array whose elements are of data type ANY and returns a reference to it.
The CreateArrayAny function uses flattening and promotion as required to convert subsequent ...
CreateArrayRept
Syntax
CreateArrayRept(val, count)
Description
Use the CreateArrayRept function to create an array that contains count copies of val . If val is itself an array, the created array has one higher dimension, and each element (sub-array) is the array reference val .
The type of the first parameter ( val ) determines the ...