DBA Data[Home] [Help]

APPS.INL_LANDEDCOST_PUB dependencies on INL_LOGGING_PVT

Line 66: INL_LOGGING_PVT.Log_BeginProc (p_module_name => g_module_name,

62: l_parent_ship_line_id NUMBER;
63: BEGIN
64:
65: -- Standard Beginning of Procedure/Function Logging
66: INL_LOGGING_PVT.Log_BeginProc (p_module_name => g_module_name,
67: p_procedure_name => l_api_name);
68: -- Standard Start of API savepoint
69: SAVEPOINT Get_LandedCost_PVT;
70:

Line 93: INL_LOGGING_PVT.Log_Statement (

89: -- Api Body
90: BEGIN
91: -- Standard Statement Level Procedure/Function Logging
92: l_debug_info := 'Get estimated landed cost for the ship_line_id: ' || p_ship_line_id;
93: INL_LOGGING_PVT.Log_Statement (
94: p_module_name => g_module_name,
95: p_procedure_name => l_api_name,
96: p_debug_info => l_debug_info
97: );

Line 126: INL_LOGGING_PVT.Log_Statement (

122: AND olcv.adjustment_num = 0;
123:
124: -- Standard Statement Level Procedure/Function Logging
125: l_debug_info := 'Get actual landed cost for the ship_line_id: ' || p_ship_line_id;
126: INL_LOGGING_PVT.Log_Statement (
127: p_module_name => g_module_name,
128: p_procedure_name => l_api_name,
129: p_debug_info => l_debug_info
130: );

Line 167: INL_LOGGING_PVT.Log_EndProc (

163: p_count => x_msg_count,
164: p_data => x_msg_data);
165:
166: -- Standard End of Procedure/Function Logging
167: INL_LOGGING_PVT.Log_EndProc (
168: p_module_name => g_module_name,
169: p_procedure_name => l_api_name
170: );
171: EXCEPTION

Line 174: INL_LOGGING_PVT.Log_ExpecError (

170: );
171: EXCEPTION
172: WHEN FND_API.G_EXC_ERROR THEN
173: -- Standard Expected Error Logging
174: INL_LOGGING_PVT.Log_ExpecError (
175: p_module_name => g_module_name,
176: p_procedure_name => l_api_name
177: );
178: ROLLBACK TO Get_LandedCost_PVT;

Line 187: INL_LOGGING_PVT.Log_UnexpecError (

183: p_data => x_msg_data
184: );
185: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
186: -- Standard Unexpected Error Logging
187: INL_LOGGING_PVT.Log_UnexpecError (
188: p_module_name => g_module_name,
189: p_procedure_name => l_api_name);
190: ROLLBACK TO Get_LandedCost_PVT;
191: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 199: INL_LOGGING_PVT.Log_UnexpecError (

195: p_data => x_msg_data
196: );
197: WHEN OTHERS THEN
198: -- Standard Unexpected Error Logging
199: INL_LOGGING_PVT.Log_UnexpecError (
200: p_module_name => g_module_name,
201: p_procedure_name => l_api_name
202: );
203: ROLLBACK TO Get_LandedCost_PVT;