The value recorded in system.last_record variable is of type     a. Number     b. Boolean     c. Character.b. Boolean. User Exits :

Showing Answers 1 - 22 of 22 Answers

Dheeraj Dhamija

  • Apr 4th, 2007
 

Boolean

  Was this answer useful?  Yes

ayisham

  • Jul 31st, 2011
 

the value of :system.last_record is either true or false.so it must be Boolean

  Was this answer useful?  Yes

Raj

  • Oct 10th, 2011
 

It is of type Character as you always compare

if :system.last_record = 'TRUE' then
........
........
end if;

  Was this answer useful?  Yes

Shital Mistry

  • Aug 11th, 2012
 

It is c. Character data type.

  Was this answer useful?  Yes

Ravi

  • Jun 23rd, 2015
 

Boolean value

  Was this answer useful?  Yes

sunil

  • Jul 20th, 2015
 

"Boolean" value is recorded

  Was this answer useful?  Yes

Debarghya

  • Aug 29th, 2017
 

C. Character

Code
  1. GO_BLOCK(block name);

  2. FIRST_RECORD;

  3. LOOP

  4. ...............

  5.        EXIT WHEN :SYSTEM.last_record = TRUE ;

  6.        NEXT_RECORD;

  7. END LOOP;

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions