DBA Data[Home] [Help]

APPS.OE_BLANKET_PVT dependencies on OE_DEBUG_PUB

Line 26: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

22: l_old_header_rec OE_Blanket_PUB.header_Rec_Type;
23: l_return_status varchar2(1);
24: l_sec_result NUMBER;
25: --
26: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
27: --
28: BEGIN
29: x_return_status := FND_API.G_RET_STS_SUCCESS;
30: IF l_debug_level > 0 THEN

Line 31: oe_debug_pub.add( 'INSIDE BLANKET HEADER' ,1 ) ;

27: --
28: BEGIN
29: x_return_status := FND_API.G_RET_STS_SUCCESS;
30: IF l_debug_level > 0 THEN
31: oe_debug_pub.add( 'INSIDE BLANKET HEADER' ,1 ) ;
32: END IF;
33:
34: -- Query Old Record
35:

Line 69: oe_debug_pub.add( 'CHECK BLANKET HEADER ATTRIBUTES SECURITY', 1 ) ;

65: OR p_x_header_rec.operation = OE_GLOBALS.G_OPR_DELETE) -- hashraf pack J
66: THEN
67:
68: IF l_debug_level > 0 THEN
69: oe_debug_pub.add( 'CHECK BLANKET HEADER ATTRIBUTES SECURITY', 1 ) ;
70: END IF;
71: -- check if this operation is allowed
72: -- on all the changed attributes
73: OE_Blanket_Header_Security.Attributes

Line 95: oe_debug_pub.add( ' Validate Blanket Attribute ' ,1);

91: -- Validate User passed attributes
92:
93:
94: IF p_control_rec.validate_attributes THEN
95: oe_debug_pub.add( ' Validate Blanket Attribute ' ,1);
96: oe_blanket_util.validate_attributes( p_x_header_Rec => p_x_header_rec,
97: p_old_header_rec => l_old_header_rec,
98: p_validation_level => p_validation_level,
99: x_return_status => l_return_status);

Line 128: oe_debug_pub.add( 'CHECK BLANKET HEADER ENTITY SECURITY' ) ;

124: OR p_x_header_rec.operation = OE_GLOBALS.G_OPR_UPDATE
125: OR p_x_header_rec.operation = OE_GLOBALS.G_OPR_DELETE) -- hashraf Pack J
126: THEN
127: IF l_debug_level > 0 THEN
128: oe_debug_pub.add( 'CHECK BLANKET HEADER ENTITY SECURITY' ) ;
129: END IF;
130: -- check if this operation is allowed
131: -- on all the changed attributes
132: OE_Blanket_Header_Security.Entity

Line 201: oe_debug_pub.add('delete request1',2);

197:
198: WHEN FND_API.G_EXC_ERROR THEN
199: IF NOT (OE_GLOBALS.G_UI_FLAG) THEN
200: if l_debug_level > 0 then
201: oe_debug_pub.add('delete request1',2);
202: end if;
203: OE_Delayed_Requests_Pvt.Clear_Request
204: (x_return_status => l_return_status);
205: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

Line 217: oe_debug_pub.add('delete request1',2);

213:
214: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
215: IF NOT (OE_GLOBALS.G_UI_FLAG) THEN
216: if l_debug_level > 0 then
217: oe_debug_pub.add('delete request1',2);
218: end if;
219: OE_Delayed_Requests_Pvt.Clear_Request
220: (x_return_status => l_return_status);
221: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

Line 233: oe_debug_pub.add('delete request1',2);

229:
230: WHEN OTHERS THEN
231: IF NOT (OE_GLOBALS.G_UI_FLAG) THEN
232: if l_debug_level > 0 then
233: oe_debug_pub.add('delete request1',2);
234: end if;
235: OE_Delayed_Requests_Pvt.Clear_Request
236: (x_return_status => l_return_status);
237: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

Line 265: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

261: l_return_status varchar2(1);
262: I number;
263: l_sec_result NUMBER;
264: --
265: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
266: --
267: BEGIN
268: x_return_status := FND_API.G_RET_STS_SUCCESS;
269:

Line 319: oe_debug_pub.add( 'CHECK BLANKET LINE ATTRIBUTES SECURITY' ) ;

315: OR l_line_rec.operation = OE_GLOBALS.G_OPR_DELETE) -- hashraf pack J
316: THEN
317:
318: IF l_debug_level > 0 THEN
319: oe_debug_pub.add( 'CHECK BLANKET LINE ATTRIBUTES SECURITY' ) ;
320: END IF;
321: -- check if this operation is allowed
322: -- on all the changed attributes
323: OE_Blanket_Line_Security.Attributes

Line 365: oe_debug_pub.add( 'CHECK BLANKET LINE ENTITY SECURITY' ) ;

361: OR l_line_rec.operation = OE_GLOBALS.G_OPR_DELETE) -- hashraf pack J
362: THEN
363:
364: IF l_debug_level > 0 THEN
365: oe_debug_pub.add( 'CHECK BLANKET LINE ENTITY SECURITY' ) ;
366: END IF;
367: -- check if this operation is allowed
368: -- on all the changed attributes
369: OE_Blanket_Line_Security.Entity

Line 456: oe_debug_pub.add('delete request1',2);

452:
453: WHEN FND_API.G_EXC_ERROR THEN
454: IF NOT (OE_GLOBALS.G_UI_FLAG) THEN
455: if l_debug_level > 0 then
456: oe_debug_pub.add('delete request1',2);
457: end if;
458: OE_Delayed_Requests_Pvt.Clear_Request
459: (x_return_status => l_return_status);
460: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

Line 473: oe_debug_pub.add('delete request1',2);

469:
470: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
471: IF NOT (OE_GLOBALS.G_UI_FLAG) THEN
472: if l_debug_level > 0 then
473: oe_debug_pub.add('delete request1',2);
474: end if;
475: OE_Delayed_Requests_Pvt.Clear_Request
476: (x_return_status => l_return_status);
477: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

Line 490: oe_debug_pub.add('delete request1',2);

486:
487: WHEN OTHERS THEN
488: IF NOT (OE_GLOBALS.G_UI_FLAG) THEN
489: if l_debug_level > 0 then
490: oe_debug_pub.add('delete request1',2);
491: end if;
492: OE_Delayed_Requests_Pvt.Clear_Request
493: (x_return_status => l_return_status);
494: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

Line 556: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

552: l_org_id NUMBER;
553: l_operating_unit VARCHAR2(240);
554:
555: --
556: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
557: --
558: BEGIN
559: NULL;
560:

Line 568: oe_debug_pub.add('Entering OE_BLANKET_PVT.PROCESS_BLANKET', 1);

564: SAVEPOINT Process_Blanket;
565:
566:
567: if l_debug_level > 0 then
568: oe_debug_pub.add('Entering OE_BLANKET_PVT.PROCESS_BLANKET', 1);
569: end if;
570: -- Standard call to check for call compatibility
571:
572:

Line 604: oe_debug_pub.add('before lines processing', 2);

600:
601: IF l_line_tbl.COUNT > 0 THEN
602:
603: if l_debug_level > 0 then
604: oe_debug_pub.add('before lines processing', 2);
605: end if;
606: I := l_line_tbl.first;
607:
608: While I is not null

Line 635: oe_debug_pub.add('after lines processing', 2);

631:
632: RAISE FND_API.G_EXC_ERROR;
633: END IF;
634: if l_debug_level > 0 then
635: oe_debug_pub.add('after lines processing', 2);
636: end if;
637: END IF;
638: x_line_tbl := l_line_tbl;
639:

Line 658: oe_debug_pub.ADD('Exiting OE_BLANKET_PUB.PROCESS_BLANKET', 1);

654: );
655:
656:
657: if l_debug_level > 0 then
658: oe_debug_pub.ADD('Exiting OE_BLANKET_PUB.PROCESS_BLANKET', 1);
659: end if;
660: EXCEPTION
661:
662: WHEN FND_API.G_EXC_ERROR THEN

Line 665: oe_debug_pub.add('BO: Exiting Process Blanket with Error', 2);

661:
662: WHEN FND_API.G_EXC_ERROR THEN
663:
664: if l_debug_level > 0 then
665: oe_debug_pub.add('BO: Exiting Process Blanket with Error', 2);
666: end if;
667: x_return_status := FND_API.G_RET_STS_ERROR;
668:
669: ROLLBACK TO SAVEPOINT Process_blanket;

Line 682: oe_debug_pub.add('bO: Exiting Process Blanket with Unexpected Error', 2);

678:
679: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
680:
681: if l_debug_level > 0 then
682: oe_debug_pub.add('bO: Exiting Process Blanket with Unexpected Error', 2);
683: end if;
684: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
685:
686: ROLLBACK TO SAVEPOINT Process_Blanket;

Line 698: oe_debug_pub.add('bO: Exiting Process Blanket with others Error', 2);

694: );
695:
696: WHEN OTHERS THEN
697: if l_debug_level > 0 then
698: oe_debug_pub.add('bO: Exiting Process Blanket with others Error', 2);
699: end if;
700:
701: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
702: