DBA Data[Home] [Help]

APPS.JTF_DIAG_REPORT_FACTORY dependencies on JTF_DIAG_TREE_NODE

Line 377: FUNCTION CREATE_TREE_NODE(content VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_TREE_NODE IS

373: RAISE_APPLICATION_ERROR(-20100,'The content provided for the tree is null');
374: END IF;
375: RETURN tree_component;
376: END CREATE_TREE;
377: FUNCTION CREATE_TREE_NODE(content VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_TREE_NODE IS
378: tree_node_component JTF_DIAG_TREE_NODE;
379: exec_id NUMBER;
380: ui_node_id NUMBER;
381: tree_content VARCHAR2(20000);

Line 378: tree_node_component JTF_DIAG_TREE_NODE;

374: END IF;
375: RETURN tree_component;
376: END CREATE_TREE;
377: FUNCTION CREATE_TREE_NODE(content VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_TREE_NODE IS
378: tree_node_component JTF_DIAG_TREE_NODE;
379: exec_id NUMBER;
380: ui_node_id NUMBER;
381: tree_content VARCHAR2(20000);
382: BEGIN

Line 388: tree_node_component := JTF_DIAG_TREE_NODE(exec_id,ui_node_id,tree_content,0);

384: IF content IS NOT NULL THEN
385: tree_content := DBMS_XMLGEN.CONVERT(content,0);
386: exec_id := report_context.EXEC_ID;
387: select JTF_DIAGNOSTIC_REPORT_S.nextval into ui_node_id from dual;
388: tree_node_component := JTF_DIAG_TREE_NODE(exec_id,ui_node_id,tree_content,0);
389: ELSE
390: RAISE_APPLICATION_ERROR(-20100,'The content provided for the tree node is null');
391: END IF;
392: RETURN tree_node_component;