Moving From Top To Bottom in Detailed Block in Oracle Forms
Posted ORACLE EBS
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Moving From Top To Bottom in Detailed Block in Oracle Forms相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
csharp 将“Move to Top”和“Move to Bottom”项添加到组件的检查器上下文菜单中。
csharp 将“Move to Top”和“Move to Bottom”项添加到组件的检查器上下文菜单中。
LINQ to SQL语句之Top/Bottom和Paging和SqlMethods
LINQ体验——LINQ to SQL语句之Union All/Union/Intersect和Top/Bottom和Paging和SqlMethods
[somewhat outdated] How Chromium Displays Web Pages: Bottom-to-top overview of how WebKit is embedde