DBA Data[Home] [Help]

APPS.IEX_NOTES_PVT dependencies on FND_LOG

Line 59: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

55: x_return_status := FND_API.G_RET_STS_SUCCESS;
56:
57: -- START OF BODY OF API
58: -- IF PG_DEBUG < 10 THEN
59: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
60: iex_debug_pub.LogMessage(G_PKG_NAME || '.Create_Note: Begin');
61: END IF;
62:
63: -- IF PG_DEBUG < 10 THEN

Line 64: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

60: iex_debug_pub.LogMessage(G_PKG_NAME || '.Create_Note: Begin');
61: END IF;
62:
63: -- IF PG_DEBUG < 10 THEN
64: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
65: iex_debug_pub.LogMessage(G_PKG_NAME || '.Create_Note: G_USER_ID = ' || FND_GLOBAL.USER_ID);
66: END IF;
67:
68: -- IF PG_DEBUG < 10 THEN

Line 69: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

65: iex_debug_pub.LogMessage(G_PKG_NAME || '.Create_Note: G_USER_ID = ' || FND_GLOBAL.USER_ID);
66: END IF;
67:
68: -- IF PG_DEBUG < 10 THEN
69: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
70: iex_debug_pub.LogMessage(G_PKG_NAME || '.Create_Note: Going thru context table');
71: END IF;
72: FOR i IN 1..p_contexts_tbl.COUNT LOOP
73: -- IF PG_DEBUG < 10 THEN

Line 74: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

70: iex_debug_pub.LogMessage(G_PKG_NAME || '.Create_Note: Going thru context table');
71: END IF;
72: FOR i IN 1..p_contexts_tbl.COUNT LOOP
73: -- IF PG_DEBUG < 10 THEN
74: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
75: iex_debug_pub.LogMessage(G_PKG_NAME || '.Create_Note: loop = ' || i);
76: END IF;
77: l_jtf_note_contexts_table(i).note_context_type := p_contexts_tbl(i).CONTEXT_TYPE;
78: l_jtf_note_contexts_table(i).note_context_type_id := p_contexts_tbl(i).CONTEXT_ID;

Line 85: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

81: l_jtf_note_contexts_table(i).last_updated_by := FND_GLOBAL.USER_ID;
82: l_jtf_note_contexts_table(i).created_by := FND_GLOBAL.USER_ID;
83: l_jtf_note_contexts_table(i).last_update_login := FND_GLOBAL.USER_ID;
84: -- IF PG_DEBUG < 10 THEN
85: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
86: iex_debug_pub.LogMessage(G_PKG_NAME || '.Create_Note: ' || l_jtf_note_contexts_table(i).note_context_type);
87: END IF;
88: -- IF PG_DEBUG < 10 THEN
89: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

Line 89: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

85: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
86: iex_debug_pub.LogMessage(G_PKG_NAME || '.Create_Note: ' || l_jtf_note_contexts_table(i).note_context_type);
87: END IF;
88: -- IF PG_DEBUG < 10 THEN
89: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
90: iex_debug_pub.LogMessage(G_PKG_NAME || '.Create_Note: ' || l_jtf_note_contexts_table(i).note_context_type_id);
91: END IF;
92: END LOOP;
93:

Line 95: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

91: END IF;
92: END LOOP;
93:
94: -- IF PG_DEBUG < 10 THEN
95: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
96: iex_debug_pub.LogMessage(G_PKG_NAME || '.Create_Note: Before call to jtf_notes_pub.create_note');
97: END IF;
98: jtf_notes_pub.create_note(
99: P_Api_Version => 1.0,

Line 122: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

118: p_jtf_note_contexts_tab => l_jtf_note_contexts_table,
119: p_note_type => p_note_type);
120:
121: -- IF PG_DEBUG < 10 THEN
122: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
123: iex_debug_pub.LogMessage(G_PKG_NAME || '.Create_Note: After call to jtf_notes_pub.create_note');
124: END IF;
125: -- IF PG_DEBUG < 10 THEN
126: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

Line 126: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

122: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
123: iex_debug_pub.LogMessage(G_PKG_NAME || '.Create_Note: After call to jtf_notes_pub.create_note');
124: END IF;
125: -- IF PG_DEBUG < 10 THEN
126: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
127: iex_debug_pub.LogMessage(G_PKG_NAME || '.Create_Note: l_Return_Status: ' || l_Return_Status);
128: END IF;
129:
130: -- check for errors

Line 139: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

135: END IF;
136:
137: -- END OF BODY OF API
138: -- IF PG_DEBUG < 10 THEN
139: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
140: iex_debug_pub.LogMessage(G_PKG_NAME || '.Create_Note: End');
141: END IF;
142:
143: -- Standard check of p_commit.

Line 484: PG_DEBUG := FND_LOG.G_CURRENT_RUNTIME_LEVEL;

480: G_LOGIN_ID := FND_GLOBAL.Conc_Login_Id;
481: G_PROGRAM_ID := FND_GLOBAL.Conc_Program_Id;
482: G_REQUEST_ID := FND_GLOBAL.Conc_Request_Id;
483:
484: PG_DEBUG := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
485:
486: END IEX_NOTES_PVT;