码迷,mamicode.com
首页 > 数据库 > 详细

Moving From Top To Bottom in Detailed Block in Oracle Forms

时间:2016-12-26 00:03:10      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:img   task   class   blog   last   variable   style   form   com   

Suppose you want to scan a tabular grid block (loop through all records in detail block) from top to bottom in Oracle forms. You can do this task by using :system.last_record system variable to determine whether it is last record in a block and then exit.
 
Example:
 
Begin
   go_block(‘yourblock‘);
   --- then move to first record
   first_record;
   Loop
      --- do some processing
      null;
      if :system.last_record = ‘TRUE‘ then
         exit;
      End if;
      next_record;
   End Loop;
   --- after exiting move to top
   first_record;
End;
 
技术分享
 

Moving From Top To Bottom in Detailed Block in Oracle Forms

标签:img   task   class   blog   last   variable   style   form   com   

原文地址:http://www.cnblogs.com/quanweiru/p/6220569.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!