DBA Data[Home] [Help]

APPS.OE_HEADER_SECURITY dependencies on OE_HEADER_SECURITY

Line 1: PACKAGE BODY OE_Header_Security AS

1: PACKAGE BODY OE_Header_Security AS
2: /* $Header: OEXXHDRB.pls 120.1.12010000.2 2009/02/11 09:24:57 haagarwa ship $ */
3:
4:
5: -- Global constant holding the package name

Line 7: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OE_Header_Security';

3:
4:
5: -- Global constant holding the package name
6:
7: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OE_Header_Security';
8:
9: -- LOCAL PROCEDURES
10:
11:

Line 2401: oe_debug_pub.add( 'ENTER OE_HEADER_SECURITY.ENTITY' , 1 ) ;

2397: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
2398: --
2399: BEGIN
2400: IF l_debug_level > 0 THEN
2401: oe_debug_pub.add( 'ENTER OE_HEADER_SECURITY.ENTITY' , 1 ) ;
2402: END IF;
2403:
2404: -- Initializing return status to SUCCESS
2405: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 2423: OE_Header_SECURITY.g_record := l_rowtype_rec;

2419:
2420: OE_HEADER_UTIL.API_Rec_To_Rowtype_Rec(p_HEADER_rec, l_rowtype_rec);
2421:
2422: -- Initialize security global record
2423: OE_Header_SECURITY.g_record := l_rowtype_rec;
2424:
2425: x_result := Is_OP_constrained
2426: (p_operation => l_operation
2427: ,p_record => l_rowtype_rec

Line 2432: oe_debug_pub.add( 'EXIT OE_HEADER_SECURITY.ENTITY' , 1 ) ;

2428: ,x_on_operation_action => l_on_operation_action
2429: );
2430:
2431: IF l_debug_level > 0 THEN
2432: oe_debug_pub.add( 'EXIT OE_HEADER_SECURITY.ENTITY' , 1 ) ;
2433: END IF;
2434:
2435: EXCEPTION
2436: WHEN OTHERS THEN

Line 2487: oe_debug_pub.add( 'ENTER OE_HEADER_SECURITY.ATTRIBUTES' , 1 ) ;

2483: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
2484: --
2485: BEGIN
2486: IF l_debug_level > 0 THEN
2487: oe_debug_pub.add( 'ENTER OE_HEADER_SECURITY.ATTRIBUTES' , 1 ) ;
2488: END IF;
2489:
2490: -- Initializing return status to SUCCESS
2491: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 2531: OE_Header_SECURITY.g_record := l_rowtype_rec;

2527:
2528: OE_HEADER_UTIL.API_Rec_To_Rowtype_Rec(p_HEADER_rec, l_rowtype_rec);
2529:
2530: -- Initialize security global record
2531: OE_Header_SECURITY.g_record := l_rowtype_rec;
2532:
2533: -- Compare the new and old entity records and
2534: -- check constraints for all the changed attributes.
2535:

Line 4027: oe_debug_pub.add( 'EXIT OE_HEADER_SECURITY.ATTRIBUTES' , 1 ) ;

4023: -- NOTE: Please add constraints check for new attributes before the
4024: -- descriptive flexfield attributes check.
4025:
4026: IF l_debug_level > 0 THEN
4027: oe_debug_pub.add( 'EXIT OE_HEADER_SECURITY.ATTRIBUTES' , 1 ) ;
4028: END IF;
4029:
4030: EXCEPTION
4031: WHEN e_inacitve_pl THEN

Line 4087: l_source_document_type_id := oe_header_security.g_record.source_document_type_id;

4083:
4084: x_result := 0;
4085:
4086: IF p_validation_entity_short_name = 'HEADER' THEN
4087: l_source_document_type_id := oe_header_security.g_record.source_document_type_id;
4088: l_source_document_id := oe_header_security.g_record.source_document_id;
4089: l_source_document_ver_num :=
4090: oe_header_security.g_record.source_document_version_number;
4091: END IF;

Line 4088: l_source_document_id := oe_header_security.g_record.source_document_id;

4084: x_result := 0;
4085:
4086: IF p_validation_entity_short_name = 'HEADER' THEN
4087: l_source_document_type_id := oe_header_security.g_record.source_document_type_id;
4088: l_source_document_id := oe_header_security.g_record.source_document_id;
4089: l_source_document_ver_num :=
4090: oe_header_security.g_record.source_document_version_number;
4091: END IF;
4092:

Line 4090: oe_header_security.g_record.source_document_version_number;

4086: IF p_validation_entity_short_name = 'HEADER' THEN
4087: l_source_document_type_id := oe_header_security.g_record.source_document_type_id;
4088: l_source_document_id := oe_header_security.g_record.source_document_id;
4089: l_source_document_ver_num :=
4090: oe_header_security.g_record.source_document_version_number;
4091: END IF;
4092:
4093: -- If copied order
4094: IF l_source_document_type_id = 2 THEN

Line 4123: END OE_Header_Security;

4119: end if;
4120: x_result := 0;
4121: END Copied_From_Quote;
4122:
4123: END OE_Header_Security;