I am trying to determine the record number of a record in Oracle Forms so I can navigate to that record. I am using the code below but it only gives me the record number of the record I am currently displaying.
declare
temp_record number(40);
char_record varchar2(40);
Begin
temp_record := 0;
if :control.barcod e_query is null then
message('You must select a barcode.');
...