DBA Data[Home] [Help]

APPS.OE_OE_HTML_LINE dependencies on OE_GLOBALS

Line 28: l_control_rec OE_GLOBALS.Control_Rec_Type;

24: , p_header_Rec IN OUT NOCOPY OE_ORDER_PUB.Header_Rec_Type
25:
26: )
27: IS
28: l_control_rec OE_GLOBALS.Control_Rec_Type;
29: l_return_status VARCHAR2(1);
30: l_x_header_rec OE_Order_PUB.Header_Rec_Type;
31: l_error NUMBER := 0;
32: --

Line 52: OE_GLOBALS.G_UI_FLAG := TRUE;

48: END IF;
49:
50: l_error := 1;
51: -- Set UI flag to TRUE
52: OE_GLOBALS.G_UI_FLAG := TRUE;
53: OE_GLOBALS.G_HTML_FLAG := TRUE;
54:
55: OE_PORTAL_UTIL.SET_HEADER_CACHE(p_header_Rec);
56: -- Set control flags.

Line 53: OE_GLOBALS.G_HTML_FLAG := TRUE;

49:
50: l_error := 1;
51: -- Set UI flag to TRUE
52: OE_GLOBALS.G_UI_FLAG := TRUE;
53: OE_GLOBALS.G_HTML_FLAG := TRUE;
54:
55: OE_PORTAL_UTIL.SET_HEADER_CACHE(p_header_Rec);
56: -- Set control flags.
57:

Line 196: x_line_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;

192:
193: -- Set Operation to Create
194:
195: l_error := 2;
196: x_line_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;
197:
198: -- Populate line table
199:
200:

Line 251: OE_GLOBALS.G_UI_FLAG := FALSE;

247: x_line_tbl(1).db_flag := FND_API.G_FALSE;
248:
249:
250: -- Re-set the UI flag to FALSE
251: OE_GLOBALS.G_UI_FLAG := FALSE;
252:
253: -- Set return status.
254:
255: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 272: OE_GLOBALS.G_UI_FLAG := FALSE;

268: EXCEPTION
269:
270: WHEN FND_API.G_EXC_ERROR THEN
271:
272: OE_GLOBALS.G_UI_FLAG := FALSE;
273:
274: x_return_status := FND_API.G_RET_STS_ERROR;
275:
276: -- Get message count and data

Line 285: OE_GLOBALS.G_UI_FLAG := FALSE;

281: );
282:
283: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
284:
285: OE_GLOBALS.G_UI_FLAG := FALSE;
286:
287: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
288:
289: -- Get message count and data

Line 298: OE_GLOBALS.G_UI_FLAG := FALSE;

294: );
295:
296: WHEN OTHERS THEN
297:
298: OE_GLOBALS.G_UI_FLAG := FALSE;
299:
300: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
301:
302: IF oe_msg_pub.Check_Msg_Level(oe_msg_pub.G_MSG_LVL_UNEXP_ERROR)

Line 342: l_control_rec OE_GLOBALS.Control_Rec_Type;

338:
339:
340: )
341: IS
342: l_control_rec OE_GLOBALS.Control_Rec_Type;
343: l_return_status VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
344: l_order_date_type_code VARCHAR2(30) := null;
345: l_orig_ship_from_org_id OE_Order_LINES.ship_from_org_id%TYPE;
346: l_x_item_rec_type OE_ORDER_CACHE.item_rec_type; -- OPM 2/JUN/00

Line 364: OE_GLOBALS.G_UI_FLAG := TRUE;

360: oe_debug_pub.add( 'ENTERING Oe_Oe_Html_Line.CHANGE_ATTRIBUTES' , 1 ) ;
361: END IF;
362:
363: -- Set UI flag to TRUE
364: OE_GLOBALS.G_UI_FLAG := TRUE;
365:
366:
367: -- Set control flags.
368:

Line 397: x_line_tbl(1).operation := OE_GLOBALS.G_OPR_UPDATE;

393: x_line_tbl(1):=x_line_Rec;
394: x_old_line_tbl(1):=x_old_line_Rec;
395:
396: IF FND_API.To_Boolean(x_line_tbl(1).db_flag) THEN
397: x_line_tbl(1).operation := OE_GLOBALS.G_OPR_UPDATE;
398: ELSE
399: x_line_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;
400: END IF;
401: x_line_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;

Line 399: x_line_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;

395:
396: IF FND_API.To_Boolean(x_line_tbl(1).db_flag) THEN
397: x_line_tbl(1).operation := OE_GLOBALS.G_OPR_UPDATE;
398: ELSE
399: x_line_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;
400: END IF;
401: x_line_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;
402:
403: -- Populate line table

Line 401: x_line_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;

397: x_line_tbl(1).operation := OE_GLOBALS.G_OPR_UPDATE;
398: ELSE
399: x_line_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;
400: END IF;
401: x_line_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;
402:
403: -- Populate line table
404: -- Validate Scheduling Dates Changes, if any.
405:

Line 457: OE_GLOBALS.G_UI_FLAG := FALSE;

453: END IF;
454:
455:
456: -- Re-set the UI flag to FALSE
457: OE_GLOBALS.G_UI_FLAG := FALSE;
458:
459: -- Set return status.
460:
461: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 481: OE_GLOBALS.G_UI_FLAG := FALSE;

477: EXCEPTION
478:
479: WHEN FND_API.G_EXC_ERROR THEN
480:
481: OE_GLOBALS.G_UI_FLAG := FALSE;
482:
483: x_return_status := FND_API.G_RET_STS_ERROR;
484:
485: -- Get message count and data

Line 494: OE_GLOBALS.G_UI_FLAG := FALSE;

490: );
491:
492: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
493:
494: OE_GLOBALS.G_UI_FLAG := FALSE;
495:
496: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
497:
498: -- Get message count and data

Line 507: OE_GLOBALS.G_UI_FLAG := FALSE;

503: );
504:
505: WHEN OTHERS THEN
506:
507: OE_GLOBALS.G_UI_FLAG := FALSE;
508:
509: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
510:
511: IF oe_msg_pub.Check_Msg_Level(oe_msg_pub.G_MSG_LVL_UNEXP_ERROR)

Line 544: l_control_rec OE_GLOBALS.Control_Rec_Type;

540: IS
541: l_x_line_rec OE_Order_PUB.Line_Rec_Type;
542: l_x_line_tbl OE_Order_PUB.Line_Tbl_Type;
543: l_x_old_line_tbl OE_Order_PUB.Line_Tbl_Type;
544: l_control_rec OE_GLOBALS.Control_Rec_Type;
545: l_return_status VARCHAR2(1);
546: --
547: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
548: --

Line 556: OE_GLOBALS.G_UI_FLAG := TRUE;

552: oe_debug_pub.add( 'ENTERING Oe_Oe_Html_Line.DELETE_ROW' , 1 ) ;
553: END IF;
554:
555: -- Set UI flag to TRUE
556: OE_GLOBALS.G_UI_FLAG := TRUE;
557:
558: -- Set control flags.
559:
560: l_control_rec.controlled_operation := TRUE;

Line 578: l_x_line_rec.operation := OE_GLOBALS.G_OPR_DELETE;

574:
575:
576: -- Set Operation.
577:
578: l_x_line_rec.operation := OE_GLOBALS.G_OPR_DELETE;
579:
580: -- Populate line table
581:
582: l_x_line_tbl(1) := l_x_line_rec;

Line 606: OE_GLOBALS.G_UI_FLAG := FALSE;

602: RAISE FND_API.G_EXC_ERROR;
603: END IF;
604:
605: -- Re-set the UI flag to FALSE
606: OE_GLOBALS.G_UI_FLAG := FALSE;
607:
608: -- Clear line record cache
609:
610:

Line 630: OE_GLOBALS.G_UI_FLAG := FALSE;

626: EXCEPTION
627:
628: WHEN FND_API.G_EXC_ERROR THEN
629: ROLLBACK TO SAVEPOINT Line_Delete;
630: OE_GLOBALS.G_UI_FLAG := FALSE;
631:
632: x_return_status := FND_API.G_RET_STS_ERROR;
633:
634: -- Get message count and data

Line 644: OE_GLOBALS.G_UI_FLAG := FALSE;

640:
641: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
642: ROLLBACK TO SAVEPOINT Line_Delete;
643:
644: OE_GLOBALS.G_UI_FLAG := FALSE;
645:
646: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
647:
648: -- Get message count and data

Line 658: OE_GLOBALS.G_UI_FLAG := FALSE;

654:
655: WHEN OTHERS THEN
656: ROLLBACK TO SAVEPOINT Line_Delete;
657:
658: OE_GLOBALS.G_UI_FLAG := FALSE;
659:
660: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
661:
662: IF oe_msg_pub.Check_Msg_Level(oe_msg_pub.G_MSG_LVL_UNEXP_ERROR)

Line 707: l_x_line_rec.operation := OE_GLOBALS.G_OPR_LOCK; -- not req.

703: -- Load line record
704:
705: l_x_line_rec.lock_control := p_lock_control;
706: l_x_line_rec.line_id := p_line_id;
707: l_x_line_rec.operation := OE_GLOBALS.G_OPR_LOCK; -- not req.
708:
709: --Bug 3025978
710: OE_GLOBALS.G_UI_FLAG := TRUE;
711:

Line 710: OE_GLOBALS.G_UI_FLAG := TRUE;

706: l_x_line_rec.line_id := p_line_id;
707: l_x_line_rec.operation := OE_GLOBALS.G_OPR_LOCK; -- not req.
708:
709: --Bug 3025978
710: OE_GLOBALS.G_UI_FLAG := TRUE;
711:
712: -- Call OE_Line_Util.Lock_Row instead of Oe_Order_Pvt.Lock_order
713: OE_MSG_PUB.initialize;
714: OE_Line_Util.Lock_Row

Line 754: OE_GLOBALS.G_UI_FLAG := FALSE;

750:
751: EXCEPTION
752: WHEN FND_API.G_EXC_ERROR THEN
753:
754: OE_GLOBALS.G_UI_FLAG := FALSE;
755:
756: x_return_status := FND_API.G_RET_STS_ERROR;
757:
758: -- Get message count and data

Line 767: OE_GLOBALS.G_UI_FLAG := FALSE;

763: );
764:
765: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
766:
767: OE_GLOBALS.G_UI_FLAG := FALSE;
768:
769: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
770:
771: -- Get message count and data

Line 823: p_entity_code => OE_GLOBALS.G_ENTITY_LINE

819: OE_MSG_PUB.initialize;
820: x_return_status := FND_API.G_RET_STS_SUCCESS;
821:
822: OE_DELAYED_REQUESTS_PVT.Delete_Reqs_for_Deleted_Entity(
823: p_entity_code => OE_GLOBALS.G_ENTITY_LINE
824: ,p_entity_id => p_line_id
825: ,x_return_status => l_return_status);
826:
827: -- Added for bug 3445778

Line 831: l_new_line_rec.operation := OE_GLOBALS.G_OPR_DELETE;

827: -- Added for bug 3445778
828: oe_debug_pub.add('Executing code for updating global picture, line_id: ' || p_line_id, 1);
829:
830: -- Set the operation on the record so that globals are updated
831: l_new_line_rec.operation := OE_GLOBALS.G_OPR_DELETE;
832: l_new_line_rec.line_id := p_line_id;
833: l_old_line_rec.line_id := p_line_id;
834:
835: OE_ORDER_UTIL.Update_Global_Picture(p_Upd_New_Rec_If_Exists => True,