Using Call_Form in Oracle D2k
Posted ORACLE EBS
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Using Call_Form in Oracle D2k相关的知识,希望对你有一定的参考价值。
Using Call_Form in Oracle D2k
CALL_FORM examples
/* Example 1:
** Call a form in query-only mode.
*/
BEGIN
CALL_FORM(’empbrowser’, no_hide, no_replace, query_only);
END;
/* Example 2:
** Call a form, pass a parameter list (if it exists)
*/
DECLARE
pl_id PARAMLIST;
theformname VARCHAR2(20);
BEGIN
theformname := ’addcust’;
/* Try to lookup the ’TEMPDATA’ parameter list */
pl_id := GET_PARAMETER_LIST(’tempdata’);
IF ID_NULL(pl_id) THEN
CALL_FORM(theformname);
ELSE
CALL_FORM(theformname,
hide,
no_replace,
no_query_only,
pl_id);
END IF;
CALL_FORM(’lookcust’, no_hide, do_replace, query_only);
END;
以上是关于Using Call_Form in Oracle D2k的主要内容,如果未能解决你的问题,请参考以下文章
Using Post_Query Trigger in Oracle Forms
Using User-Named Triggers in Oracle Forms
Using Post_Query Trigger in Oracle Forms
Using Oracle Database In-Memory with Oracle E-Business Suite