DBA Data[Home] [Help]

APPS.INL_RULE_GRP dependencies on STANDARD

Line 45: -- Standard Beginning of Procedure/Function Logging

41: l_exec_code VARCHAR2(200);
42:
43: BEGIN
44:
45: -- Standard Beginning of Procedure/Function Logging
46: INL_LOGGING_PVT.Log_BeginProc(p_module_name => g_module_name,
47: p_procedure_name => l_api_name) ;
48:
49: -- Initialize message list if p_init_msg_list is set to TRUE.

Line 54: -- Standard call to check for call compatibility

50: IF FND_API.to_Boolean(p_init_msg_list) THEN
51: FND_MSG_PUB.initialize;
52: END IF;
53:
54: -- Standard call to check for call compatibility
55: IF NOT FND_API.Compatible_API_Call(p_current_version_number => l_api_version,
56: p_caller_version_number => p_api_version,
57: p_api_name => l_api_name,
58: p_pkg_name => g_pkg_name ) THEN

Line 102: -- Standard call to get message count and if count is 1, get message info.

98: p_procedure_name => l_api_name,
99: p_var_name => 'l_check_condition',
100: p_var_value => l_check_condition);
101:
102: -- Standard call to get message count and if count is 1, get message info.
103: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,
104: p_count => x_msg_count,
105: p_data => x_msg_data);
106:

Line 107: -- Standard End of Procedure/Function Logging

103: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,
104: p_count => x_msg_count,
105: p_data => x_msg_data);
106:
107: -- Standard End of Procedure/Function Logging
108: INL_LOGGING_PVT.Log_EndProc(p_module_name => g_module_name,
109: p_procedure_name => l_api_name);
110:
111: RETURN l_check_condition;

Line 115: -- Standard Expected Error Logging

111: RETURN l_check_condition;
112:
113: EXCEPTION
114: WHEN FND_API.G_EXC_ERROR THEN
115: -- Standard Expected Error Logging
116: INL_LOGGING_PVT.Log_ExpecError(p_module_name => g_module_name,
117: p_procedure_name => l_api_name);
118: x_return_status := FND_API.G_RET_STS_ERROR;
119: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,

Line 123: -- Standard Unexpected Error Logging

119: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,
120: p_count => x_msg_count,
121: p_data => x_msg_data);
122: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
123: -- Standard Unexpected Error Logging
124: INL_LOGGING_PVT.Log_UnexpecError(p_module_name => g_module_name,
125: p_procedure_name => l_api_name);
126: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
127: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,

Line 131: -- Standard Unexpected Error Logging

127: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,
128: p_count => x_msg_count,
129: p_data => x_msg_data);
130: WHEN OTHERS THEN
131: -- Standard Unexpected Error Logging
132: INL_LOGGING_PVT.Log_UnexpecError(p_module_name => g_module_name,
133: p_procedure_name => l_api_name);
134: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
135: IF FND_MSG_PUB.Check_Msg_Level(