$Close: Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 6: Line 6:
The $Close function allows a user to close a file or group from within a <var class="product">User Language</var> request.  
The $Close function allows a user to close a file or group from within a <var class="product">User Language</var> request.  


$Close accepts one argument and returns a numeric code. It is also callable .  
$Close accepts one argument and returns a numeric code. It is also callable.  


The only argument is the name of the file or group to be closed. This name can be either an unqualified name, in which case the standard 204 search order (TEMP GROUP, PERM GROUP, FILE) will be used to try to identify the file or group; or it can be a qualified name that explicitly indicates whether $Close is to act on a file or group. Some examples of qualified names are :
The only argument is the name of the file or group to be closed. This name can be either an unqualified name, in which case the standard 204 search order (TEMP GROUP, PERM GROUP, FILE) will be used to try to identify the file or group; or it can be a qualified name that explicitly indicates whether $Close is to act on a file or group. Some examples of qualified names are :

Revision as of 21:14, 10 October 2012

Close file or group in User Language request

Most Sirius $functions have been deprecated in favor of Object Oriented methods. There is currently no OO equivalent for the $Close function.

The $Close function allows a user to close a file or group from within a User Language request.

$Close accepts one argument and returns a numeric code. It is also callable.

The only argument is the name of the file or group to be closed. This name can be either an unqualified name, in which case the standard 204 search order (TEMP GROUP, PERM GROUP, FILE) will be used to try to identify the file or group; or it can be a qualified name that explicitly indicates whether $Close is to act on a file or group. Some examples of qualified names are :

'TEMP GROUP FOO' 'FILE HOHO' 'PERM GROUP CHUCKLES' 'GROUP KRUSTY'

Note that the last example is not fully qualified so that $Close will first look for a temporary group and then a permanent group.

Syntax

<section begin="syntax" /> %RESULT = $Close(fgname) <section end="syntax" />

$Close Function

%RESULT is set to indicate the success of the function.

0 - File/group closed 1 - File/group name missing 2 - File/group not open 3 - Can't close because of INCLUDE'd proc 4 - Can't close because compiled code accesses file/group 5 - Can't close required subsystem member 6 - Can't close member of open temp group

$Close return codes

The following program closes file 'KRUSTY'.

B %RC = $Close( 'KRUSTY' ) END