Note
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
Gets the current key of the table referred to by the RecordRef. The current key is returned as a string.
Syntax
CurrentKey := RecordRef.CURRENTKEY
Parameters
RecordRef
Type: RecordRef
The RecordRef that refers to the table for which you want to identify the current key.
Property Value/Return Value
Type: Text
The name of the current key of the record.
Example
This example requires that you create the following text constants and variables in the C/AL Globals window.
| Text constant | ENU value |
|---|---|
| Text000 | The current key in the "%1" table is "%2". |
| Variable | Data type |
|---|---|
| RecRef | RecordRef |
RecRef.OPEN(18);
MESSAGE(Text000,RecRef.CAPTION,RecRef.CURRENTKEY)
RecRef.Open(18) - Opens table 18 or causes a run-time error if table 18 does not exist.
RecRef.Caption - Returns the caption of the table.
RecRef.CURRENTKEY - Returns the caption of the current key in the table.