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 1213: --Name: IS_STANDARD_CONTRACT

1209: END IF;
1210: END UPDATE_CONTRACT_TERMS;
1211: -------------------------------------------------------------------------------
1212: --Start of Comments
1213: --Name: IS_STANDARD_CONTRACT
1214: --Pre-reqs:
1215: -- Contracts package stubs should be there
1216: -- Runtime poxwfpoa.wft 115.91( Conterms_exist_flag attribute defined)
1217: --Modifies:

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

1218: -- None
1219: --Locks:
1220: -- None
1221: --Function:
1222: -- This API will be called by approval workflow Function IS_STANDARD_CONTRACT
1223: -- to determine if Contract terms have changed from what were defaulted
1224: -- on Contract template
1225: --Parameters:
1226: --IN:

Line 1228: -- Standard workflow Parameter.

1224: -- on Contract template
1225: --Parameters:
1226: --IN:
1227: --itemtype
1228: -- Standard workflow Parameter.
1229: --itemkey
1230: -- Standard workflow parameter
1231: --actid
1232: -- Standard workflow parameter

Line 1230: -- Standard workflow parameter

1226: --IN:
1227: --itemtype
1228: -- Standard workflow Parameter.
1229: --itemkey
1230: -- Standard workflow parameter
1231: --actid
1232: -- Standard workflow parameter
1233: --funcmode
1234: -- Standard workflow parameter

Line 1232: -- Standard workflow parameter

1228: -- Standard workflow Parameter.
1229: --itemkey
1230: -- Standard workflow parameter
1231: --actid
1232: -- Standard workflow parameter
1233: --funcmode
1234: -- Standard workflow parameter
1235: --OUT:
1236: --Result

Line 1234: -- Standard workflow parameter

1230: -- Standard workflow parameter
1231: --actid
1232: -- Standard workflow parameter
1233: --funcmode
1234: -- Standard workflow parameter
1235: --OUT:
1236: --Result
1237: -- Result of the call
1238: -- Possible Return Values:

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

1236: --Result
1237: -- Result of the call
1238: -- Possible Return Values:
1239: -- NO_CHANGE
1240: -- There is not change in Contract terms from Standard Contract template
1241: -- ARTICLES_CHANGED
1242: -- Articles are changed from Contract terms in Standard Contract template
1243: -- DELIVERABLES_CHANGED
1244: -- Deliverables are changed from Contract terms in Standard Contract template

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

1238: -- Possible Return Values:
1239: -- NO_CHANGE
1240: -- There is not change in Contract terms from Standard Contract template
1241: -- ARTICLES_CHANGED
1242: -- Articles are changed from Contract terms in Standard Contract template
1243: -- DELIVERABLES_CHANGED
1244: -- Deliverables are changed from Contract terms in Standard Contract template
1245: -- ALL_CHANGED
1246: -- Deliverables and Articles are changed from Contract terms in

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

1240: -- There is not change in Contract terms from Standard Contract template
1241: -- ARTICLES_CHANGED
1242: -- Articles are changed from Contract terms in Standard Contract template
1243: -- DELIVERABLES_CHANGED
1244: -- Deliverables are changed from Contract terms in Standard Contract template
1245: -- ALL_CHANGED
1246: -- Deliverables and Articles are changed from Contract terms in
1247: -- Standard Contract template
1248: --Notes:

Line 1247: -- Standard Contract template

1243: -- DELIVERABLES_CHANGED
1244: -- Deliverables are changed from Contract terms in Standard Contract template
1245: -- ALL_CHANGED
1246: -- Deliverables and Articles are changed from Contract terms in
1247: -- Standard Contract template
1248: --Notes:
1249: -- None
1250: --Testing:
1251: -- Test this API by Changing contract terms, by not changing Contract terms

Line 1256: PROCEDURE IS_STANDARD_CONTRACT (itemtype IN VARCHAR2,

1252: -- and for POs which are not Procurement Contract.
1253: -- For more details refer to UT test scripts in DLD
1254: --End of Comments
1255: -------------------------------------------------------------------------------
1256: PROCEDURE IS_STANDARD_CONTRACT (itemtype IN VARCHAR2,
1257: itemkey IN VARCHAR2,
1258: actid IN NUMBER,
1259: funcmode IN VARCHAR2,
1260: result OUT NOCOPY VARCHAR2) IS

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

1274: l_contracts_call_exception exception;
1275: BEGIN
1276: IF (g_po_wf_debug = 'Y') THEN
1277: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
1278: '10: Start function IS_STANDARD_CONTRACT ');
1279: END IF;
1280: -- Do nothing in cancel or timeout mode
1281: IF (funcmode <> WF_ENGINE.eng_run) then
1282: result := WF_ENGINE.eng_null;

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

1295: x_po_header_id =>l_po_header_id,
1296: x_po_doc_type =>l_po_doc_type,
1297: x_po_doc_subtype =>l_po_doc_subtype);
1298:
1299: --Call contracts to find out if contract terms deviated from standard template
1300:
1301: result :=OKC_TERMS_UTIL_GRP.Deviation_From_Standard(
1302: p_api_version => 1.0,
1303: p_doc_id => l_po_header_id,

Line 1301: result :=OKC_TERMS_UTIL_GRP.Deviation_From_Standard(

1297: x_po_doc_subtype =>l_po_doc_subtype);
1298:
1299: --Call contracts to find out if contract terms deviated from standard template
1300:
1301: result :=OKC_TERMS_UTIL_GRP.Deviation_From_Standard(
1302: p_api_version => 1.0,
1303: p_doc_id => l_po_header_id,
1304: p_doc_type => PO_CONTERMS_UTL_GRP.Get_Po_Contract_Doctype(l_po_doc_subtype),
1305: x_return_status => l_return_status,

Line 1329: '200 End: IS_STANDARD_CONTRACT ');

1325: END IF; -- if conterms exist
1326:
1327: IF (g_po_wf_debug = 'Y') THEN
1328: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
1329: '200 End: IS_STANDARD_CONTRACT ');
1330: END IF;
1331:
1332:
1333: EXCEPTION

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

1334: -- Handle Exceptions and re raise
1335: WHEN l_contracts_call_exception then
1336: IF (g_po_wf_debug = 'Y') THEN
1337: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
1338: '250: End contracts_call_exception: IS_STANDARD_CONTRACT ');
1339: show_error(itemtype => itemtype,
1340: itemkey => itemkey,
1341: p_api_name =>'OKC_TERMS_UTIl_GRP.DEVIATION_FROM_STANDARD',
1342: p_return_status => l_return_status);

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

1337: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
1338: '250: End contracts_call_exception: IS_STANDARD_CONTRACT ');
1339: show_error(itemtype => itemtype,
1340: itemkey => itemkey,
1341: p_api_name =>'OKC_TERMS_UTIl_GRP.DEVIATION_FROM_STANDARD',
1342: p_return_status => l_return_status);
1343: END IF;
1344: l_doc_string := PO_REQAPPROVAL_INIT1.get_error_doc(itemType, itemkey);
1345: l_preparer_user_name := PO_REQAPPROVAL_INIT1.get_preparer_user_name(itemType, itemkey);

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

1342: p_return_status => l_return_status);
1343: END IF;
1344: l_doc_string := PO_REQAPPROVAL_INIT1.get_error_doc(itemType, itemkey);
1345: l_preparer_user_name := PO_REQAPPROVAL_INIT1.get_preparer_user_name(itemType, itemkey);
1346: wf_core.context('PO_CONTERMS_WF_PVT', 'IS_STANDARD_CONTRACT', 'l_contracts_call_Exception');
1347:
1348: PO_REQAPPROVAL_INIT1.send_error_notif(itemType, itemkey, l_preparer_user_name,
1349: l_doc_string, FND_MSG_PUB.Get(p_msg_index=>1,p_encoded =>'F' ),
1350: 'PO_CONTERMS_WF_PVT.IS_STANDARD_CONTRACT');

Line 1350: 'PO_CONTERMS_WF_PVT.IS_STANDARD_CONTRACT');

1346: wf_core.context('PO_CONTERMS_WF_PVT', 'IS_STANDARD_CONTRACT', 'l_contracts_call_Exception');
1347:
1348: PO_REQAPPROVAL_INIT1.send_error_notif(itemType, itemkey, l_preparer_user_name,
1349: l_doc_string, FND_MSG_PUB.Get(p_msg_index=>1,p_encoded =>'F' ),
1350: 'PO_CONTERMS_WF_PVT.IS_STANDARD_CONTRACT');
1351: RAISE;
1352:
1353: WHEN OTHERS THEN
1354: IF (g_po_wf_debug = 'Y') THEN

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

1352:
1353: WHEN OTHERS THEN
1354: IF (g_po_wf_debug = 'Y') THEN
1355: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
1356: '300: End IN Exception: IS_STANDARD_CONTRACT ');
1357: END IF;
1358: l_doc_string := PO_REQAPPROVAL_INIT1.get_error_doc(itemType, itemkey);
1359: l_preparer_user_name := PO_REQAPPROVAL_INIT1.get_preparer_user_name(itemType, itemkey);
1360: wf_core.context('PO_CONTERMS_WF_PVT', 'IS_STANDARD_CONTRACT', 'l_contracts_call_Exception');

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

1356: '300: End IN Exception: IS_STANDARD_CONTRACT ');
1357: END IF;
1358: l_doc_string := PO_REQAPPROVAL_INIT1.get_error_doc(itemType, itemkey);
1359: l_preparer_user_name := PO_REQAPPROVAL_INIT1.get_preparer_user_name(itemType, itemkey);
1360: wf_core.context('PO_CONTERMS_WF_PVT', 'IS_STANDARD_CONTRACT', 'l_contracts_call_Exception');
1361:
1362: PO_REQAPPROVAL_INIT1.send_error_notif(itemType, itemkey, l_preparer_user_name,
1363: l_doc_string, sqlerrm,
1364: 'PO_CONTERMS_WF_PVT.IS_STANDARD_CONTRACT');

Line 1364: 'PO_CONTERMS_WF_PVT.IS_STANDARD_CONTRACT');

1360: wf_core.context('PO_CONTERMS_WF_PVT', 'IS_STANDARD_CONTRACT', 'l_contracts_call_Exception');
1361:
1362: PO_REQAPPROVAL_INIT1.send_error_notif(itemType, itemkey, l_preparer_user_name,
1363: l_doc_string, sqlerrm,
1364: 'PO_CONTERMS_WF_PVT.IS_STANDARD_CONTRACT');
1365: RAISE;
1366:
1367: END IS_STANDARD_CONTRACT;
1368: -------------------------------------------------------------------------------

Line 1367: END IS_STANDARD_CONTRACT;

1363: l_doc_string, sqlerrm,
1364: 'PO_CONTERMS_WF_PVT.IS_STANDARD_CONTRACT');
1365: RAISE;
1366:
1367: END IS_STANDARD_CONTRACT;
1368: -------------------------------------------------------------------------------
1369: --Start of Comments
1370: --Name: IS_CONTRACT_TEMPLATE_EXPIRED
1371: --Pre-reqs:

Line 1384: -- Standard workflow Parameter.

1380: -- to determine if Contract terms template being used has expired or not
1381: --Parameters:
1382: --IN:
1383: --itemtype
1384: -- Standard workflow Parameter.
1385: --itemkey
1386: -- Standard workflow parameter
1387: --actid
1388: -- Standard workflow parameter

Line 1386: -- Standard workflow parameter

1382: --IN:
1383: --itemtype
1384: -- Standard workflow Parameter.
1385: --itemkey
1386: -- Standard workflow parameter
1387: --actid
1388: -- Standard workflow parameter
1389: --funcmode
1390: -- Standard workflow parameter

Line 1388: -- Standard workflow parameter

1384: -- Standard workflow Parameter.
1385: --itemkey
1386: -- Standard workflow parameter
1387: --actid
1388: -- Standard workflow parameter
1389: --funcmode
1390: -- Standard workflow parameter
1391: --OUT:
1392: --Result

Line 1390: -- Standard workflow parameter

1386: -- Standard workflow parameter
1387: --actid
1388: -- Standard workflow parameter
1389: --funcmode
1390: -- Standard workflow parameter
1391: --OUT:
1392: --Result
1393: -- Result of the call
1394: -- Possible Return Values:

Line 1534: -- Standard workflow Parameter.

1530: -- to determine if Contract terms have articles attached to Purchase Order
1531: --Parameters:
1532: --IN:
1533: --itemtype
1534: -- Standard workflow Parameter.
1535: --itemkey
1536: -- Standard workflow parameter
1537: --actid
1538: -- Standard workflow parameter

Line 1536: -- Standard workflow parameter

1532: --IN:
1533: --itemtype
1534: -- Standard workflow Parameter.
1535: --itemkey
1536: -- Standard workflow parameter
1537: --actid
1538: -- Standard workflow parameter
1539: --funcmode
1540: -- Standard workflow parameter

Line 1538: -- Standard workflow parameter

1534: -- Standard workflow Parameter.
1535: --itemkey
1536: -- Standard workflow parameter
1537: --actid
1538: -- Standard workflow parameter
1539: --funcmode
1540: -- Standard workflow parameter
1541: --OUT:
1542: --Result

Line 1540: -- Standard workflow parameter

1536: -- Standard workflow parameter
1537: --actid
1538: -- Standard workflow parameter
1539: --funcmode
1540: -- Standard workflow parameter
1541: --OUT:
1542: --Result
1543: -- Result of the call
1544: -- Possible Return Values:

Line 1547: -- ONLY_STANDARD

1543: -- Result of the call
1544: -- Possible Return Values:
1545: -- NONE
1546: -- There are no articles attached to this purchase order
1547: -- ONLY_STANDARD
1548: -- Only standard Articles exist on this purchase order
1549: -- NON_STANDARD
1550: -- Standard as well as non standard Articles exist on this purchase order
1551: --Notes:

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

1544: -- Possible Return Values:
1545: -- NONE
1546: -- There are no articles attached to this purchase order
1547: -- ONLY_STANDARD
1548: -- Only standard Articles exist on this purchase order
1549: -- NON_STANDARD
1550: -- Standard as well as non standard Articles exist on this purchase order
1551: --Notes:
1552: -- None

Line 1549: -- NON_STANDARD

1545: -- NONE
1546: -- There are no articles attached to this purchase order
1547: -- ONLY_STANDARD
1548: -- Only standard Articles exist on this purchase order
1549: -- NON_STANDARD
1550: -- Standard as well as non standard Articles exist on this purchase order
1551: --Notes:
1552: -- None
1553: --Testing:

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

1546: -- There are no articles attached to this purchase order
1547: -- ONLY_STANDARD
1548: -- Only standard Articles exist on this purchase order
1549: -- NON_STANDARD
1550: -- Standard as well as non standard Articles exist on this purchase order
1551: --Notes:
1552: -- None
1553: --Testing:
1554: -- For more details refer to UT test scripts in DLD

Line 1686: -- Standard workflow Parameter.

1682: -- to determine if contract articles were amended in this revision
1683: --Parameters:
1684: --IN:
1685: --itemtype
1686: -- Standard workflow Parameter.
1687: --itemkey
1688: -- Standard workflow parameter
1689: --actid
1690: -- Standard workflow parameter

Line 1688: -- Standard workflow parameter

1684: --IN:
1685: --itemtype
1686: -- Standard workflow Parameter.
1687: --itemkey
1688: -- Standard workflow parameter
1689: --actid
1690: -- Standard workflow parameter
1691: --funcmode
1692: -- Standard workflow parameter

Line 1690: -- Standard workflow parameter

1686: -- Standard workflow Parameter.
1687: --itemkey
1688: -- Standard workflow parameter
1689: --actid
1690: -- Standard workflow parameter
1691: --funcmode
1692: -- Standard workflow parameter
1693: --OUT:
1694: --Result

Line 1692: -- Standard workflow parameter

1688: -- Standard workflow parameter
1689: --actid
1690: -- Standard workflow parameter
1691: --funcmode
1692: -- Standard workflow parameter
1693: --OUT:
1694: --Result
1695: -- Result of the call
1696: -- Possible Return Values:

Line 1699: -- ONLY_STANDARD

1695: -- Result of the call
1696: -- Possible Return Values:
1697: -- NONE
1698: -- No articles were amended in this revision of purchase order
1699: -- ONLY_STANDARD
1700: -- Only standard Articles were amended in this revision of purchase order
1701: -- NON_STANDARD
1702: -- Standard as well as non standard Articles were amended in this revision of purchase order
1703: --Notes:

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

1696: -- Possible Return Values:
1697: -- NONE
1698: -- No articles were amended in this revision of purchase order
1699: -- ONLY_STANDARD
1700: -- Only standard Articles were amended in this revision of purchase order
1701: -- NON_STANDARD
1702: -- Standard as well as non standard Articles were amended in this revision of purchase order
1703: --Notes:
1704: -- None

Line 1701: -- NON_STANDARD

1697: -- NONE
1698: -- No articles were amended in this revision of purchase order
1699: -- ONLY_STANDARD
1700: -- Only standard Articles were amended in this revision of purchase order
1701: -- NON_STANDARD
1702: -- Standard as well as non standard Articles were amended in this revision of purchase order
1703: --Notes:
1704: -- None
1705: --Testing:

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

1698: -- No articles were amended in this revision of purchase order
1699: -- ONLY_STANDARD
1700: -- Only standard Articles were amended in this revision of purchase order
1701: -- NON_STANDARD
1702: -- Standard as well as non standard Articles were amended in this revision of purchase order
1703: --Notes:
1704: -- None
1705: --Testing:
1706: -- For more details refer to UT test scripts in DLD

Line 1738: result := 'NON_STANDARD';

1734: IF (funcmode <> WF_ENGINE.eng_run) then
1735: result := WF_ENGINE.eng_null;
1736: return;
1737: END IF;
1738: result := 'NON_STANDARD';
1739: l_conterms_yn := PO_wf_Util_Pkg.GetItemAttrText(
1740: itemtype => itemtype,
1741: itemkey => itemkey,
1742: aname => 'CONTERMS_EXIST_FLAG');

Line 1839: -- Standard workflow Parameter.

1835: -- to determine if contract deliverables are attached to PO
1836: --Parameters:
1837: --IN:
1838: --itemtype
1839: -- Standard workflow Parameter.
1840: --itemkey
1841: -- Standard workflow parameter
1842: --actid
1843: -- Standard workflow parameter

Line 1841: -- Standard workflow parameter

1837: --IN:
1838: --itemtype
1839: -- Standard workflow Parameter.
1840: --itemkey
1841: -- Standard workflow parameter
1842: --actid
1843: -- Standard workflow parameter
1844: --funcmode
1845: -- Standard workflow parameter

Line 1843: -- Standard workflow parameter

1839: -- Standard workflow Parameter.
1840: --itemkey
1841: -- Standard workflow parameter
1842: --actid
1843: -- Standard workflow parameter
1844: --funcmode
1845: -- Standard workflow parameter
1846: --OUT:
1847: --Result

Line 1845: -- Standard workflow parameter

1841: -- Standard workflow parameter
1842: --actid
1843: -- Standard workflow parameter
1844: --funcmode
1845: -- Standard workflow parameter
1846: --OUT:
1847: --Result
1848: -- Result of the call
1849: -- Possible Return Values:

Line 1995: -- Standard workflow Parameter.

1991: -- to determine if contract deliverables were amended in this revision
1992: --Parameters:
1993: --IN:
1994: --itemtype
1995: -- Standard workflow Parameter.
1996: --itemkey
1997: -- Standard workflow parameter
1998: --actid
1999: -- Standard workflow parameter

Line 1997: -- Standard workflow parameter

1993: --IN:
1994: --itemtype
1995: -- Standard workflow Parameter.
1996: --itemkey
1997: -- Standard workflow parameter
1998: --actid
1999: -- Standard workflow parameter
2000: --funcmode
2001: -- Standard workflow parameter

Line 1999: -- Standard workflow parameter

1995: -- Standard workflow Parameter.
1996: --itemkey
1997: -- Standard workflow parameter
1998: --actid
1999: -- Standard workflow parameter
2000: --funcmode
2001: -- Standard workflow parameter
2002: --OUT:
2003: --Result

Line 2001: -- Standard workflow parameter

1997: -- Standard workflow parameter
1998: --actid
1999: -- Standard workflow parameter
2000: --funcmode
2001: -- Standard workflow parameter
2002: --OUT:
2003: --Result
2004: -- Result of the call
2005: -- Possible Return Values:

Line 2157: -- STANDARD

2153: --p_bus_doc_type
2154: -- PA - Purchase Agreement
2155: -- PO - Purchase Order
2156: --p_bus_doc_subtype
2157: -- STANDARD
2158: -- BALNKET
2159: -- CONTRACT
2160: --p_bus_doc_version
2161: -- Document revision number