DBA Data[Home] [Help]

APPS.OZF_CLAIM_UTILITY_PVT dependencies on FND_MSG_PUB

Line 14: OZF_DEBUG_HIGH_ON CONSTANT BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);

10: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OZF_CLAIM_UTILITY_PVT';
11:
12: G_FILE_NAME CONSTANT VARCHAR2(12) := 'ozfvcutb.pls';
13:
14: OZF_DEBUG_HIGH_ON CONSTANT BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);
15:
16: -- *******************************************************
17: -- Start of Comments
18: -- *******************************************************

Line 88: FND_MSG_PUB.initialize;

84:
85: -- Initialize message list if p_init_msg_list is set to TRUE.
86: IF FND_API.to_Boolean( p_init_msg_list )
87: THEN
88: FND_MSG_PUB.initialize;
89: END IF;
90:
91: -- Initialize API return status to SUCCESS
92: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 138: FND_MSG_PUB.Count_And_Get

134: OZF_Utility_PVT.debug_message(l_full_name||': end');
135: END IF;
136:
137: -- Standard call to get message count and if count is 1, get message info.
138: FND_MSG_PUB.Count_And_Get
139: (p_count => x_msg_count,
140: p_data => x_msg_data
141: );
142: EXCEPTION

Line 147: FND_MSG_PUB.Count_And_Get (

143: WHEN FND_API.G_EXC_ERROR THEN
144: ROLLBACK TO Check_Claim_ACC;
145: x_return_status := FND_API.G_RET_STS_ERROR;
146: -- Standard call to get message count and if count=1, get the message
147: FND_MSG_PUB.Count_And_Get (
148: p_encoded => FND_API.G_FALSE,
149: p_count => x_msg_count,
150: p_data => x_msg_data
151: );

Line 156: FND_MSG_PUB.Count_And_Get (

152: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
153: ROLLBACK TO Check_Claim_ACC;
154: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
155: -- Standard call to get message count and if count=1, get the message
156: FND_MSG_PUB.Count_And_Get (
157: p_encoded => FND_API.G_FALSE,
158: p_count => x_msg_count,
159: p_data => x_msg_data
160: );

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

160: );
161: WHEN OTHERS THEN
162: ROLLBACK TO Check_Claim_ACC;
163: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
164: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
165: FND_MESSAGE.set_name('OZF', 'OZF_CLAIM_CHK_ACS_ERR');
166: FND_MSG_PUB.add;
167: END IF;
168: -- Standard call to get message count and if count=1, get the message

Line 166: FND_MSG_PUB.add;

162: ROLLBACK TO Check_Claim_ACC;
163: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
164: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
165: FND_MESSAGE.set_name('OZF', 'OZF_CLAIM_CHK_ACS_ERR');
166: FND_MSG_PUB.add;
167: END IF;
168: -- Standard call to get message count and if count=1, get the message
169: FND_MSG_PUB.Count_And_Get (
170: p_encoded => FND_API.G_FALSE,

Line 169: FND_MSG_PUB.Count_And_Get (

165: FND_MESSAGE.set_name('OZF', 'OZF_CLAIM_CHK_ACS_ERR');
166: FND_MSG_PUB.add;
167: END IF;
168: -- Standard call to get message count and if count=1, get the message
169: FND_MSG_PUB.Count_And_Get (
170: p_encoded => FND_API.G_FALSE,
171: p_count => x_msg_count,
172: p_data => x_msg_data
173: );