DBA Data[Home] [Help]

APPS.PO_CONTERMS_WF_PVT dependencies on STANDARD

Line 27: -- Standard workflow Parameter.

23: -- Put messages in workflow debuf if contracts call failed
24: --Parameters:
25: --IN:
26: --itemtype
27: -- Standard workflow Parameter.
28: --itemkey
29: -- Standard workflow parameter
30: --p_api_name
31: -- Name of the Contracts API called

Line 29: -- Standard workflow parameter

25: --IN:
26: --itemtype
27: -- Standard workflow Parameter.
28: --itemkey
29: -- Standard workflow parameter
30: --p_api_name
31: -- Name of the Contracts API called
32: --p_return_status
33: -- Staus returned by called API

Line 74: -- Standard workflow Parameter.

70: -- Get values for attributes needed for contract call
71: --Parameters:
72: --IN:
73: --itemtype
74: -- Standard workflow Parameter.
75: --itemkey
76: -- Standard workflow parameter
77: --OUT:
78: --x_po_header_id

Line 76: -- Standard workflow parameter

72: --IN:
73: --itemtype
74: -- Standard workflow Parameter.
75: --itemkey
76: -- Standard workflow parameter
77: --OUT:
78: --x_po_header_id
79: -- header id of the po being approved in this wf process
80: --x_po_doc_type

Line 287: -- Standard workflow Parameter.

283: -- Contract terms have changed or not in this revision
284: --Parameters:
285: --IN:
286: --itemtype
287: -- Standard workflow Parameter.
288: --itemkey
289: -- Standard workflow parameter
290: --Return:
291: -- Y- Yes Contract terms were changed in this revision

Line 289: -- Standard workflow parameter

285: --IN:
286: --itemtype
287: -- Standard workflow Parameter.
288: --itemkey
289: -- Standard workflow parameter
290: --Return:
291: -- Y- Yes Contract terms were changed in this revision
292: -- N- No Contract terms were not changed in this revision
293: --Notes:

Line 559: -- Document subtype- (STANDARD,BLANKET,CONTRACT)

555: -- po_header_id of the po
556: --p_po_doc_type
557: -- Document type of the PO (PO/PA)
558: --p_po_doc_subtype
559: -- Document subtype- (STANDARD,BLANKET,CONTRACT)
560: --p_conterms_exist_flag
561: -- If this po is a procurement contract
562: --OUT:
563: --x_return_status

Line 836: DECODE(type_lookup_code, 'STANDARD', 'PO', 'BLANKET', 'PA', 'CONTRACT', 'PA', NULL)

832: SELECT conterms_exist_flag,
833: type_lookup_code,
834: revision_num,
835: cancel_flag,
836: DECODE(type_lookup_code, 'STANDARD', 'PO', 'BLANKET', 'PA', 'CONTRACT', 'PA', NULL)
837: INTO l_conterms_exist_flag,
838: l_po_doc_subtype,
839: l_po_revision_num,
840: l_cancel_flag,

Line 1194: --Name: IS_STANDARD_CONTRACT

1190: END IF;
1191: END UPDATE_CONTRACT_TERMS;
1192: -------------------------------------------------------------------------------
1193: --Start of Comments
1194: --Name: IS_STANDARD_CONTRACT
1195: --Pre-reqs:
1196: -- Contracts package stubs should be there
1197: -- Runtime poxwfpoa.wft 115.91( Conterms_exist_flag attribute defined)
1198: --Modifies:

Line 1203: -- This API will be called by approval workflow Function IS_STANDARD_CONTRACT

1199: -- None
1200: --Locks:
1201: -- None
1202: --Function:
1203: -- This API will be called by approval workflow Function IS_STANDARD_CONTRACT
1204: -- to determine if Contract terms have changed from what were defaulted
1205: -- on Contract template
1206: --Parameters:
1207: --IN:

Line 1209: -- Standard workflow Parameter.

1205: -- on Contract template
1206: --Parameters:
1207: --IN:
1208: --itemtype
1209: -- Standard workflow Parameter.
1210: --itemkey
1211: -- Standard workflow parameter
1212: --actid
1213: -- Standard workflow parameter

Line 1211: -- Standard workflow parameter

1207: --IN:
1208: --itemtype
1209: -- Standard workflow Parameter.
1210: --itemkey
1211: -- Standard workflow parameter
1212: --actid
1213: -- Standard workflow parameter
1214: --funcmode
1215: -- Standard workflow parameter

Line 1213: -- Standard workflow parameter

1209: -- Standard workflow Parameter.
1210: --itemkey
1211: -- Standard workflow parameter
1212: --actid
1213: -- Standard workflow parameter
1214: --funcmode
1215: -- Standard workflow parameter
1216: --OUT:
1217: --Result

Line 1215: -- Standard workflow parameter

1211: -- Standard workflow parameter
1212: --actid
1213: -- Standard workflow parameter
1214: --funcmode
1215: -- Standard workflow parameter
1216: --OUT:
1217: --Result
1218: -- Result of the call
1219: -- Possible Return Values:

Line 1221: -- There is not change in Contract terms from Standard Contract template

1217: --Result
1218: -- Result of the call
1219: -- Possible Return Values:
1220: -- NO_CHANGE
1221: -- There is not change in Contract terms from Standard Contract template
1222: -- ARTICLES_CHANGED
1223: -- Articles are changed from Contract terms in Standard Contract template
1224: -- DELIVERABLES_CHANGED
1225: -- Deliverables are changed from Contract terms in Standard Contract template

Line 1223: -- Articles are changed from Contract terms in Standard Contract template

1219: -- Possible Return Values:
1220: -- NO_CHANGE
1221: -- There is not change in Contract terms from Standard Contract template
1222: -- ARTICLES_CHANGED
1223: -- Articles are changed from Contract terms in Standard Contract template
1224: -- DELIVERABLES_CHANGED
1225: -- Deliverables are changed from Contract terms in Standard Contract template
1226: -- ALL_CHANGED
1227: -- Deliverables and Articles are changed from Contract terms in

Line 1225: -- Deliverables are changed from Contract terms in Standard Contract template

1221: -- There is not change in Contract terms from Standard Contract template
1222: -- ARTICLES_CHANGED
1223: -- Articles are changed from Contract terms in Standard Contract template
1224: -- DELIVERABLES_CHANGED
1225: -- Deliverables are changed from Contract terms in Standard Contract template
1226: -- ALL_CHANGED
1227: -- Deliverables and Articles are changed from Contract terms in
1228: -- Standard Contract template
1229: --Notes:

Line 1228: -- Standard Contract template

1224: -- DELIVERABLES_CHANGED
1225: -- Deliverables are changed from Contract terms in Standard Contract template
1226: -- ALL_CHANGED
1227: -- Deliverables and Articles are changed from Contract terms in
1228: -- Standard Contract template
1229: --Notes:
1230: -- None
1231: --Testing:
1232: -- Test this API by Changing contract terms, by not changing Contract terms

Line 1237: PROCEDURE IS_STANDARD_CONTRACT (itemtype IN VARCHAR2,

1233: -- and for POs which are not Procurement Contract.
1234: -- For more details refer to UT test scripts in DLD
1235: --End of Comments
1236: -------------------------------------------------------------------------------
1237: PROCEDURE IS_STANDARD_CONTRACT (itemtype IN VARCHAR2,
1238: itemkey IN VARCHAR2,
1239: actid IN NUMBER,
1240: funcmode IN VARCHAR2,
1241: result OUT NOCOPY VARCHAR2) IS

Line 1259: '10: Start function IS_STANDARD_CONTRACT ');

1255: l_contracts_call_exception exception;
1256: BEGIN
1257: IF (g_po_wf_debug = 'Y') THEN
1258: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
1259: '10: Start function IS_STANDARD_CONTRACT ');
1260: END IF;
1261: -- Do nothing in cancel or timeout mode
1262: IF (funcmode <> WF_ENGINE.eng_run) then
1263: result := WF_ENGINE.eng_null;

Line 1280: --Call contracts to find out if contract terms deviated from standard template

1276: x_po_header_id =>l_po_header_id,
1277: x_po_doc_type =>l_po_doc_type,
1278: x_po_doc_subtype =>l_po_doc_subtype);
1279:
1280: --Call contracts to find out if contract terms deviated from standard template
1281:
1282: result :=OKC_TERMS_UTIL_GRP.Deviation_From_Standard(
1283: p_api_version => 1.0,
1284: p_doc_id => l_po_header_id,

Line 1282: result :=OKC_TERMS_UTIL_GRP.Deviation_From_Standard(

1278: x_po_doc_subtype =>l_po_doc_subtype);
1279:
1280: --Call contracts to find out if contract terms deviated from standard template
1281:
1282: result :=OKC_TERMS_UTIL_GRP.Deviation_From_Standard(
1283: p_api_version => 1.0,
1284: p_doc_id => l_po_header_id,
1285: p_doc_type => PO_CONTERMS_UTL_GRP.Get_Po_Contract_Doctype(l_po_doc_subtype),
1286: x_return_status => l_return_status,

Line 1310: '200 End: IS_STANDARD_CONTRACT ');

1306: END IF; -- if conterms exist
1307:
1308: IF (g_po_wf_debug = 'Y') THEN
1309: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
1310: '200 End: IS_STANDARD_CONTRACT ');
1311: END IF;
1312:
1313:
1314: EXCEPTION

Line 1319: '250: End contracts_call_exception: IS_STANDARD_CONTRACT ');

1315: -- Handle Exceptions and re raise
1316: WHEN l_contracts_call_exception then
1317: IF (g_po_wf_debug = 'Y') THEN
1318: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
1319: '250: End contracts_call_exception: IS_STANDARD_CONTRACT ');
1320: show_error(itemtype => itemtype,
1321: itemkey => itemkey,
1322: p_api_name =>'OKC_TERMS_UTIl_GRP.DEVIATION_FROM_STANDARD',
1323: p_return_status => l_return_status);

Line 1322: p_api_name =>'OKC_TERMS_UTIl_GRP.DEVIATION_FROM_STANDARD',

1318: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
1319: '250: End contracts_call_exception: IS_STANDARD_CONTRACT ');
1320: show_error(itemtype => itemtype,
1321: itemkey => itemkey,
1322: p_api_name =>'OKC_TERMS_UTIl_GRP.DEVIATION_FROM_STANDARD',
1323: p_return_status => l_return_status);
1324: END IF;
1325: l_doc_string := PO_REQAPPROVAL_INIT1.get_error_doc(itemType, itemkey);
1326: l_preparer_user_name := PO_REQAPPROVAL_INIT1.get_preparer_user_name(itemType, itemkey);

Line 1327: wf_core.context('PO_CONTERMS_WF_PVT', 'IS_STANDARD_CONTRACT', 'l_contracts_call_Exception');

1323: p_return_status => l_return_status);
1324: END IF;
1325: l_doc_string := PO_REQAPPROVAL_INIT1.get_error_doc(itemType, itemkey);
1326: l_preparer_user_name := PO_REQAPPROVAL_INIT1.get_preparer_user_name(itemType, itemkey);
1327: wf_core.context('PO_CONTERMS_WF_PVT', 'IS_STANDARD_CONTRACT', 'l_contracts_call_Exception');
1328:
1329: PO_REQAPPROVAL_INIT1.send_error_notif(itemType, itemkey, l_preparer_user_name,
1330: l_doc_string, FND_MSG_PUB.Get(p_msg_index=>1,p_encoded =>'F' ),
1331: 'PO_CONTERMS_WF_PVT.IS_STANDARD_CONTRACT');

Line 1331: 'PO_CONTERMS_WF_PVT.IS_STANDARD_CONTRACT');

1327: wf_core.context('PO_CONTERMS_WF_PVT', 'IS_STANDARD_CONTRACT', 'l_contracts_call_Exception');
1328:
1329: PO_REQAPPROVAL_INIT1.send_error_notif(itemType, itemkey, l_preparer_user_name,
1330: l_doc_string, FND_MSG_PUB.Get(p_msg_index=>1,p_encoded =>'F' ),
1331: 'PO_CONTERMS_WF_PVT.IS_STANDARD_CONTRACT');
1332: RAISE;
1333:
1334: WHEN OTHERS THEN
1335: IF (g_po_wf_debug = 'Y') THEN

Line 1337: '300: End IN Exception: IS_STANDARD_CONTRACT ');

1333:
1334: WHEN OTHERS THEN
1335: IF (g_po_wf_debug = 'Y') THEN
1336: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
1337: '300: End IN Exception: IS_STANDARD_CONTRACT ');
1338: END IF;
1339: l_doc_string := PO_REQAPPROVAL_INIT1.get_error_doc(itemType, itemkey);
1340: l_preparer_user_name := PO_REQAPPROVAL_INIT1.get_preparer_user_name(itemType, itemkey);
1341: wf_core.context('PO_CONTERMS_WF_PVT', 'IS_STANDARD_CONTRACT', 'l_contracts_call_Exception');

Line 1341: wf_core.context('PO_CONTERMS_WF_PVT', 'IS_STANDARD_CONTRACT', 'l_contracts_call_Exception');

1337: '300: End IN Exception: IS_STANDARD_CONTRACT ');
1338: END IF;
1339: l_doc_string := PO_REQAPPROVAL_INIT1.get_error_doc(itemType, itemkey);
1340: l_preparer_user_name := PO_REQAPPROVAL_INIT1.get_preparer_user_name(itemType, itemkey);
1341: wf_core.context('PO_CONTERMS_WF_PVT', 'IS_STANDARD_CONTRACT', 'l_contracts_call_Exception');
1342:
1343: PO_REQAPPROVAL_INIT1.send_error_notif(itemType, itemkey, l_preparer_user_name,
1344: l_doc_string, sqlerrm,
1345: 'PO_CONTERMS_WF_PVT.IS_STANDARD_CONTRACT');

Line 1345: 'PO_CONTERMS_WF_PVT.IS_STANDARD_CONTRACT');

1341: wf_core.context('PO_CONTERMS_WF_PVT', 'IS_STANDARD_CONTRACT', 'l_contracts_call_Exception');
1342:
1343: PO_REQAPPROVAL_INIT1.send_error_notif(itemType, itemkey, l_preparer_user_name,
1344: l_doc_string, sqlerrm,
1345: 'PO_CONTERMS_WF_PVT.IS_STANDARD_CONTRACT');
1346: RAISE;
1347:
1348: END IS_STANDARD_CONTRACT;
1349: -------------------------------------------------------------------------------

Line 1348: END IS_STANDARD_CONTRACT;

1344: l_doc_string, sqlerrm,
1345: 'PO_CONTERMS_WF_PVT.IS_STANDARD_CONTRACT');
1346: RAISE;
1347:
1348: END IS_STANDARD_CONTRACT;
1349: -------------------------------------------------------------------------------
1350: --Start of Comments
1351: --Name: IS_CONTRACT_TEMPLATE_EXPIRED
1352: --Pre-reqs:

Line 1365: -- Standard workflow Parameter.

1361: -- to determine if Contract terms template being used has expired or not
1362: --Parameters:
1363: --IN:
1364: --itemtype
1365: -- Standard workflow Parameter.
1366: --itemkey
1367: -- Standard workflow parameter
1368: --actid
1369: -- Standard workflow parameter

Line 1367: -- Standard workflow parameter

1363: --IN:
1364: --itemtype
1365: -- Standard workflow Parameter.
1366: --itemkey
1367: -- Standard workflow parameter
1368: --actid
1369: -- Standard workflow parameter
1370: --funcmode
1371: -- Standard workflow parameter

Line 1369: -- Standard workflow parameter

1365: -- Standard workflow Parameter.
1366: --itemkey
1367: -- Standard workflow parameter
1368: --actid
1369: -- Standard workflow parameter
1370: --funcmode
1371: -- Standard workflow parameter
1372: --OUT:
1373: --Result

Line 1371: -- Standard workflow parameter

1367: -- Standard workflow parameter
1368: --actid
1369: -- Standard workflow parameter
1370: --funcmode
1371: -- Standard workflow parameter
1372: --OUT:
1373: --Result
1374: -- Result of the call
1375: -- Possible Return Values:

Line 1515: -- Standard workflow Parameter.

1511: -- to determine if Contract terms have articles attached to Purchase Order
1512: --Parameters:
1513: --IN:
1514: --itemtype
1515: -- Standard workflow Parameter.
1516: --itemkey
1517: -- Standard workflow parameter
1518: --actid
1519: -- Standard workflow parameter

Line 1517: -- Standard workflow parameter

1513: --IN:
1514: --itemtype
1515: -- Standard workflow Parameter.
1516: --itemkey
1517: -- Standard workflow parameter
1518: --actid
1519: -- Standard workflow parameter
1520: --funcmode
1521: -- Standard workflow parameter

Line 1519: -- Standard workflow parameter

1515: -- Standard workflow Parameter.
1516: --itemkey
1517: -- Standard workflow parameter
1518: --actid
1519: -- Standard workflow parameter
1520: --funcmode
1521: -- Standard workflow parameter
1522: --OUT:
1523: --Result

Line 1521: -- Standard workflow parameter

1517: -- Standard workflow parameter
1518: --actid
1519: -- Standard workflow parameter
1520: --funcmode
1521: -- Standard workflow parameter
1522: --OUT:
1523: --Result
1524: -- Result of the call
1525: -- Possible Return Values:

Line 1528: -- ONLY_STANDARD

1524: -- Result of the call
1525: -- Possible Return Values:
1526: -- NONE
1527: -- There are no articles attached to this purchase order
1528: -- ONLY_STANDARD
1529: -- Only standard Articles exist on this purchase order
1530: -- NON_STANDARD
1531: -- Standard as well as non standard Articles exist on this purchase order
1532: --Notes:

Line 1529: -- Only standard Articles exist on this purchase order

1525: -- Possible Return Values:
1526: -- NONE
1527: -- There are no articles attached to this purchase order
1528: -- ONLY_STANDARD
1529: -- Only standard Articles exist on this purchase order
1530: -- NON_STANDARD
1531: -- Standard as well as non standard Articles exist on this purchase order
1532: --Notes:
1533: -- None

Line 1530: -- NON_STANDARD

1526: -- NONE
1527: -- There are no articles attached to this purchase order
1528: -- ONLY_STANDARD
1529: -- Only standard Articles exist on this purchase order
1530: -- NON_STANDARD
1531: -- Standard as well as non standard Articles exist on this purchase order
1532: --Notes:
1533: -- None
1534: --Testing:

Line 1531: -- Standard as well as non standard Articles exist on this purchase order

1527: -- There are no articles attached to this purchase order
1528: -- ONLY_STANDARD
1529: -- Only standard Articles exist on this purchase order
1530: -- NON_STANDARD
1531: -- Standard as well as non standard Articles exist on this purchase order
1532: --Notes:
1533: -- None
1534: --Testing:
1535: -- For more details refer to UT test scripts in DLD

Line 1667: -- Standard workflow Parameter.

1663: -- to determine if contract articles were amended in this revision
1664: --Parameters:
1665: --IN:
1666: --itemtype
1667: -- Standard workflow Parameter.
1668: --itemkey
1669: -- Standard workflow parameter
1670: --actid
1671: -- Standard workflow parameter

Line 1669: -- Standard workflow parameter

1665: --IN:
1666: --itemtype
1667: -- Standard workflow Parameter.
1668: --itemkey
1669: -- Standard workflow parameter
1670: --actid
1671: -- Standard workflow parameter
1672: --funcmode
1673: -- Standard workflow parameter

Line 1671: -- Standard workflow parameter

1667: -- Standard workflow Parameter.
1668: --itemkey
1669: -- Standard workflow parameter
1670: --actid
1671: -- Standard workflow parameter
1672: --funcmode
1673: -- Standard workflow parameter
1674: --OUT:
1675: --Result

Line 1673: -- Standard workflow parameter

1669: -- Standard workflow parameter
1670: --actid
1671: -- Standard workflow parameter
1672: --funcmode
1673: -- Standard workflow parameter
1674: --OUT:
1675: --Result
1676: -- Result of the call
1677: -- Possible Return Values:

Line 1680: -- ONLY_STANDARD

1676: -- Result of the call
1677: -- Possible Return Values:
1678: -- NONE
1679: -- No articles were amended in this revision of purchase order
1680: -- ONLY_STANDARD
1681: -- Only standard Articles were amended in this revision of purchase order
1682: -- NON_STANDARD
1683: -- Standard as well as non standard Articles were amended in this revision of purchase order
1684: --Notes:

Line 1681: -- Only standard Articles were amended in this revision of purchase order

1677: -- Possible Return Values:
1678: -- NONE
1679: -- No articles were amended in this revision of purchase order
1680: -- ONLY_STANDARD
1681: -- Only standard Articles were amended in this revision of purchase order
1682: -- NON_STANDARD
1683: -- Standard as well as non standard Articles were amended in this revision of purchase order
1684: --Notes:
1685: -- None

Line 1682: -- NON_STANDARD

1678: -- NONE
1679: -- No articles were amended in this revision of purchase order
1680: -- ONLY_STANDARD
1681: -- Only standard Articles were amended in this revision of purchase order
1682: -- NON_STANDARD
1683: -- Standard as well as non standard Articles were amended in this revision of purchase order
1684: --Notes:
1685: -- None
1686: --Testing:

Line 1683: -- Standard as well as non standard Articles were amended in this revision of purchase order

1679: -- No articles were amended in this revision of purchase order
1680: -- ONLY_STANDARD
1681: -- Only standard Articles were amended in this revision of purchase order
1682: -- NON_STANDARD
1683: -- Standard as well as non standard Articles were amended in this revision of purchase order
1684: --Notes:
1685: -- None
1686: --Testing:
1687: -- For more details refer to UT test scripts in DLD

Line 1719: result := 'NON_STANDARD';

1715: IF (funcmode <> WF_ENGINE.eng_run) then
1716: result := WF_ENGINE.eng_null;
1717: return;
1718: END IF;
1719: result := 'NON_STANDARD';
1720: l_conterms_yn := PO_wf_Util_Pkg.GetItemAttrText(
1721: itemtype => itemtype,
1722: itemkey => itemkey,
1723: aname => 'CONTERMS_EXIST_FLAG');

Line 1820: -- Standard workflow Parameter.

1816: -- to determine if contract deliverables are attached to PO
1817: --Parameters:
1818: --IN:
1819: --itemtype
1820: -- Standard workflow Parameter.
1821: --itemkey
1822: -- Standard workflow parameter
1823: --actid
1824: -- Standard workflow parameter

Line 1822: -- Standard workflow parameter

1818: --IN:
1819: --itemtype
1820: -- Standard workflow Parameter.
1821: --itemkey
1822: -- Standard workflow parameter
1823: --actid
1824: -- Standard workflow parameter
1825: --funcmode
1826: -- Standard workflow parameter

Line 1824: -- Standard workflow parameter

1820: -- Standard workflow Parameter.
1821: --itemkey
1822: -- Standard workflow parameter
1823: --actid
1824: -- Standard workflow parameter
1825: --funcmode
1826: -- Standard workflow parameter
1827: --OUT:
1828: --Result

Line 1826: -- Standard workflow parameter

1822: -- Standard workflow parameter
1823: --actid
1824: -- Standard workflow parameter
1825: --funcmode
1826: -- Standard workflow parameter
1827: --OUT:
1828: --Result
1829: -- Result of the call
1830: -- Possible Return Values:

Line 1976: -- Standard workflow Parameter.

1972: -- to determine if contract deliverables were amended in this revision
1973: --Parameters:
1974: --IN:
1975: --itemtype
1976: -- Standard workflow Parameter.
1977: --itemkey
1978: -- Standard workflow parameter
1979: --actid
1980: -- Standard workflow parameter

Line 1978: -- Standard workflow parameter

1974: --IN:
1975: --itemtype
1976: -- Standard workflow Parameter.
1977: --itemkey
1978: -- Standard workflow parameter
1979: --actid
1980: -- Standard workflow parameter
1981: --funcmode
1982: -- Standard workflow parameter

Line 1980: -- Standard workflow parameter

1976: -- Standard workflow Parameter.
1977: --itemkey
1978: -- Standard workflow parameter
1979: --actid
1980: -- Standard workflow parameter
1981: --funcmode
1982: -- Standard workflow parameter
1983: --OUT:
1984: --Result

Line 1982: -- Standard workflow parameter

1978: -- Standard workflow parameter
1979: --actid
1980: -- Standard workflow parameter
1981: --funcmode
1982: -- Standard workflow parameter
1983: --OUT:
1984: --Result
1985: -- Result of the call
1986: -- Possible Return Values:

Line 2138: -- STANDARD

2134: --p_bus_doc_type
2135: -- PA - Purchase Agreement
2136: -- PO - Purchase Order
2137: --p_bus_doc_subtype
2138: -- STANDARD
2139: -- BALNKET
2140: -- CONTRACT
2141: --p_bus_doc_version
2142: -- Document revision number