DBA Data[Home] [Help]

APPS.JTF_TERR_DEF_MGMT_PUB dependencies on FND_MSG_PUB

Line 109: FND_MSG_PUB.initialize;

105:
106:
107: -- Initialize message list if p_init_msg_list is set to TRUE.
108: IF FND_API.to_Boolean( p_init_msg_list ) THEN
109: FND_MSG_PUB.initialize;
110: END IF;
111:
112: -- Debug Message
113: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW) THEN

Line 113: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW) THEN

109: FND_MSG_PUB.initialize;
110: END IF;
111:
112: -- Debug Message
113: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW) THEN
114: FND_MESSAGE.Set_Name('JTF', 'JTF_TERR_MEM_DEF_MGMT_START');
115: FND_MSG_PUB.Add;
116: END IF;
117:

Line 115: FND_MSG_PUB.Add;

111:
112: -- Debug Message
113: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW) THEN
114: FND_MESSAGE.Set_Name('JTF', 'JTF_TERR_MEM_DEF_MGMT_START');
115: FND_MSG_PUB.Add;
116: END IF;
117:
118: -------------------
119: ----- API body ----

Line 210: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW) THEN

206: --dbms_output.put_line('No records returned');
207: END IF;
208:
209: -- Debug Message
210: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW) THEN
211: FND_MESSAGE.Set_Name('JTF', 'JTF_TERR_MEM_DEF_MGMT_END');
212: FND_MSG_PUB.Add;
213: END IF;
214:

Line 212: FND_MSG_PUB.Add;

208:
209: -- Debug Message
210: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW) THEN
211: FND_MESSAGE.Set_Name('JTF', 'JTF_TERR_MEM_DEF_MGMT_END');
212: FND_MSG_PUB.Add;
213: END IF;
214:
215: -- Standard call to get message count and if count is 1, get message info.
216: FND_MSG_PUB.Count_And_Get

Line 216: FND_MSG_PUB.Count_And_Get

212: FND_MSG_PUB.Add;
213: END IF;
214:
215: -- Standard call to get message count and if count is 1, get message info.
216: FND_MSG_PUB.Count_And_Get
217: (
218: p_count => x_msg_count,
219: p_data => x_msg_data
220: );

Line 227: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR ) THEN

223: EXCEPTION
224:
225: WHEN OTHERS THEN
226: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
227: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR ) THEN
228: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
229: END IF;
230:
231: FND_MSG_PUB.Count_And_Get

Line 228: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

224:
225: WHEN OTHERS THEN
226: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
227: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR ) THEN
228: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
229: END IF;
230:
231: FND_MSG_PUB.Count_And_Get
232: (

Line 231: FND_MSG_PUB.Count_And_Get

227: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR ) THEN
228: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
229: END IF;
230:
231: FND_MSG_PUB.Count_And_Get
232: (
233: p_count => x_msg_count,
234: p_data => x_msg_data
235: );