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;

相关文章:

  • 2021-07-16
  • 2022-03-11
  • 2021-10-10
  • 2021-12-11
  • 2021-10-24
  • 2022-03-02
  • 2022-12-23
  • 2022-02-09
猜你喜欢
  • 2022-01-28
  • 2021-11-25
  • 2021-11-24
  • 2021-12-22
  • 2022-03-08
  • 2021-11-17
  • 2021-09-09
相关资源
相似解决方案