DBA Data[Home] [Help]

APPS.FND_CONC_REQ_DETAIL dependencies on FND_GLOBAL

Line 20: -- if request_id is not given, get it from FND_GLOBAL

16: -- get_all_req_detail_reqid
17: --
18: -- Purpose
19: -- get request detail based on request_id
20: -- if request_id is not given, get it from FND_GLOBAL
21: -- if request_id is unobtainable, exit FALSE
22: -- sets the global record for all columns of fnd_cocurrent_requests
23: --
24: -- Note

Line 33: -- if request_id is not given, find it in fnd_global

29: v_status boolean;
30:
31: begin
32: --
33: -- if request_id is not given, find it in fnd_global
34: -- if that fails, return false and exit
35: --
36: if (p_request_id < 1 or p_request_id IS NULL) then
37: v_request_id := FND_GLOBAL.conc_request_id;

Line 37: v_request_id := FND_GLOBAL.conc_request_id;

33: -- if request_id is not given, find it in fnd_global
34: -- if that fails, return false and exit
35: --
36: if (p_request_id < 1 or p_request_id IS NULL) then
37: v_request_id := FND_GLOBAL.conc_request_id;
38: if (v_request_id < 1 or v_request_id IS NULL) then
39: return(FALSE);
40: end if;
41: else

Line 81: -- if request_id is not given, obtain from fnd_global

77: -- get_ALL_REQUEST_INFO
78: --
79: -- Purpose
80: -- get all information of a request based on request_id
81: -- if request_id is not given, obtain from fnd_global
82: --
83: -- Note
84: -- returns NULL on failure
85: --

Line 106: -- if request_id is not given, obtain from fnd_global

102: -- get_REQUEST_ID
103: --
104: -- Purpose
105: -- get REQUEST_ID of a request based on request_id
106: -- if request_id is not given, obtain from fnd_global
107: --
108: -- Note
109: -- returns NULL on failure
110: --

Line 131: -- if request_id is not given, obtain from fnd_global

127: -- get_LAST_UPDATE_DATE
128: --
129: -- Purpose
130: -- get LAST_UPDATE_DATE of a request based on request_id
131: -- if request_id is not given, obtain from fnd_global
132: --
133: -- Note
134: -- returns NULL on failure
135: --

Line 156: -- if request_id is not given, obtain from fnd_global

152: -- get_LAST_UPDATED_BY
153: --
154: -- Purpose
155: -- get LAST_UPDATED_BY of a request based on request_id
156: -- if request_id is not given, obtain from fnd_global
157: --
158: -- Note
159: -- returns NULL on failure
160: --

Line 181: -- if request_id is not given, obtain from fnd_global

177: -- get_REQUEST_DATE
178: --
179: -- Purpose
180: -- get REQUEST_DATE of a request based on request_id
181: -- if request_id is not given, obtain from fnd_global
182: --
183: -- Note
184: -- returns NULL on failure
185: --

Line 206: -- if request_id is not given, obtain from fnd_global

202: -- get_REQUESTED_BY
203: --
204: -- Purpose
205: -- get REQUESTED_BY of a request based on request_id
206: -- if request_id is not given, obtain from fnd_global
207: --
208: -- Note
209: -- returns NULL on failure
210: --

Line 231: -- if request_id is not given, obtain from fnd_global

227: -- get_PHASE_CODE
228: --
229: -- Purpose
230: -- get PHASE_CODE of a request based on request_id
231: -- if request_id is not given, obtain from fnd_global
232: --
233: -- Note
234: -- returns NULL on failure
235: --

Line 256: -- if request_id is not given, obtain from fnd_global

252: -- get_STATUS_CODE
253: --
254: -- Purpose
255: -- get STATUS_CODE of a request based on request_id
256: -- if request_id is not given, obtain from fnd_global
257: --
258: -- Note
259: -- returns NULL on failure
260: --

Line 281: -- if request_id is not given, obtain from fnd_global

277: -- get_PRIORITY_REQUEST_ID
278: --
279: -- Purpose
280: -- get PRIORITY_REQUEST_ID of a request based on request_id
281: -- if request_id is not given, obtain from fnd_global
282: --
283: -- Note
284: -- returns NULL on failure
285: --

Line 306: -- if request_id is not given, obtain from fnd_global

302: -- get_PRIORITY
303: --
304: -- Purpose
305: -- get PRIORITY of a request based on request_id
306: -- if request_id is not given, obtain from fnd_global
307: --
308: -- Note
309: -- returns NULL on failure
310: --

Line 331: -- if request_id is not given, obtain from fnd_global

327: -- get_REQUESTED_START_DATE
328: --
329: -- Purpose
330: -- get REQUESTED_START_DATE of a request based on request_id
331: -- if request_id is not given, obtain from fnd_global
332: --
333: -- Note
334: -- returns NULL on failure
335: --

Line 356: -- if request_id is not given, obtain from fnd_global

352: -- get_HOLD_FLAG
353: --
354: -- Purpose
355: -- get HOLD_FLAG of a request based on request_id
356: -- if request_id is not given, obtain from fnd_global
357: --
358: -- Note
359: -- returns NULL on failure
360: --

Line 381: -- if request_id is not given, obtain from fnd_global

377: -- get_ENFORCE_SERIALITY_FLAG
378: --
379: -- Purpose
380: -- get ENFORCE_SERIALITY_FLAG of a request based on request_id
381: -- if request_id is not given, obtain from fnd_global
382: --
383: -- Note
384: -- returns NULL on failure
385: --

Line 406: -- if request_id is not given, obtain from fnd_global

402: -- get_SINGLE_THREAD_FLAG
403: --
404: -- Purpose
405: -- get SINGLE_THREAD_FLAG of a request based on request_id
406: -- if request_id is not given, obtain from fnd_global
407: --
408: -- Note
409: -- returns NULL on failure
410: --

Line 431: -- if request_id is not given, obtain from fnd_global

427: -- get_HAS_SUB_REQUEST
428: --
429: -- Purpose
430: -- get HAS_SUB_REQUEST of a request based on request_id
431: -- if request_id is not given, obtain from fnd_global
432: --
433: -- Note
434: -- returns NULL on failure
435: --

Line 456: -- if request_id is not given, obtain from fnd_global

452: -- get_IS_SUB_REQUEST
453: --
454: -- Purpose
455: -- get IS_SUB_REQUEST of a request based on request_id
456: -- if request_id is not given, obtain from fnd_global
457: --
458: -- Note
459: -- returns NULL on failure
460: --

Line 481: -- if request_id is not given, obtain from fnd_global

477: -- get_IMPLICIT_CODE
478: --
479: -- Purpose
480: -- get IMPLICIT_CODE of a request based on request_id
481: -- if request_id is not given, obtain from fnd_global
482: --
483: -- Note
484: -- returns NULL on failure
485: --

Line 506: -- if request_id is not given, obtain from fnd_global

502: -- get_UPDATE_PROTECTED
503: --
504: -- Purpose
505: -- get UPDATE_PROTECTED of a request based on request_id
506: -- if request_id is not given, obtain from fnd_global
507: --
508: -- Note
509: -- returns NULL on failure
510: --

Line 531: -- if request_id is not given, obtain from fnd_global

527: -- get_QUEUE_METHOD_CODE
528: --
529: -- Purpose
530: -- get QUEUE_METHOD_CODE of a request based on request_id
531: -- if request_id is not given, obtain from fnd_global
532: --
533: -- Note
534: -- returns NULL on failure
535: --

Line 556: -- if request_id is not given, obtain from fnd_global

552: -- get_ARGUMENT_INPUT_METHOD_CODE
553: --
554: -- Purpose
555: -- get ARGUMENT_INPUT_METHOD_CODE of a request based on request_id
556: -- if request_id is not given, obtain from fnd_global
557: --
558: -- Note
559: -- returns NULL on failure
560: --

Line 581: -- if request_id is not given, obtain from fnd_global

577: -- get_ORACLE_ID
578: --
579: -- Purpose
580: -- get ORACLE_ID of a request based on request_id
581: -- if request_id is not given, obtain from fnd_global
582: --
583: -- Note
584: -- returns NULL on failure
585: --

Line 606: -- if request_id is not given, obtain from fnd_global

602: -- get_PROGRAM_APPLICATION_ID
603: --
604: -- Purpose
605: -- get PROGRAM_APPLICATION_ID of a request based on request_id
606: -- if request_id is not given, obtain from fnd_global
607: --
608: -- Note
609: -- returns NULL on failure
610: --

Line 631: -- if request_id is not given, obtain from fnd_global

627: -- get_CONCURRENT_PROGRAM_ID
628: --
629: -- Purpose
630: -- get CONCURRENT_PROGRAM_ID of a request based on request_id
631: -- if request_id is not given, obtain from fnd_global
632: --
633: -- Note
634: -- returns NULL on failure
635: --

Line 656: -- if request_id is not given, obtain from fnd_global

652: -- get_RESPONSIB_APPLICATION_ID
653: --
654: -- Purpose
655: -- get RESPONSIBILITY_APPLICATION_ID of a request based on request_id
656: -- if request_id is not given, obtain from fnd_global
657: --
658: -- Note
659: -- returns NULL on failure
660: --

Line 681: -- if request_id is not given, obtain from fnd_global

677: -- get_RESPONSIBILITY_ID
678: --
679: -- Purpose
680: -- get RESPONSIBILITY_ID of a request based on request_id
681: -- if request_id is not given, obtain from fnd_global
682: --
683: -- Note
684: -- returns NULL on failure
685: --

Line 706: -- if request_id is not given, obtain from fnd_global

702: -- get_NUMBER_OF_ARGUMENTS
703: --
704: -- Purpose
705: -- get NUMBER_OF_ARGUMENTS of a request based on request_id
706: -- if request_id is not given, obtain from fnd_global
707: --
708: -- Note
709: -- returns NULL on failure
710: --

Line 731: -- if request_id is not given, obtain from fnd_global

727: -- get_NUMBER_OF_COPIES
728: --
729: -- Purpose
730: -- get NUMBER_OF_COPIES of a request based on request_id
731: -- if request_id is not given, obtain from fnd_global
732: --
733: -- Note
734: -- returns NULL on failure
735: --

Line 756: -- if request_id is not given, obtain from fnd_global

752: -- get_SAVE_OUTPUT_FLAG
753: --
754: -- Purpose
755: -- get SAVE_OUTPUT_FLAG of a request based on request_id
756: -- if request_id is not given, obtain from fnd_global
757: --
758: -- Note
759: -- returns NULL on failure
760: --

Line 781: -- if request_id is not given, obtain from fnd_global

777: -- get_NLS_COMPLIANT
778: --
779: -- Purpose
780: -- get NLS_COMPLIANT of a request based on request_id
781: -- if request_id is not given, obtain from fnd_global
782: --
783: -- Note
784: -- returns NULL on failure
785: --

Line 806: -- if request_id is not given, obtain from fnd_global

802: -- get_LAST_UPDATE_LOGIN
803: --
804: -- Purpose
805: -- get LAST_UPDATE_LOGIN of a request based on request_id
806: -- if request_id is not given, obtain from fnd_global
807: --
808: -- Note
809: -- returns NULL on failure
810: --

Line 831: -- if request_id is not given, obtain from fnd_global

827: -- get_NLS_LANGUAGE
828: --
829: -- Purpose
830: -- get NLS_LANGUAGE of a request based on request_id
831: -- if request_id is not given, obtain from fnd_global
832: --
833: -- Note
834: -- returns NULL on failure
835: --

Line 856: -- if request_id is not given, obtain from fnd_global

852: -- get_NLS_TERRITORY
853: --
854: -- Purpose
855: -- get NLS_TERRITORY of a request based on request_id
856: -- if request_id is not given, obtain from fnd_global
857: --
858: -- Note
859: -- returns NULL on failure
860: --

Line 881: -- if request_id is not given, obtain from fnd_global

877: -- get_PRINTER
878: --
879: -- Purpose
880: -- get PRINTER of a request based on request_id
881: -- if request_id is not given, obtain from fnd_global
882: --
883: -- Note
884: -- returns NULL on failure
885: --

Line 906: -- if request_id is not given, obtain from fnd_global

902: -- get_PRINT_STYLE
903: --
904: -- Purpose
905: -- get PRINT_STYLE of a request based on request_id
906: -- if request_id is not given, obtain from fnd_global
907: --
908: -- Note
909: -- returns NULL on failure
910: --

Line 931: -- if request_id is not given, obtain from fnd_global

927: -- get_PRINT_GROUP
928: --
929: -- Purpose
930: -- get PRINT_GROUP of a request based on request_id
931: -- if request_id is not given, obtain from fnd_global
932: --
933: -- Note
934: -- returns NULL on failure
935: --

Line 956: -- if request_id is not given, obtain from fnd_global

952: -- get_REQ_CLASS_APPLICATION_ID
953: --
954: -- Purpose
955: -- get REQUEST_CLASS_APPLICATION_ID of a request based on request_id
956: -- if request_id is not given, obtain from fnd_global
957: --
958: -- Note
959: -- returns NULL on failure
960: --

Line 981: -- if request_id is not given, obtain from fnd_global

977: -- get_CONC_REQUEST_CLASS_ID
978: --
979: -- Purpose
980: -- get CONCURRENT_REQUEST_CLASS_ID of a request based on request_id
981: -- if request_id is not given, obtain from fnd_global
982: --
983: -- Note
984: -- returns NULL on failure
985: --

Line 1006: -- if request_id is not given, obtain from fnd_global

1002: -- get_PARENT_REQUEST_ID
1003: --
1004: -- Purpose
1005: -- get PARENT_REQUEST_ID of a request based on request_id
1006: -- if request_id is not given, obtain from fnd_global
1007: --
1008: -- Note
1009: -- returns NULL on failure
1010: --

Line 1031: -- if request_id is not given, obtain from fnd_global

1027: -- get_CONC_LOGIN_ID
1028: --
1029: -- Purpose
1030: -- get CONC_LOGIN_ID of a request based on request_id
1031: -- if request_id is not given, obtain from fnd_global
1032: --
1033: -- Note
1034: -- returns NULL on failure
1035: --

Line 1056: -- if request_id is not given, obtain from fnd_global

1052: -- get_LANGUAGE_ID
1053: --
1054: -- Purpose
1055: -- get LANGUAGE_ID of a request based on request_id
1056: -- if request_id is not given, obtain from fnd_global
1057: --
1058: -- Note
1059: -- returns NULL on failure
1060: --

Line 1081: -- if request_id is not given, obtain from fnd_global

1077: -- get_DESCRIPTION
1078: --
1079: -- Purpose
1080: -- get DESCRIPTION of a request based on request_id
1081: -- if request_id is not given, obtain from fnd_global
1082: --
1083: -- Note
1084: -- returns NULL on failure
1085: --

Line 1106: -- if request_id is not given, obtain from fnd_global

1102: -- get_REQ_INFORMATION
1103: --
1104: -- Purpose
1105: -- get REQ_INFORMATION of a request based on request_id
1106: -- if request_id is not given, obtain from fnd_global
1107: --
1108: -- Note
1109: -- returns NULL on failure
1110: --

Line 1131: -- if request_id is not given, obtain from fnd_global

1127: -- get_RESUBMIT_INTERVAL
1128: --
1129: -- Purpose
1130: -- get RESUBMIT_INTERVAL of a request based on request_id
1131: -- if request_id is not given, obtain from fnd_global
1132: --
1133: -- Note
1134: -- returns NULL on failure
1135: --

Line 1156: -- if request_id is not given, obtain from fnd_global

1152: -- get_RESUB_INTERVAL_UNIT_CODE
1153: --
1154: -- Purpose
1155: -- get RESUBMIT_INTERVAL_UNIT_CODE of a request based on request_id
1156: -- if request_id is not given, obtain from fnd_global
1157: --
1158: -- Note
1159: -- returns NULL on failure
1160: --

Line 1181: -- if request_id is not given, obtain from fnd_global

1177: -- get_RESUB_INTERVAL_TYPE_CODE
1178: --
1179: -- Purpose
1180: -- get RESUBMIT_INTERVAL_TYPE_CODE of a request based on request_id
1181: -- if request_id is not given, obtain from fnd_global
1182: --
1183: -- Note
1184: -- returns NULL on failure
1185: --

Line 1206: -- if request_id is not given, obtain from fnd_global

1202: -- get_RESUBMIT_TIME
1203: --
1204: -- Purpose
1205: -- get RESUBMIT_TIME of a request based on request_id
1206: -- if request_id is not given, obtain from fnd_global
1207: --
1208: -- Note
1209: -- returns NULL on failure
1210: --

Line 1231: -- if request_id is not given, obtain from fnd_global

1227: -- get_RESUBMIT_END_DATE
1228: --
1229: -- Purpose
1230: -- get RESUBMIT_END_DATE of a request based on request_id
1231: -- if request_id is not given, obtain from fnd_global
1232: --
1233: -- Note
1234: -- returns NULL on failure
1235: --

Line 1256: -- if request_id is not given, obtain from fnd_global

1252: -- get_RESUBMITTED
1253: --
1254: -- Purpose
1255: -- get RESUBMITTED of a request based on request_id
1256: -- if request_id is not given, obtain from fnd_global
1257: --
1258: -- Note
1259: -- returns NULL on failure
1260: --

Line 1281: -- if request_id is not given, obtain from fnd_global

1277: -- get_CONTROLLING_MANAGER
1278: --
1279: -- Purpose
1280: -- get CONTROLLING_MANAGER of a request based on request_id
1281: -- if request_id is not given, obtain from fnd_global
1282: --
1283: -- Note
1284: -- returns NULL on failure
1285: --

Line 1306: -- if request_id is not given, obtain from fnd_global

1302: -- get_ACTUAL_START_DATE
1303: --
1304: -- Purpose
1305: -- get ACTUAL_START_DATE of a request based on request_id
1306: -- if request_id is not given, obtain from fnd_global
1307: --
1308: -- Note
1309: -- returns NULL on failure
1310: --

Line 1331: -- if request_id is not given, obtain from fnd_global

1327: -- get_ACTUAL_COMPLETION_DATE
1328: --
1329: -- Purpose
1330: -- get ACTUAL_COMPLETION_DATE of a request based on request_id
1331: -- if request_id is not given, obtain from fnd_global
1332: --
1333: -- Note
1334: -- returns NULL on failure
1335: --

Line 1356: -- if request_id is not given, obtain from fnd_global

1352: -- get_COMPLETION_TEXT
1353: --
1354: -- Purpose
1355: -- get COMPLETION_TEXT of a request based on request_id
1356: -- if request_id is not given, obtain from fnd_global
1357: --
1358: -- Note
1359: -- returns NULL on failure
1360: --

Line 1381: -- if request_id is not given, obtain from fnd_global

1377: -- get_OUTCOME_PRODUCT
1378: --
1379: -- Purpose
1380: -- get OUTCOME_PRODUCT of a request based on request_id
1381: -- if request_id is not given, obtain from fnd_global
1382: --
1383: -- Note
1384: -- returns NULL on failure
1385: --

Line 1406: -- if request_id is not given, obtain from fnd_global

1402: -- get_OUTCOME_CODE
1403: --
1404: -- Purpose
1405: -- get OUTCOME_CODE of a request based on request_id
1406: -- if request_id is not given, obtain from fnd_global
1407: --
1408: -- Note
1409: -- returns NULL on failure
1410: --

Line 1431: -- if request_id is not given, obtain from fnd_global

1427: -- get_CPU_SECONDS
1428: --
1429: -- Purpose
1430: -- get CPU_SECONDS of a request based on request_id
1431: -- if request_id is not given, obtain from fnd_global
1432: --
1433: -- Note
1434: -- returns NULL on failure
1435: --

Line 1456: -- if request_id is not given, obtain from fnd_global

1452: -- get_LOGICAL_IOS
1453: --
1454: -- Purpose
1455: -- get LOGICAL_IOS of a request based on request_id
1456: -- if request_id is not given, obtain from fnd_global
1457: --
1458: -- Note
1459: -- returns NULL on failure
1460: --

Line 1481: -- if request_id is not given, obtain from fnd_global

1477: -- get_PHYSICAL_IOS
1478: --
1479: -- Purpose
1480: -- get PHYSICAL_IOS of a request based on request_id
1481: -- if request_id is not given, obtain from fnd_global
1482: --
1483: -- Note
1484: -- returns NULL on failure
1485: --

Line 1506: -- if request_id is not given, obtain from fnd_global

1502: -- get_LOGFILE_NAME
1503: --
1504: -- Purpose
1505: -- get LOGFILE_NAME of a request based on request_id
1506: -- if request_id is not given, obtain from fnd_global
1507: --
1508: -- Note
1509: -- returns NULL on failure
1510: --

Line 1531: -- if request_id is not given, obtain from fnd_global

1527: -- get_LOGFILE_NODE_NAME
1528: --
1529: -- Purpose
1530: -- get LOGFILE_NODE_NAME of a request based on request_id
1531: -- if request_id is not given, obtain from fnd_global
1532: --
1533: -- Note
1534: -- returns NULL on failure
1535: --

Line 1556: -- if request_id is not given, obtain from fnd_global

1552: -- get_OUTFILE_NAME
1553: --
1554: -- Purpose
1555: -- get OUTFILE_NAME of a request based on request_id
1556: -- if request_id is not given, obtain from fnd_global
1557: --
1558: -- Note
1559: -- returns NULL on failure
1560: --

Line 1581: -- if request_id is not given, obtain from fnd_global

1577: -- get_OUTFILE_NODE_NAME
1578: --
1579: -- Purpose
1580: -- get OUTFILE_NODE_NAME of a request based on request_id
1581: -- if request_id is not given, obtain from fnd_global
1582: --
1583: -- Note
1584: -- returns NULL on failure
1585: --

Line 1606: -- if request_id is not given, obtain from fnd_global

1602: -- get_ARGUMENT_TEXT
1603: --
1604: -- Purpose
1605: -- get ARGUMENT_TEXT of a request based on request_id
1606: -- if request_id is not given, obtain from fnd_global
1607: --
1608: -- Note
1609: -- returns NULL on failure
1610: --

Line 1631: -- if request_id is not given, obtain from fnd_global

1627: -- get_ARGUMENT1
1628: --
1629: -- Purpose
1630: -- get ARGUMENT1 of a request based on request_id
1631: -- if request_id is not given, obtain from fnd_global
1632: --
1633: -- Note
1634: -- returns NULL on failure
1635: --

Line 1656: -- if request_id is not given, obtain from fnd_global

1652: -- get_ARGUMENT2
1653: --
1654: -- Purpose
1655: -- get ARGUMENT2 of a request based on request_id
1656: -- if request_id is not given, obtain from fnd_global
1657: --
1658: -- Note
1659: -- returns NULL on failure
1660: --

Line 1681: -- if request_id is not given, obtain from fnd_global

1677: -- get_ARGUMENT3
1678: --
1679: -- Purpose
1680: -- get ARGUMENT3 of a request based on request_id
1681: -- if request_id is not given, obtain from fnd_global
1682: --
1683: -- Note
1684: -- returns NULL on failure
1685: --

Line 1706: -- if request_id is not given, obtain from fnd_global

1702: -- get_ARGUMENT4
1703: --
1704: -- Purpose
1705: -- get ARGUMENT4 of a request based on request_id
1706: -- if request_id is not given, obtain from fnd_global
1707: --
1708: -- Note
1709: -- returns NULL on failure
1710: --

Line 1731: -- if request_id is not given, obtain from fnd_global

1727: -- get_ARGUMENT5
1728: --
1729: -- Purpose
1730: -- get ARGUMENT5 of a request based on request_id
1731: -- if request_id is not given, obtain from fnd_global
1732: --
1733: -- Note
1734: -- returns NULL on failure
1735: --

Line 1756: -- if request_id is not given, obtain from fnd_global

1752: -- get_ARGUMENT6
1753: --
1754: -- Purpose
1755: -- get ARGUMENT6 of a request based on request_id
1756: -- if request_id is not given, obtain from fnd_global
1757: --
1758: -- Note
1759: -- returns NULL on failure
1760: --

Line 1781: -- if request_id is not given, obtain from fnd_global

1777: -- get_ARGUMENT7
1778: --
1779: -- Purpose
1780: -- get ARGUMENT7 of a request based on request_id
1781: -- if request_id is not given, obtain from fnd_global
1782: --
1783: -- Note
1784: -- returns NULL on failure
1785: --

Line 1806: -- if request_id is not given, obtain from fnd_global

1802: -- get_ARGUMENT8
1803: --
1804: -- Purpose
1805: -- get ARGUMENT8 of a request based on request_id
1806: -- if request_id is not given, obtain from fnd_global
1807: --
1808: -- Note
1809: -- returns NULL on failure
1810: --

Line 1831: -- if request_id is not given, obtain from fnd_global

1827: -- get_ARGUMENT9
1828: --
1829: -- Purpose
1830: -- get ARGUMENT9 of a request based on request_id
1831: -- if request_id is not given, obtain from fnd_global
1832: --
1833: -- Note
1834: -- returns NULL on failure
1835: --

Line 1856: -- if request_id is not given, obtain from fnd_global

1852: -- get_ARGUMENT10
1853: --
1854: -- Purpose
1855: -- get ARGUMENT10 of a request based on request_id
1856: -- if request_id is not given, obtain from fnd_global
1857: --
1858: -- Note
1859: -- returns NULL on failure
1860: --

Line 1881: -- if request_id is not given, obtain from fnd_global

1877: -- get_ARGUMENT11
1878: --
1879: -- Purpose
1880: -- get ARGUMENT11 of a request based on request_id
1881: -- if request_id is not given, obtain from fnd_global
1882: --
1883: -- Note
1884: -- returns NULL on failure
1885: --

Line 1906: -- if request_id is not given, obtain from fnd_global

1902: -- get_ARGUMENT12
1903: --
1904: -- Purpose
1905: -- get ARGUMENT12 of a request based on request_id
1906: -- if request_id is not given, obtain from fnd_global
1907: --
1908: -- Note
1909: -- returns NULL on failure
1910: --

Line 1931: -- if request_id is not given, obtain from fnd_global

1927: -- get_ARGUMENT13
1928: --
1929: -- Purpose
1930: -- get ARGUMENT13 of a request based on request_id
1931: -- if request_id is not given, obtain from fnd_global
1932: --
1933: -- Note
1934: -- returns NULL on failure
1935: --

Line 1956: -- if request_id is not given, obtain from fnd_global

1952: -- get_ARGUMENT14
1953: --
1954: -- Purpose
1955: -- get ARGUMENT14 of a request based on request_id
1956: -- if request_id is not given, obtain from fnd_global
1957: --
1958: -- Note
1959: -- returns NULL on failure
1960: --

Line 1981: -- if request_id is not given, obtain from fnd_global

1977: -- get_ARGUMENT15
1978: --
1979: -- Purpose
1980: -- get ARGUMENT15 of a request based on request_id
1981: -- if request_id is not given, obtain from fnd_global
1982: --
1983: -- Note
1984: -- returns NULL on failure
1985: --

Line 2006: -- if request_id is not given, obtain from fnd_global

2002: -- get_ARGUMENT16
2003: --
2004: -- Purpose
2005: -- get ARGUMENT16 of a request based on request_id
2006: -- if request_id is not given, obtain from fnd_global
2007: --
2008: -- Note
2009: -- returns NULL on failure
2010: --

Line 2031: -- if request_id is not given, obtain from fnd_global

2027: -- get_ARGUMENT17
2028: --
2029: -- Purpose
2030: -- get ARGUMENT17 of a request based on request_id
2031: -- if request_id is not given, obtain from fnd_global
2032: --
2033: -- Note
2034: -- returns NULL on failure
2035: --

Line 2056: -- if request_id is not given, obtain from fnd_global

2052: -- get_ARGUMENT18
2053: --
2054: -- Purpose
2055: -- get ARGUMENT18 of a request based on request_id
2056: -- if request_id is not given, obtain from fnd_global
2057: --
2058: -- Note
2059: -- returns NULL on failure
2060: --

Line 2081: -- if request_id is not given, obtain from fnd_global

2077: -- get_ARGUMENT19
2078: --
2079: -- Purpose
2080: -- get ARGUMENT19 of a request based on request_id
2081: -- if request_id is not given, obtain from fnd_global
2082: --
2083: -- Note
2084: -- returns NULL on failure
2085: --

Line 2106: -- if request_id is not given, obtain from fnd_global

2102: -- get_ARGUMENT20
2103: --
2104: -- Purpose
2105: -- get ARGUMENT20 of a request based on request_id
2106: -- if request_id is not given, obtain from fnd_global
2107: --
2108: -- Note
2109: -- returns NULL on failure
2110: --

Line 2131: -- if request_id is not given, obtain from fnd_global

2127: -- get_ARGUMENT21
2128: --
2129: -- Purpose
2130: -- get ARGUMENT21 of a request based on request_id
2131: -- if request_id is not given, obtain from fnd_global
2132: --
2133: -- Note
2134: -- returns NULL on failure
2135: --

Line 2156: -- if request_id is not given, obtain from fnd_global

2152: -- get_ARGUMENT22
2153: --
2154: -- Purpose
2155: -- get ARGUMENT22 of a request based on request_id
2156: -- if request_id is not given, obtain from fnd_global
2157: --
2158: -- Note
2159: -- returns NULL on failure
2160: --

Line 2181: -- if request_id is not given, obtain from fnd_global

2177: -- get_ARGUMENT23
2178: --
2179: -- Purpose
2180: -- get ARGUMENT23 of a request based on request_id
2181: -- if request_id is not given, obtain from fnd_global
2182: --
2183: -- Note
2184: -- returns NULL on failure
2185: --

Line 2206: -- if request_id is not given, obtain from fnd_global

2202: -- get_ARGUMENT24
2203: --
2204: -- Purpose
2205: -- get ARGUMENT24 of a request based on request_id
2206: -- if request_id is not given, obtain from fnd_global
2207: --
2208: -- Note
2209: -- returns NULL on failure
2210: --

Line 2231: -- if request_id is not given, obtain from fnd_global

2227: -- get_ARGUMENT25
2228: --
2229: -- Purpose
2230: -- get ARGUMENT25 of a request based on request_id
2231: -- if request_id is not given, obtain from fnd_global
2232: --
2233: -- Note
2234: -- returns NULL on failure
2235: --

Line 2256: -- if request_id is not given, obtain from fnd_global

2252: -- get_CRM_THRSHLD
2253: --
2254: -- Purpose
2255: -- get CRM_THRSHLD of a request based on request_id
2256: -- if request_id is not given, obtain from fnd_global
2257: --
2258: -- Note
2259: -- returns NULL on failure
2260: --

Line 2281: -- if request_id is not given, obtain from fnd_global

2277: -- get_CRM_TSTMP
2278: --
2279: -- Purpose
2280: -- get CRM_TSTMP of a request based on request_id
2281: -- if request_id is not given, obtain from fnd_global
2282: --
2283: -- Note
2284: -- returns NULL on failure
2285: --

Line 2306: -- if request_id is not given, obtain from fnd_global

2302: -- get_CRITICAL
2303: --
2304: -- Purpose
2305: -- get CRITICAL of a request based on request_id
2306: -- if request_id is not given, obtain from fnd_global
2307: --
2308: -- Note
2309: -- returns NULL on failure
2310: --

Line 2331: -- if request_id is not given, obtain from fnd_global

2327: -- get_REQUEST_TYPE
2328: --
2329: -- Purpose
2330: -- get REQUEST_TYPE of a request based on request_id
2331: -- if request_id is not given, obtain from fnd_global
2332: --
2333: -- Note
2334: -- returns NULL on failure
2335: --

Line 2356: -- if request_id is not given, obtain from fnd_global

2352: -- get_ORACLE_PROCESS_ID
2353: --
2354: -- Purpose
2355: -- get ORACLE_PROCESS_ID of a request based on request_id
2356: -- if request_id is not given, obtain from fnd_global
2357: --
2358: -- Note
2359: -- returns NULL on failure
2360: --

Line 2381: -- if request_id is not given, obtain from fnd_global

2377: -- get_ORACLE_SESSION_ID
2378: --
2379: -- Purpose
2380: -- get ORACLE_SESSION_ID of a request based on request_id
2381: -- if request_id is not given, obtain from fnd_global
2382: --
2383: -- Note
2384: -- returns NULL on failure
2385: --

Line 2406: -- if request_id is not given, obtain from fnd_global

2402: -- get_OS_PROCESS_ID
2403: --
2404: -- Purpose
2405: -- get OS_PROCESS_ID of a request based on request_id
2406: -- if request_id is not given, obtain from fnd_global
2407: --
2408: -- Note
2409: -- returns NULL on failure
2410: --

Line 2431: -- if request_id is not given, obtain from fnd_global

2427: -- get_PRINT_JOB_ID
2428: --
2429: -- Purpose
2430: -- get PRINT_JOB_ID of a request based on request_id
2431: -- if request_id is not given, obtain from fnd_global
2432: --
2433: -- Note
2434: -- returns NULL on failure
2435: --

Line 2456: -- if request_id is not given, obtain from fnd_global

2452: -- get_OUTPUT_FILE_TYPE
2453: --
2454: -- Purpose
2455: -- get OUTPUT_FILE_TYPE of a request based on request_id
2456: -- if request_id is not given, obtain from fnd_global
2457: --
2458: -- Note
2459: -- returns NULL on failure
2460: --

Line 2481: -- if request_id is not given, obtain from fnd_global

2477: -- get_RELEASE_CLASS_APP_ID
2478: --
2479: -- Purpose
2480: -- get RELEASE_CLASS_APP_ID of a request based on request_id
2481: -- if request_id is not given, obtain from fnd_global
2482: --
2483: -- Note
2484: -- returns NULL on failure
2485: --

Line 2506: -- if request_id is not given, obtain from fnd_global

2502: -- get_RELEASE_CLASS_ID
2503: --
2504: -- Purpose
2505: -- get RELEASE_CLASS_ID of a request based on request_id
2506: -- if request_id is not given, obtain from fnd_global
2507: --
2508: -- Note
2509: -- returns NULL on failure
2510: --

Line 2531: -- if request_id is not given, obtain from fnd_global

2527: -- get_STALE_DATE
2528: --
2529: -- Purpose
2530: -- get STALE_DATE of a request based on request_id
2531: -- if request_id is not given, obtain from fnd_global
2532: --
2533: -- Note
2534: -- returns NULL on failure
2535: --

Line 2556: -- if request_id is not given, obtain from fnd_global

2552: -- get_CANCEL_OR_HOLD
2553: --
2554: -- Purpose
2555: -- get CANCEL_OR_HOLD of a request based on request_id
2556: -- if request_id is not given, obtain from fnd_global
2557: --
2558: -- Note
2559: -- returns NULL on failure
2560: --

Line 2581: -- if request_id is not given, obtain from fnd_global

2577: -- get_NOTIFY_ON_PP_ERROR
2578: --
2579: -- Purpose
2580: -- get NOTIFY_ON_PP_ERROR of a request based on request_id
2581: -- if request_id is not given, obtain from fnd_global
2582: --
2583: -- Note
2584: -- returns NULL on failure
2585: --

Line 2606: -- if request_id is not given, obtain from fnd_global

2602: -- get_CD_ID
2603: --
2604: -- Purpose
2605: -- get CD_ID of a request based on request_id
2606: -- if request_id is not given, obtain from fnd_global
2607: --
2608: -- Note
2609: -- returns NULL on failure
2610: --

Line 2631: -- if request_id is not given, obtain from fnd_global

2627: -- get_REQUEST_LIMIT
2628: --
2629: -- Purpose
2630: -- get REQUEST_LIMIT of a request based on request_id
2631: -- if request_id is not given, obtain from fnd_global
2632: --
2633: -- Note
2634: -- returns NULL on failure
2635: --

Line 2656: -- if request_id is not given, obtain from fnd_global

2652: -- get_CRM_RELEASE_DATE
2653: --
2654: -- Purpose
2655: -- get CRM_RELEASE_DATE of a request based on request_id
2656: -- if request_id is not given, obtain from fnd_global
2657: --
2658: -- Note
2659: -- returns NULL on failure
2660: --

Line 2681: -- if request_id is not given, obtain from fnd_global

2677: -- get_POST_REQUEST_STATUS
2678: --
2679: -- Purpose
2680: -- get POST_REQUEST_STATUS of a request based on request_id
2681: -- if request_id is not given, obtain from fnd_global
2682: --
2683: -- Note
2684: -- returns NULL on failure
2685: --

Line 2706: -- if request_id is not given, obtain from fnd_global

2702: -- get_COMPLETION_CODE
2703: --
2704: -- Purpose
2705: -- get COMPLETION_CODE of a request based on request_id
2706: -- if request_id is not given, obtain from fnd_global
2707: --
2708: -- Note
2709: -- returns NULL on failure
2710: --

Line 2731: -- if request_id is not given, obtain from fnd_global

2727: -- get_INCREMENT_DATES
2728: --
2729: -- Purpose
2730: -- get INCREMENT_DATES of a request based on request_id
2731: -- if request_id is not given, obtain from fnd_global
2732: --
2733: -- Note
2734: -- returns NULL on failure
2735: --

Line 2756: -- if request_id is not given, obtain from fnd_global

2752: -- get_RESTART
2753: --
2754: -- Purpose
2755: -- get RESTART of a request based on request_id
2756: -- if request_id is not given, obtain from fnd_global
2757: --
2758: -- Note
2759: -- returns NULL on failure
2760: --

Line 2781: -- if request_id is not given, obtain from fnd_global

2777: -- get_ENABLE_TRACE
2778: --
2779: -- Purpose
2780: -- get ENABLE_TRACE of a request based on request_id
2781: -- if request_id is not given, obtain from fnd_global
2782: --
2783: -- Note
2784: -- returns NULL on failure
2785: --

Line 2806: -- if request_id is not given, obtain from fnd_global

2802: -- get_RESUB_COUNT
2803: --
2804: -- Purpose
2805: -- get RESUB_COUNT of a request based on request_id
2806: -- if request_id is not given, obtain from fnd_global
2807: --
2808: -- Note
2809: -- returns NULL on failure
2810: --

Line 2831: -- if request_id is not given, obtain from fnd_global

2827: -- get_NLS_CODESET
2828: --
2829: -- Purpose
2830: -- get NLS_CODESET of a request based on request_id
2831: -- if request_id is not given, obtain from fnd_global
2832: --
2833: -- Note
2834: -- returns NULL on failure
2835: --

Line 2856: -- if request_id is not given, obtain from fnd_global

2852: -- get_OFILE_SIZE
2853: --
2854: -- Purpose
2855: -- get OFILE_SIZE of a request based on request_id
2856: -- if request_id is not given, obtain from fnd_global
2857: --
2858: -- Note
2859: -- returns NULL on failure
2860: --

Line 2881: -- if request_id is not given, obtain from fnd_global

2877: -- get_LFILE_SIZE
2878: --
2879: -- Purpose
2880: -- get LFILE_SIZE of a request based on request_id
2881: -- if request_id is not given, obtain from fnd_global
2882: --
2883: -- Note
2884: -- returns NULL on failure
2885: --

Line 2906: -- if request_id is not given, obtain from fnd_global

2902: -- get_STALE
2903: --
2904: -- Purpose
2905: -- get STALE of a request based on request_id
2906: -- if request_id is not given, obtain from fnd_global
2907: --
2908: -- Note
2909: -- returns NULL on failure
2910: --

Line 2931: -- if request_id is not given, obtain from fnd_global

2927: -- get_SECURITY_GROUP_ID
2928: --
2929: -- Purpose
2930: -- get SECURITY_GROUP_ID of a request based on request_id
2931: -- if request_id is not given, obtain from fnd_global
2932: --
2933: -- Note
2934: -- returns NULL on failure
2935: --

Line 2956: -- if request_id is not given, obtain from fnd_global

2952: -- get_RESOURCE_CONSUMER_GROUP
2953: --
2954: -- Purpose
2955: -- get RESOURCE_CONSUMER_GROUP of a request based on request_id
2956: -- if request_id is not given, obtain from fnd_global
2957: --
2958: -- Note
2959: -- returns NULL on failure
2960: --

Line 2981: -- if request_id is not given, obtain from fnd_global

2977: -- get_EXP_DATE
2978: --
2979: -- Purpose
2980: -- get EXP_DATE of a request based on request_id
2981: -- if request_id is not given, obtain from fnd_global
2982: --
2983: -- Note
2984: -- returns NULL on failure
2985: --

Line 3006: -- if request_id is not given, obtain from fnd_global

3002: -- get_QUEUE_APP_ID
3003: --
3004: -- Purpose
3005: -- get QUEUE_APP_ID of a request based on request_id
3006: -- if request_id is not given, obtain from fnd_global
3007: --
3008: -- Note
3009: -- returns NULL on failure
3010: --

Line 3031: -- if request_id is not given, obtain from fnd_global

3027: -- get_QUEUE_ID
3028: --
3029: -- Purpose
3030: -- get QUEUE_ID of a request based on request_id
3031: -- if request_id is not given, obtain from fnd_global
3032: --
3033: -- Note
3034: -- returns NULL on failure
3035: --

Line 3056: -- if request_id is not given, obtain from fnd_global

3052: -- get_OPS_INSTANCE
3053: --
3054: -- Purpose
3055: -- get OPS_INSTANCE of a request based on request_id
3056: -- if request_id is not given, obtain from fnd_global
3057: --
3058: -- Note
3059: -- returns NULL on failure
3060: --

Line 3081: -- if request_id is not given, obtain from fnd_global

3077: -- get_INTERIM_STATUS_CODE
3078: --
3079: -- Purpose
3080: -- get INTERIM_STATUS_CODE of a request based on request_id
3081: -- if request_id is not given, obtain from fnd_global
3082: --
3083: -- Note
3084: -- returns NULL on failure
3085: --

Line 3106: -- if request_id is not given, obtain from fnd_global

3102: -- get_ROOT_REQUEST_ID
3103: --
3104: -- Purpose
3105: -- get ROOT_REQUEST_ID of a request based on request_id
3106: -- if request_id is not given, obtain from fnd_global
3107: --
3108: -- Note
3109: -- returns NULL on failure
3110: --

Line 3131: -- if request_id is not given, obtain from fnd_global

3127: -- get_ORIGIN
3128: --
3129: -- Purpose
3130: -- get ORIGIN of a request based on request_id
3131: -- if request_id is not given, obtain from fnd_global
3132: --
3133: -- Note
3134: -- returns NULL on failure
3135: --

Line 3156: -- if request_id is not given, obtain from fnd_global

3152: -- get_NLS_NUMERIC_CHARACTERS
3153: --
3154: -- Purpose
3155: -- get NLS_NUMERIC_CHARACTERS of a request based on request_id
3156: -- if request_id is not given, obtain from fnd_global
3157: --
3158: -- Note
3159: -- returns NULL on failure
3160: --

Line 3181: -- if request_id is not given, obtain from fnd_global

3177: -- get_PP_START_DATE
3178: --
3179: -- Purpose
3180: -- get PP_START_DATE of a request based on request_id
3181: -- if request_id is not given, obtain from fnd_global
3182: --
3183: -- Note
3184: -- returns NULL on failure
3185: --

Line 3206: -- if request_id is not given, obtain from fnd_global

3202: -- get_PP_END_DATE
3203: --
3204: -- Purpose
3205: -- get PP_END_DATE of a request based on request_id
3206: -- if request_id is not given, obtain from fnd_global
3207: --
3208: -- Note
3209: -- returns NULL on failure
3210: --