Note: Built-In Function Rules Usage Options
Inserts a set of cell values into a space object. Refer also to the other SPACE Built-In Functions.
Arguments
|
Return Values
|
Technical Notes
The field values must be specified in the same order as the cells in the space were defined. Cells are matched by the order of their specification in arguments 2 -> 20. The names of the fields used have no bearing whatsoever on the cell mapping logic.
If you specify less field values than there are cells in the space then the non-specified cells are set to blank/zero/null values as appropriate.
If you specify more field values than there are cells in the space then the additional field values are ignored.
The provided field values MUST be enough to uniquely identify the entry being inserted.
Examples
This example inserts the current values of the fields #EMPNO, #GIVENAME and #SURNAME into a space whose name is contained in field #SPACENAME:
Use Insert_in_Space (#SpaceName #Empno #GiveName #SurName)
This example inserts literal values into a space named TEST:
Use Insert_in_Space (TEST A0090 'Mary' 'Jones');