DBA Data[Home] [Help]

APPS.RCV_ACCRUALUTILITIES_GRP dependencies on RCV_ACCRUALUTILITIES_GRP

Line 1: PACKAGE BODY RCV_AccrualUtilities_GRP AS

1: PACKAGE BODY RCV_AccrualUtilities_GRP AS
2: /* $Header: RCVGUTLB.pls 120.10.12010000.2 2008/11/10 13:43:14 anjha ship $ */
3:
4: G_PKG_NAME CONSTANT VARCHAR2(30) := 'RCV_AccrualUtilities_GRP';
5: --G_DEBUG CONSTANT VARCHAR2(1) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');

Line 4: G_PKG_NAME CONSTANT VARCHAR2(30) := 'RCV_AccrualUtilities_GRP';

1: PACKAGE BODY RCV_AccrualUtilities_GRP AS
2: /* $Header: RCVGUTLB.pls 120.10.12010000.2 2008/11/10 13:43:14 anjha ship $ */
3:
4: G_PKG_NAME CONSTANT VARCHAR2(30) := 'RCV_AccrualUtilities_GRP';
5: --G_DEBUG CONSTANT VARCHAR2(1) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');
6: G_LOG_LEVEL CONSTANT NUMBER := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
7: G_LOG_HEAD CONSTANT VARCHAR2(40) := 'po.plsql.'||G_PKG_NAME;
8: G_MSG_LEVEL_THRESHOLD CONSTANT VARCHAR2(1):= FND_PROFILE.Value('FND_API_MSG_LEVEL_THRESHOLD');

Line 791: -- p_purge_in_rec IN RCV_AccrualUtilities_GRP.purge_in_rectype

787: -- Parameters :
788: -- p_purge_entity_type IN VARCHAR2
789: -- The table of which the entity is the primary identifier
790: -- Values: PO_HEADERS_ALL, RCV_TRANSACTIONS
791: -- p_purge_in_rec IN RCV_AccrualUtilities_GRP.purge_in_rectype
792: -- Contains the List of PO_HEADER_ID's to be evaluated
793: -- x_purge_out_rec OUT NOCOPY RCV_AccrualUtilities_GRP.purge_out_rectype
794: -- Contains c character ('Y'/'N') indicating whether records
795: -- for corresponding header_id's can be deleted or not

Line 793: -- x_purge_out_rec OUT NOCOPY RCV_AccrualUtilities_GRP.purge_out_rectype

789: -- The table of which the entity is the primary identifier
790: -- Values: PO_HEADERS_ALL, RCV_TRANSACTIONS
791: -- p_purge_in_rec IN RCV_AccrualUtilities_GRP.purge_in_rectype
792: -- Contains the List of PO_HEADER_ID's to be evaluated
793: -- x_purge_out_rec OUT NOCOPY RCV_AccrualUtilities_GRP.purge_out_rectype
794: -- Contains c character ('Y'/'N') indicating whether records
795: -- for corresponding header_id's can be deleted or not
796: ----------------------------------------------------------------------------------------------
797:

Line 806: p_purge_in_rec IN RCV_AccrualUtilities_GRP.purge_in_rectype,

802: x_return_status OUT NOCOPY VARCHAR2,
803: x_msg_count OUT NOCOPY NUMBER,
804: x_msg_data OUT NOCOPY VARCHAR2,
805: p_purge_entity_type IN VARCHAR2,
806: p_purge_in_rec IN RCV_AccrualUtilities_GRP.purge_in_rectype,
807: x_purge_out_rec OUT NOCOPY RCV_AccrualUtilities_GRP.purge_out_rectype
808: ) IS
809:
810: l_api_name constant varchar2(30) := 'Validate_PO_Purge';

Line 807: x_purge_out_rec OUT NOCOPY RCV_AccrualUtilities_GRP.purge_out_rectype

803: x_msg_count OUT NOCOPY NUMBER,
804: x_msg_data OUT NOCOPY VARCHAR2,
805: p_purge_entity_type IN VARCHAR2,
806: p_purge_in_rec IN RCV_AccrualUtilities_GRP.purge_in_rectype,
807: x_purge_out_rec OUT NOCOPY RCV_AccrualUtilities_GRP.purge_out_rectype
808: ) IS
809:
810: l_api_name constant varchar2(30) := 'Validate_PO_Purge';
811: l_api_version number := 1.0;

Line 885: -- p_purge_in_rec IN RCV_AccrualUtilities_GRP.purge_in_rectype

881: -- Parameters :
882: -- p_purge_entity_type IN VARCHAR2
883: -- The table of which the entity is the primary identifier
884: -- Values: PO_HEADERS_ALL, RCV_TRANSACTIONS
885: -- p_purge_in_rec IN RCV_AccrualUtilities_GRP.purge_in_rectype
886: -- Contains the List of PO_HEADER_ID's for which corresponding
887: -- records need to be deleted from RAE and RRS
888: ----------------------------------------------------------------------------------------------
889:

Line 898: p_purge_in_rec IN RCV_AccrualUtilities_GRP.purge_in_rectype

894: x_return_status OUT NOCOPY VARCHAR2,
895: x_msg_count OUT NOCOPY NUMBER,
896: x_msg_data OUT NOCOPY VARCHAR2,
897: p_purge_entity_type IN VARCHAR2,
898: p_purge_in_rec IN RCV_AccrualUtilities_GRP.purge_in_rectype
899: ) IS
900:
901: l_api_name constant varchar2(30) := 'Purge';
902: l_api_version number := 1.0;

Line 908: l_acct_events RCV_AccrualUtilities_GRP.TBL_NUM;

904: l_stmt_num number;
905: l_index binary_integer;
906:
907:
908: l_acct_events RCV_AccrualUtilities_GRP.TBL_NUM;
909:
910: INCORRECT_ENTITY EXCEPTION;
911: DELETE_FAILED EXCEPTION;
912:

Line 1123: END RCV_AccrualUtilities_GRP;

1119: l_encReversalAmt := 0;
1120: return (l_encReversalAmt);
1121: END;
1122:
1123: END RCV_AccrualUtilities_GRP;