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: footer_note_id NUMBER;

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

40: select JTF_DIAGNOSTIC_REPORT_S.nextval into ui_node_id from dual;
41: note_component := CREATE_NOTE(footer_content, report_context);
42: link_component := CREATE_LINK('Community', diag_com_url, report_context);
43: note_component.set_link(temp, link_component);
44: footer_component := JTF_DIAG_FOOTER(exec_id,ui_node_id,footer_content,footer_note_id, 0);
45: footer_component.set_Note(note_component);
46: ELSE
47: RAISE_APPLICATION_ERROR(-20100,'The content provided for the footer is null');
48: END IF;