DBA Data[Home] [Help]

APPS.OE_BLANKET_FORM_CONTROL dependencies on OE_GLOBALS

Line 1091: --p_x_header_rec.operation := OE_GLOBALS.G_OPR_CREATE;

1087: --Clearing the line cache Bug#4878846.
1088: g_line_cache_rec.delete;
1089: l_error := 1;
1090:
1091: --p_x_header_rec.operation := OE_GLOBALS.G_OPR_CREATE;
1092:
1093: OE_Blanket_Util.Default_Attributes (p_x_header_rec,x_return_status);
1094:
1095: IF x_return_status = FND_API.G_RET_STS_ERROR THEN

Line 1172: --p_x_line_rec.operation := OE_GLOBALS.G_OPR_CREATE;

1168:
1169: l_error := 1;
1170: l_old_blanket_line_number := p_x_line_rec.line_number;
1171:
1172: --p_x_line_rec.operation := OE_GLOBALS.G_OPR_CREATE;
1173:
1174: OE_Blanket_Util.Default_Attributes (p_x_line_rec,p_default_from_header,x_return_status);
1175:
1176: IF x_return_status = FND_API.G_RET_STS_ERROR THEN

Line 1256: (OE_GLOBALS.G_OPR_CREATE,OE_GLOBALS.G_OPR_UPDATE) then

1252: --Log delayed requests again ,if delayed requests for the corresponding
1253: --entity doesn't exist because of exception
1254: While ctr <= G_header_Cache_Rec.count loop
1255: If G_header_cache_rec(ctr).operation IN
1256: (OE_GLOBALS.G_OPR_CREATE,OE_GLOBALS.G_OPR_UPDATE) then
1257: IF G_header_cache_rec(ctr).operation =OE_GLOBALS.G_OPR_CREATE
1258: THEN
1259: l_dummy_header_rec := NULL;
1260: ELSIF G_header_cache_rec(ctr).operation

Line 1257: IF G_header_cache_rec(ctr).operation =OE_GLOBALS.G_OPR_CREATE

1253: --entity doesn't exist because of exception
1254: While ctr <= G_header_Cache_Rec.count loop
1255: If G_header_cache_rec(ctr).operation IN
1256: (OE_GLOBALS.G_OPR_CREATE,OE_GLOBALS.G_OPR_UPDATE) then
1257: IF G_header_cache_rec(ctr).operation =OE_GLOBALS.G_OPR_CREATE
1258: THEN
1259: l_dummy_header_rec := NULL;
1260: ELSIF G_header_cache_rec(ctr).operation
1261: =OE_GLOBALS.G_OPR_UPDATE THEN

Line 1261: =OE_GLOBALS.G_OPR_UPDATE THEN

1257: IF G_header_cache_rec(ctr).operation =OE_GLOBALS.G_OPR_CREATE
1258: THEN
1259: l_dummy_header_rec := NULL;
1260: ELSIF G_header_cache_rec(ctr).operation
1261: =OE_GLOBALS.G_OPR_UPDATE THEN
1262: OE_Blanket_util.Query_Header(
1263: p_header_id =>G_header_cache_rec(ctr).header_id,
1264: x_header_rec =>l_dummy_header_Rec,
1265: x_return_status =>l_return_status);

Line 1297: (OE_GLOBALS.G_OPR_CREATE,OE_GLOBALS.G_OPR_UPDATE) then

1293:
1294: ctr := 1;
1295: while ctr <= G_Line_Cache_Rec.count loop
1296: If G_line_cache_rec(ctr).operation IN
1297: (OE_GLOBALS.G_OPR_CREATE,OE_GLOBALS.G_OPR_UPDATE) then
1298: If G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_CREATE
1299: THEN
1300: l_dummy_line_rec := NULL;
1301: ELSIF G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_UPDATE

Line 1298: If G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_CREATE

1294: ctr := 1;
1295: while ctr <= G_Line_Cache_Rec.count loop
1296: If G_line_cache_rec(ctr).operation IN
1297: (OE_GLOBALS.G_OPR_CREATE,OE_GLOBALS.G_OPR_UPDATE) then
1298: If G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_CREATE
1299: THEN
1300: l_dummy_line_rec := NULL;
1301: ELSIF G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_UPDATE
1302: THEN

Line 1301: ELSIF G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_UPDATE

1297: (OE_GLOBALS.G_OPR_CREATE,OE_GLOBALS.G_OPR_UPDATE) then
1298: If G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_CREATE
1299: THEN
1300: l_dummy_line_rec := NULL;
1301: ELSIF G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_UPDATE
1302: THEN
1303: l_dummy_line_rec := OE_Blanket_util.Query_Row(p_line_id => G_LIne_cache_rec(ctr).line_id);
1304: END IF;
1305: I := oe_delayed_requests_pvt.g_delayed_requests.first;

Line 1347: If G_header_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_UPDATE then

1343: While ctr <= G_header_Cache_Rec.count loop
1344: oe_debug_pub.add('Operation IS: '||G_header_cache_rec(ctr).operation);
1345: x_return_status := FND_API.G_RET_STS_SUCCESS;
1346:
1347: If G_header_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_UPDATE then
1348: oe_debug_pub.add('Operation in Update Condi: '||G_header_cache_rec(ctr).operation);
1349: OE_Blanket_Util.Update_Row(G_header_Cache_Rec(ctr),x_return_status);
1350: ElsIf G_header_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_CREATE then
1351: oe_debug_pub.add('Operation IN Insert Condi: '||G_header_cache_rec(ctr).operation);

Line 1350: ElsIf G_header_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_CREATE then

1346:
1347: If G_header_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_UPDATE then
1348: oe_debug_pub.add('Operation in Update Condi: '||G_header_cache_rec(ctr).operation);
1349: OE_Blanket_Util.Update_Row(G_header_Cache_Rec(ctr),x_return_status);
1350: ElsIf G_header_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_CREATE then
1351: oe_debug_pub.add('Operation IN Insert Condi: '||G_header_cache_rec(ctr).operation);
1352: OE_Blanket_Util.Insert_Row(G_header_Cache_Rec(ctr),x_return_status);
1353:
1354: --Workflow changes for 11i10.

Line 1361: ElsIf G_header_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_DELETE then

1357: -- Where we are calling directly to accomaidate both for backend creation of BSA and
1358: -- Through BSA UI.
1359:
1360: -- hashraf ... start of pack J
1361: ElsIf G_header_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_DELETE then
1362: oe_debug_pub.add('Operation IS Delete Condi: '||G_header_cache_rec(ctr).operation);
1363: OE_Blanket_Util.Delete_Row(p_header_id => G_header_Cache_Rec(ctr).header_id,
1364: x_return_status => x_return_status);
1365: -- hashraf ... end of pack J

Line 1398: If G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_UPDATE then

1394: ctr := 1;
1395:
1396: while ctr <= G_Line_Cache_Rec.count loop
1397:
1398: If G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_UPDATE then
1399: oe_debug_pub.add('Process_object for Lines update', 4);
1400: OE_Blanket_Util.Update_Row(G_line_Cache_Rec(ctr),x_return_status);
1401: ElsIf G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_CREATE then
1402: oe_debug_pub.add('Process_object for Lines Insert', 5);

Line 1401: ElsIf G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_CREATE then

1397:
1398: If G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_UPDATE then
1399: oe_debug_pub.add('Process_object for Lines update', 4);
1400: OE_Blanket_Util.Update_Row(G_line_Cache_Rec(ctr),x_return_status);
1401: ElsIf G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_CREATE then
1402: oe_debug_pub.add('Process_object for Lines Insert', 5);
1403: OE_Blanket_Util.Insert_Row(G_line_Cache_Rec(ctr),x_return_status);
1404: -- hashraf ... start of pack J
1405: ElsIf G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_DELETE then

Line 1405: ElsIf G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_DELETE then

1401: ElsIf G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_CREATE then
1402: oe_debug_pub.add('Process_object for Lines Insert', 5);
1403: OE_Blanket_Util.Insert_Row(G_line_Cache_Rec(ctr),x_return_status);
1404: -- hashraf ... start of pack J
1405: ElsIf G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_DELETE then
1406: oe_debug_pub.add('Process_object for Lines Delete', 6);
1407: OE_Blanket_Util.Delete_Row(p_line_id => G_line_Cache_Rec(ctr).line_id, x_return_status => x_return_status);
1408: -- hashraf ... end of pack J
1409: End if;

Line 1528: if p_header_rec.operation = OE_GLOBALS.G_OPR_CREATE then

1524: IF p_column_name IS NOT NULL THEN
1525:
1526: OE_BLANKET_UTIL.API_Rec_To_Rowtype_Rec
1527: (p_header_rec,l_rowtype_rec);
1528: if p_header_rec.operation = OE_GLOBALS.G_OPR_CREATE then
1529: l_operation := OE_PC_GLOBALS.CREATE_OP;
1530: elsif p_header_rec.operation = OE_GLOBALS.G_OPR_UPDATE then
1531: l_operation := OE_PC_GLOBALS.UPDATE_OP;
1532: end if;

Line 1530: elsif p_header_rec.operation = OE_GLOBALS.G_OPR_UPDATE then

1526: OE_BLANKET_UTIL.API_Rec_To_Rowtype_Rec
1527: (p_header_rec,l_rowtype_rec);
1528: if p_header_rec.operation = OE_GLOBALS.G_OPR_CREATE then
1529: l_operation := OE_PC_GLOBALS.CREATE_OP;
1530: elsif p_header_rec.operation = OE_GLOBALS.G_OPR_UPDATE then
1531: l_operation := OE_PC_GLOBALS.UPDATE_OP;
1532: end if;
1533:
1534: -- Initialize security global record

Line 2386: RETURN OE_GLOBALS.G_OPR_CREATE;

2382: ----------------------------------------------------------
2383: RETURN varchar2
2384: IS
2385: BEGIN
2386: RETURN OE_GLOBALS.G_OPR_CREATE;
2387: END;
2388:
2389: ----------------------------------------------------------
2390: FUNCTION Get_Opr_Update

Line 2395: RETURN OE_GLOBALS.G_OPR_UPDATE;

2391: ----------------------------------------------------------
2392: RETURN varchar2
2393: IS
2394: BEGIN
2395: RETURN OE_GLOBALS.G_OPR_UPDATE;
2396: END;
2397:
2398: ----------------------------------------------------------
2399: FUNCTION Get_Opr_Delete

Line 2405: RETURN OE_GLOBALS.G_OPR_DELETE;

2401: RETURN varchar2
2402: IS
2403: BEGIN
2404: -- hashraf new function for pack J
2405: RETURN OE_GLOBALS.G_OPR_DELETE;
2406: END;
2407:
2408: ----------------------------------------------------------
2409: FUNCTION chk_for_header_release