DBA Data[Home] [Help]

APPS.DPP_LOG_PVT dependencies on DPP_LOG_PVT

Line 1: PACKAGE BODY DPP_LOG_PVT AS

1: PACKAGE BODY DPP_LOG_PVT AS
2: /* $Header: dppvlogb.pls 120.6.12010000.3 2010/04/26 07:08:40 pvaramba ship $ */
3: -- Package name : DPP_LOG_PVT
4: -- Purpose :
5: -- History :

Line 3: -- Package name : DPP_LOG_PVT

1: PACKAGE BODY DPP_LOG_PVT AS
2: /* $Header: dppvlogb.pls 120.6.12010000.3 2010/04/26 07:08:40 pvaramba ship $ */
3: -- Package name : DPP_LOG_PVT
4: -- Purpose :
5: -- History :
6: -- NOTE :
7: -- End of Comments

Line 9: G_PKG_NAME CONSTANT VARCHAR2(30) := 'DPP_LOG_PVT';

5: -- History :
6: -- NOTE :
7: -- End of Comments
8:
9: G_PKG_NAME CONSTANT VARCHAR2(30) := 'DPP_LOG_PVT';
10: G_DEBUG BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);
11:
12: ---------------------------------------------------------------------
13: -- PROCEDURE

Line 41: l_txn_hdr_rec DPP_LOG_PVT.dpp_cst_hdr_rec_type := p_txn_hdr_rec;

37: l_api_name CONSTANT VARCHAR2(30) := 'Insert_HeaderLog';
38: l_api_version CONSTANT NUMBER := 1.0;
39: l_full_name CONSTANT VARCHAR2(60) := G_PKG_NAME ||'.'|| l_api_name;
40:
41: l_txn_hdr_rec DPP_LOG_PVT.dpp_cst_hdr_rec_type := p_txn_hdr_rec;
42:
43: l_profile_option_value VARCHAR2(150);
44:
45: BEGIN

Line 154: fnd_message.set_token('ROUTINE', 'DPP_LOG_PVT.Insert_HeaderLog');

150: WHEN OTHERS THEN
151: ROLLBACK TO INSERT_HEADERLOG_PVT;
152: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
153: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
154: fnd_message.set_token('ROUTINE', 'DPP_LOG_PVT.Insert_HeaderLog');
155: fnd_message.set_token('ERRNO', sqlcode);
156: fnd_message.set_token('REASON', sqlerrm);
157: FND_MSG_PUB.ADD;
158: -- Standard call to get message count and if count=1, get the message

Line 293: fnd_message.set_token('ROUTINE', 'DPP_LOG_PVT.Insert_LinesLog');

289: WHEN OTHERS THEN
290: ROLLBACK TO INSERT_LINESLOG_PVT;
291: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
292: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
293: fnd_message.set_token('ROUTINE', 'DPP_LOG_PVT.Insert_LinesLog');
294: fnd_message.set_token('ERRNO', sqlcode);
295: fnd_message.set_token('REASON', sqlerrm);
296: FND_MSG_PUB.ADD;
297: -- Standard call to get message count and if count=1, get the message

Line 425: fnd_message.set_token('ROUTINE', 'DPP_LOG_PVT.Insert_ClaimsLog');

421: WHEN OTHERS THEN
422: ROLLBACK TO INSERT_CLAIMSLOG_PVT;
423: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
424: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
425: fnd_message.set_token('ROUTINE', 'DPP_LOG_PVT.Insert_ClaimsLog');
426: fnd_message.set_token('ERRNO', sqlcode);
427: fnd_message.set_token('REASON', sqlerrm);
428: FND_MSG_PUB.ADD;
429: -- Standard call to get message count and if count=1, get the message

Line 437: END DPP_LOG_PVT;

433: p_data => x_msg_data
434: );
435: END Insert_ClaimsLog;
436:
437: END DPP_LOG_PVT;