http://blog.csdn.net/pan_tian/article/details/7979631
F11查询过程:
1)WHEN-CLEAR-BLOCK
2)WHEN-NEW-RECORD-INSTANCE
3)WHEN-NEW-ITEM-INSTANCE
在输入查询条件后点CTRL+F11:
4)PRE-QUERY
Provide additional query criteria programmatically, just before sending the SELECT statement to the database.
If :parameter.G_query_find = 'TRUE' then
:trans_reasons.reason_id := :parameter.trans_reasons_qf;
:parameter.G_query_find := 'FALSE';
end if;
5)WHEN-CLEAR-BLOCK
6)POST-QUERY
Perform an action after fetching a record, such as looking up values in other tables based on a value in the current record. Fires once for each record fetched into the block.
7)WHEN-NEW-RECORD-INSTANCE
8)WHEN-NEW-ITEM-INSTANCE
本文详细解析了使用F11进行查询的过程,包括预查询、清除块、新记录实例、新项目实例以及查询后的操作等关键步骤。通过示例代码展示了如何在查询前和查询后进行参数设置和动作执行。

3896

被折叠的 条评论
为什么被折叠?



