DBA Data[Home] [Help]

APPS.FND_OAM_DSCFG_MAPPED_KEYS_PKG dependencies on FND_OAM_DEBUG

Line 39: fnd_oam_debug.log(2, l_ctxt, 'ENTER');

35: l_proc_id NUMBER := NULL;
36:
37: l_mapped_key_id NUMBER;
38: BEGIN
39: fnd_oam_debug.log(2, l_ctxt, 'ENTER');
40:
41: --get the config_instance_id, throws error if not initialized
42: l_config_instance_id := FND_OAM_DSCFG_INSTANCES_PKG.GET_CURRENT_ID;
43:

Line 98: fnd_oam_debug.log(2, l_ctxt, 'EXIT');

94: RETURNING MAPPED_KEY_ID INTO l_mapped_key_id;
95:
96: x_mapped_key_id := l_mapped_key_id;
97:
98: fnd_oam_debug.log(2, l_ctxt, 'EXIT');
99: EXCEPTION
100: WHEN NO_DATA_FOUND THEN
101: fnd_oam_debug.log(2, l_ctxt, 'EXIT');
102: RAISE;

Line 101: fnd_oam_debug.log(2, l_ctxt, 'EXIT');

97:
98: fnd_oam_debug.log(2, l_ctxt, 'EXIT');
99: EXCEPTION
100: WHEN NO_DATA_FOUND THEN
101: fnd_oam_debug.log(2, l_ctxt, 'EXIT');
102: RAISE;
103: WHEN OTHERS THEN
104: fnd_oam_debug.log(6, l_ctxt, 'Unexpected Error: (Code('||SQLCODE||'), Message("'||SQLERRM||'"))');
105: fnd_oam_debug.log(2, l_ctxt, 'EXIT');

Line 104: fnd_oam_debug.log(6, l_ctxt, 'Unexpected Error: (Code('||SQLCODE||'), Message("'||SQLERRM||'"))');

100: WHEN NO_DATA_FOUND THEN
101: fnd_oam_debug.log(2, l_ctxt, 'EXIT');
102: RAISE;
103: WHEN OTHERS THEN
104: fnd_oam_debug.log(6, l_ctxt, 'Unexpected Error: (Code('||SQLCODE||'), Message("'||SQLERRM||'"))');
105: fnd_oam_debug.log(2, l_ctxt, 'EXIT');
106: RAISE;
107: END;
108:

Line 105: fnd_oam_debug.log(2, l_ctxt, 'EXIT');

101: fnd_oam_debug.log(2, l_ctxt, 'EXIT');
102: RAISE;
103: WHEN OTHERS THEN
104: fnd_oam_debug.log(6, l_ctxt, 'Unexpected Error: (Code('||SQLCODE||'), Message("'||SQLERRM||'"))');
105: fnd_oam_debug.log(2, l_ctxt, 'EXIT');
106: RAISE;
107: END;
108:
109: END FND_OAM_DSCFG_MAPPED_KEYS_PKG;