DBA Data[Home] [Help]

APPS.JTF_DIAG_REPORT_FACTORY dependencies on JTF_DIAG_FOOTER

Line 13: FUNCTION CREATE_FOOTER(footer VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_FOOTER

9: RAISE_APPLICATION_ERROR(-20100,'ReportContext provided to instantiate the component is null');
10: END IF;
11: END VALIDATE_REPORT_CONTEXT;
12:
13: FUNCTION CREATE_FOOTER(footer VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_FOOTER
14: IS
15: footer_component JTF_DIAG_FOOTER;
16: exec_id NUMBER;
17: ui_node_id NUMBER;

Line 15: footer_component JTF_DIAG_FOOTER;

11: END VALIDATE_REPORT_CONTEXT;
12:
13: FUNCTION CREATE_FOOTER(footer VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_FOOTER
14: IS
15: footer_component JTF_DIAG_FOOTER;
16: exec_id NUMBER;
17: ui_node_id NUMBER;
18: footer_content VARCHAR2(2000);
19: BEGIN

Line 25: footer_component := JTF_DIAG_FOOTER(exec_id,ui_node_id,footer_content,0);

21: IF footer IS NOT NULL THEN
22: footer_content := DBMS_XMLGEN.CONVERT(footer,0);
23: exec_id := report_context.EXEC_ID;
24: select JTF_DIAGNOSTIC_REPORT_S.nextval into ui_node_id from dual;
25: footer_component := JTF_DIAG_FOOTER(exec_id,ui_node_id,footer_content,0);
26: ELSE
27: RAISE_APPLICATION_ERROR(-20100,'The content provided for the footer is null');
28: END IF;
29: RETURN footer_component;