DBA Data[Home] [Help]

APPS.OE_PORTAL_HEADER dependencies on OE_GLOBALS

Line 113: l_control_rec OE_GLOBALS.Control_Rec_Type;

109: ) IS
110: l_header_rec OE_Order_PUB.Header_Rec_Type;
111: l_header_val_rec OE_Order_PUB.Header_Val_Rec_Type;
112: l_old_header_rec OE_Order_PUB.Header_Rec_Type;
113: l_control_rec OE_GLOBALS.Control_Rec_Type;
114: l_return_status VARCHAR2(1);
115: --
116: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
117: --

Line 128: OE_GLOBALS.G_UI_FLAG := TRUE;

124: oe_debug_pub.add( 'ESHAS TEST' ) ;
125: END IF;
126:
127: -- Set the UI flag
128: OE_GLOBALS.G_UI_FLAG := TRUE;
129:
130: -- Set control flags.
131:
132: l_control_rec.controlled_operation := TRUE;

Line 214: l_header_rec.operation := OE_GLOBALS.G_OPR_CREATE;

210: l_header_rec.tp_attribute15 := NULL;
211:
212: -- Set Operation to Create
213:
214: l_header_rec.operation := OE_GLOBALS.G_OPR_CREATE;
215:
216: -- Call Oe_Order_Pvt.Header
217:
218: Oe_Order_Pvt.Header

Line 253: OE_GLOBALS.G_UI_FLAG := FALSE;

249: );
250:
251:
252: -- Re-set the UI flag to FALSE
253: OE_GLOBALS.G_UI_FLAG := FALSE;
254:
255: -- Set return status.
256:
257: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 319: OE_GLOBALS.G_UI_FLAG := FALSE;

315: EXCEPTION
316:
317: WHEN FND_API.G_EXC_ERROR THEN
318:
319: OE_GLOBALS.G_UI_FLAG := FALSE;
320:
321: x_return_status := FND_API.G_RET_STS_ERROR;
322:
323: -- Get message count and data

Line 331: OE_GLOBALS.G_UI_FLAG := FALSE;

327: , p_data => x_msg_data
328: );
329:
330: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
331: OE_GLOBALS.G_UI_FLAG := FALSE;
332:
333: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
334:
335: -- Get message count and data

Line 344: OE_GLOBALS.G_UI_FLAG := FALSE;

340: );
341:
342: WHEN OTHERS THEN
343:
344: OE_GLOBALS.G_UI_FLAG := FALSE;
345:
346: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
347:
348: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

Line 479: l_control_rec OE_GLOBALS.Control_Rec_Type;

475: l_db_record BOOLEAN;
476: l_cascade_flag BOOLEAN;
477: l_lock_control NUMBER;
478: l_x_old_header_rec OE_Order_PUB.Header_Rec_Type;
479: l_control_rec OE_GLOBALS.Control_Rec_Type;
480: l_return_status VARCHAR2(1);
481: l_x_header_rec OE_Order_PUB.Header_Rec_Type;
482: l_header_val_rec OE_Order_Pub.Header_Val_Rec_Type;
483: --

Line 503: OE_GLOBALS.G_UI_FLAG := TRUE;

499: l_db_record := FALSE;
500: END IF;
501:
502: -- Set the UI flag
503: OE_GLOBALS.G_UI_FLAG := TRUE;
504:
505: -- Set control flags.
506:
507: l_control_rec.controlled_operation := TRUE;

Line 570: l_x_header_rec.operation := OE_GLOBALS.G_OPR_UPDATE;

566: end if;
567: -- Set Operation.
568:
569: IF FND_API.To_Boolean(l_x_header_rec.db_flag) THEN
570: l_x_header_rec.operation := OE_GLOBALS.G_OPR_UPDATE;
571:
572: /* Start Audit Trail - if it is update, set reason,comments */
573: l_x_header_rec.change_reason := 'SYSTEM';
574: /* End Audit Trail */

Line 576: l_x_header_rec.operation := OE_GLOBALS.G_OPR_CREATE;

572: /* Start Audit Trail - if it is update, set reason,comments */
573: l_x_header_rec.change_reason := 'SYSTEM';
574: /* End Audit Trail */
575: ELSE
576: l_x_header_rec.operation := OE_GLOBALS.G_OPR_CREATE;
577: END IF;
578:
579: -- Call Oe_Order_Pvt.Header
580:

Line 622: l_cascade_flag := OE_GLOBALS.G_CASCADING_REQUEST_LOGGED;

618: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
619: RAISE FND_API.G_EXC_ERROR;
620: END IF;
621:
622: l_cascade_flag := OE_GLOBALS.G_CASCADING_REQUEST_LOGGED;
623:
624:
625: /* IF l_cascade_flag THEN
626: x_cascade_flag := 'Y';

Line 708: OE_GLOBALS.G_UI_FLAG := FALSE;

704: -- Keep track of performed operations.
705: -- l_x_old_header_rec.operation := l_x_header_rec.operation;
706:
707: -- Re-set the UI flag to FALSE
708: OE_GLOBALS.G_UI_FLAG := FALSE;
709:
710: -- Set return status.
711:
712: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 756: OE_GLOBALS.G_UI_FLAG := FALSE;

752: EXCEPTION
753:
754: WHEN FND_API.G_EXC_ERROR THEN
755:
756: OE_GLOBALS.G_UI_FLAG := FALSE;
757:
758: ROLLBACK TO SAVEPOINT Header_Validate_And_Write;
759:
760: x_return_status := FND_API.G_RET_STS_ERROR;

Line 771: OE_GLOBALS.G_UI_FLAG := FALSE;

767: );
768:
769: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
770:
771: OE_GLOBALS.G_UI_FLAG := FALSE;
772:
773: ROLLBACK TO SAVEPOINT Header_Validate_And_Write;
774:
775: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

Line 786: OE_GLOBALS.G_UI_FLAG := FALSE;

782: );
783:
784: WHEN OTHERS THEN
785:
786: OE_GLOBALS.G_UI_FLAG := FALSE;
787:
788: ROLLBACK TO SAVEPOINT Header_Validate_And_Write;
789:
790: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

Line 821: l_control_rec OE_GLOBALS.Control_Rec_Type;

817: , p_header_id IN NUMBER
818: )
819: IS
820: l_x_old_header_rec OE_Order_PUB.Header_Rec_Type;
821: l_control_rec OE_GLOBALS.Control_Rec_Type;
822: l_return_status VARCHAR2(1);
823: l_x_header_rec OE_Order_PUB.Header_Rec_Type;
824: --
825: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

Line 834: OE_GLOBALS.G_UI_FLAG := TRUE;

830: oe_debug_pub.add( 'ENTERING OE_OE_FORM_HEADER.DELETE_ROW' , 1 ) ;
831: END IF;
832:
833: -- Set the UI flag
834: OE_GLOBALS.G_UI_FLAG := TRUE;
835:
836: -- Set control flags.
837:
838: l_control_rec.controlled_operation := TRUE;

Line 863: l_x_header_rec.operation := OE_GLOBALS.G_OPR_DELETE;

859: );
860:
861: -- Set Operation.
862:
863: l_x_header_rec.operation := OE_GLOBALS.G_OPR_DELETE;
864:
865: -- Call Oe_Order_Pvt.Header
866:
867: Oe_Order_Pvt.Header

Line 881: OE_GLOBALS.G_UI_FLAG := TRUE;

877: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
878:
879:
880: -- Set the UI flag
881: OE_GLOBALS.G_UI_FLAG := TRUE;
882:
883: -- Set control flags.
884:
885: l_control_rec.controlled_operation := TRUE;

Line 904: l_x_header_rec.operation := OE_GLOBALS.G_OPR_UPDATE;

900: l_x_old_header_rec := OE_ORDER_PUB.G_MISS_HEADER_REC;
901: l_x_header_rec.cancelled_flag := 'Y';
902: -- Set Operation.
903:
904: l_x_header_rec.operation := OE_GLOBALS.G_OPR_UPDATE;
905:
906: -- Call Oe_Order_Pvt.Header
907:
908: Oe_Order_Pvt.Header

Line 933: OE_GLOBALS.G_UI_FLAG := FALSE;

929:
930: Clear_header;
931:
932: -- Re-set the UI flag to FALSE
933: OE_GLOBALS.G_UI_FLAG := FALSE;
934:
935: -- Set return status.
936:
937: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 954: OE_GLOBALS.G_UI_FLAG := FALSE;

950: EXCEPTION
951:
952: WHEN FND_API.G_EXC_ERROR THEN
953:
954: OE_GLOBALS.G_UI_FLAG := FALSE;
955:
956: x_return_status := FND_API.G_RET_STS_ERROR;
957:
958: -- Get message count and data

Line 967: OE_GLOBALS.G_UI_FLAG := FALSE;

963: );
964:
965: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
966:
967: OE_GLOBALS.G_UI_FLAG := FALSE;
968:
969: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
970:
971: -- Get message count and data

Line 980: OE_GLOBALS.G_UI_FLAG := FALSE;

976: );
977:
978: WHEN OTHERS THEN
979:
980: OE_GLOBALS.G_UI_FLAG := FALSE;
981:
982: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
983:
984: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

Line 1075: OE_GLOBALS.G_UI_FLAG := FALSE;

1071: EXCEPTION
1072:
1073: WHEN FND_API.G_EXC_ERROR THEN
1074:
1075: OE_GLOBALS.G_UI_FLAG := FALSE;
1076:
1077: x_return_status := FND_API.G_RET_STS_ERROR;
1078:
1079: -- Get message count and data

Line 1088: OE_GLOBALS.G_UI_FLAG := FALSE;

1084: );
1085:
1086: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1087:
1088: OE_GLOBALS.G_UI_FLAG := FALSE;
1089:
1090: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1091:
1092: -- Get message count and data

Line 1101: OE_GLOBALS.G_UI_FLAG := FALSE;

1097: );
1098:
1099: WHEN OTHERS THEN
1100:
1101: OE_GLOBALS.G_UI_FLAG := FALSE;
1102:
1103: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1104:
1105: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)