DBA Data[Home] [Help]

APPS.JTF_DIAG_REPORT_FACTORY dependencies on JTF_DIAG_NOTE

Line 20: note_component JTF_DIAG_NOTE;

16: exec_id NUMBER;
17: ui_node_id NUMBER;
18: footer_content VARCHAR2(2000);
19: footer_note_id NUMBER;
20: note_component JTF_DIAG_NOTE;
21: link_component JTF_DIAG_LINK;
22: temp number := 1;
23: diag_com_url varchar2(2000);
24: BEGIN

Line 110: FUNCTION CREATE_MESSAGE(note in out nocopy JTF_DIAG_NOTE,message_type VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_MESSAGE

106: END IF;
107: RETURN message_component;
108: END CREATE_MESSAGE;
109:
110: FUNCTION CREATE_MESSAGE(note in out nocopy JTF_DIAG_NOTE,message_type VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_MESSAGE
111: IS
112: message_component JTF_DIAG_MESSAGE;
113: exec_id NUMBER;
114: ui_node_id NUMBER;

Line 414: FUNCTION CREATE_NOTE(content VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_NOTE IS

410: RAISE_APPLICATION_ERROR(-20100,'The content provided for the tree node is null');
411: END IF;
412: RETURN tree_node_component;
413: END CREATE_TREE_NODE;
414: FUNCTION CREATE_NOTE(content VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_NOTE IS
415: note_component JTF_DIAG_NOTE;
416: exec_id NUMBER;
417: ui_node_id NUMBER;
418: no_of_links NUMBER;

Line 415: note_component JTF_DIAG_NOTE;

411: END IF;
412: RETURN tree_node_component;
413: END CREATE_TREE_NODE;
414: FUNCTION CREATE_NOTE(content VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_NOTE IS
415: note_component JTF_DIAG_NOTE;
416: exec_id NUMBER;
417: ui_node_id NUMBER;
418: no_of_links NUMBER;
419: link_ids JTF_VARCHAR2_TABLE_4000;

Line 438: note_component := JTF_DIAG_NOTE(exec_id,ui_node_id,note_content,no_of_links,link_ids,0,null);

434: link_ids(x) := '0';
435: END LOOP;
436: END IF;
437:
438: note_component := JTF_DIAG_NOTE(exec_id,ui_node_id,note_content,no_of_links,link_ids,0,null);
439: ELSE
440: RAISE_APPLICATION_ERROR(-20100,'The content provided for the note is null');
441: END IF;
442: RETURN note_component;