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 2005/09/16 11:05:13 ksurendr noship $ */
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 2365: oe_debug_pub.add( 'ENTER OE_HEADER_SECURITY.ENTITY' , 1 ) ;

2361: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
2362: --
2363: BEGIN
2364: IF l_debug_level > 0 THEN
2365: oe_debug_pub.add( 'ENTER OE_HEADER_SECURITY.ENTITY' , 1 ) ;
2366: END IF;
2367:
2368: -- Initializing return status to SUCCESS
2369: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 2387: OE_Header_SECURITY.g_record := l_rowtype_rec;

2383:
2384: OE_HEADER_UTIL.API_Rec_To_Rowtype_Rec(p_HEADER_rec, l_rowtype_rec);
2385:
2386: -- Initialize security global record
2387: OE_Header_SECURITY.g_record := l_rowtype_rec;
2388:
2389: x_result := Is_OP_constrained
2390: (p_operation => l_operation
2391: ,p_record => l_rowtype_rec

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

2392: ,x_on_operation_action => l_on_operation_action
2393: );
2394:
2395: IF l_debug_level > 0 THEN
2396: oe_debug_pub.add( 'EXIT OE_HEADER_SECURITY.ENTITY' , 1 ) ;
2397: END IF;
2398:
2399: EXCEPTION
2400: WHEN OTHERS THEN

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

2429: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
2430: --
2431: BEGIN
2432: IF l_debug_level > 0 THEN
2433: oe_debug_pub.add( 'ENTER OE_HEADER_SECURITY.ATTRIBUTES' , 1 ) ;
2434: END IF;
2435:
2436: -- Initializing return status to SUCCESS
2437: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 2477: OE_Header_SECURITY.g_record := l_rowtype_rec;

2473:
2474: OE_HEADER_UTIL.API_Rec_To_Rowtype_Rec(p_HEADER_rec, l_rowtype_rec);
2475:
2476: -- Initialize security global record
2477: OE_Header_SECURITY.g_record := l_rowtype_rec;
2478:
2479: -- Compare the new and old entity records and
2480: -- check constraints for all the changed attributes.
2481:

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

3951: -- NOTE: Please add constraints check for new attributes before the
3952: -- descriptive flexfield attributes check.
3953:
3954: IF l_debug_level > 0 THEN
3955: oe_debug_pub.add( 'EXIT OE_HEADER_SECURITY.ATTRIBUTES' , 1 ) ;
3956: END IF;
3957:
3958: EXCEPTION
3959: WHEN e_inacitve_pl THEN

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

4011:
4012: x_result := 0;
4013:
4014: IF p_validation_entity_short_name = 'HEADER' THEN
4015: l_source_document_type_id := oe_header_security.g_record.source_document_type_id;
4016: l_source_document_id := oe_header_security.g_record.source_document_id;
4017: l_source_document_ver_num :=
4018: oe_header_security.g_record.source_document_version_number;
4019: END IF;

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

4012: x_result := 0;
4013:
4014: IF p_validation_entity_short_name = 'HEADER' THEN
4015: l_source_document_type_id := oe_header_security.g_record.source_document_type_id;
4016: l_source_document_id := oe_header_security.g_record.source_document_id;
4017: l_source_document_ver_num :=
4018: oe_header_security.g_record.source_document_version_number;
4019: END IF;
4020:

Line 4018: oe_header_security.g_record.source_document_version_number;

4014: IF p_validation_entity_short_name = 'HEADER' THEN
4015: l_source_document_type_id := oe_header_security.g_record.source_document_type_id;
4016: l_source_document_id := oe_header_security.g_record.source_document_id;
4017: l_source_document_ver_num :=
4018: oe_header_security.g_record.source_document_version_number;
4019: END IF;
4020:
4021: -- If copied order
4022: IF l_source_document_type_id = 2 THEN

Line 4051: END OE_Header_Security;

4047: end if;
4048: x_result := 0;
4049: END Copied_From_Quote;
4050:
4051: END OE_Header_Security;