DBA Data[Home] [Help]

APPS.JTF_DIAG_REPORT_FACTORY dependencies on JTF_DIAG_NOTE

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

86: END IF;
87: RETURN message_component;
88: END CREATE_MESSAGE;
89:
90: FUNCTION CREATE_MESSAGE(note in out nocopy JTF_DIAG_NOTE,message_type VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_MESSAGE
91: IS
92: message_component JTF_DIAG_MESSAGE;
93: exec_id NUMBER;
94: ui_node_id NUMBER;

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

390: RAISE_APPLICATION_ERROR(-20100,'The content provided for the tree node is null');
391: END IF;
392: RETURN tree_node_component;
393: END CREATE_TREE_NODE;
394: FUNCTION CREATE_NOTE(content VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_NOTE IS
395: note_component JTF_DIAG_NOTE;
396: exec_id NUMBER;
397: ui_node_id NUMBER;
398: no_of_links NUMBER;

Line 395: note_component JTF_DIAG_NOTE;

391: END IF;
392: RETURN tree_node_component;
393: END CREATE_TREE_NODE;
394: FUNCTION CREATE_NOTE(content VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_NOTE IS
395: note_component JTF_DIAG_NOTE;
396: exec_id NUMBER;
397: ui_node_id NUMBER;
398: no_of_links NUMBER;
399: link_ids JTF_VARCHAR2_TABLE_4000;

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

414: link_ids(x) := '0';
415: END LOOP;
416: END IF;
417:
418: note_component := JTF_DIAG_NOTE(exec_id,ui_node_id,note_content,no_of_links,link_ids,0,null);
419: ELSE
420: RAISE_APPLICATION_ERROR(-20100,'The content provided for the note is null');
421: END IF;
422: RETURN note_component;