Gets the RecordID of the record that is currently selected in the table. If no table is selected, an error is generated.
RecordID := RecordRef.RECORDID |
Parameters
- RecordRef
- Type: RecordRef The RecordRef of the record whose recordID you want to get.
Property Value/Return Value
Type: RecordID
Example
The following example opens table 18 (Customer) as a RecordRef variable that is named MyRecordRef. The FINDLAST Function (RecordRef) finds the last record in the table. The record id of the last record is retrieved, stored in the RecID variable displayed in message box. This example requires that you create the following variables and text constant in the C/AL Globals window.
Variable name | DataType |
---|---|
MyRecordRef | RecordRef |
RecID | RecordID |
Text constant name | DataType | ENU value |
---|---|---|
Text000 | Text | The record id for the last record is: %1 |
Copy Code | |
---|---|
MyRecordRef.OPEN(18); MyRecordRef.FINDLAST; RecID := MyRecordRef.RECORDID; MESSAGE(Text000, RecID); |