DBA Data[Home] [Help]

APPS.OE_ORDER_BOOK_UTIL dependencies on OE_CONTRACTS_UTIL

Line 1323: IF OE_Contracts_util.check_license() <> 'Y' THEN

1319: END IF;
1320: ****************************************************/
1321:
1322: --Check for licensing
1323: IF OE_Contracts_util.check_license() <> 'Y' THEN
1324: IF l_debug_level > 0 THEN
1325: oe_debug_pub.add('Contractual option not licensed, hence not performing article QA ', 3);
1326: END IF;
1327: ELSE

Line 1330: OE_CONTRACTS_UTIL.qa_articles (

1326: END IF;
1327: ELSE
1328:
1329:
1330: OE_CONTRACTS_UTIL.qa_articles (
1331: p_api_version => 1.0,
1332: p_doc_type => OE_CONTRACTS_UTIL.G_SO_DOC_TYPE,
1333: p_doc_id => p_header_id,
1334: x_qa_return_status => l_qa_return_status,

Line 1332: p_doc_type => OE_CONTRACTS_UTIL.G_SO_DOC_TYPE,

1328:
1329:
1330: OE_CONTRACTS_UTIL.qa_articles (
1331: p_api_version => 1.0,
1332: p_doc_type => OE_CONTRACTS_UTIL.G_SO_DOC_TYPE,
1333: p_doc_id => p_header_id,
1334: x_qa_return_status => l_qa_return_status,
1335: x_return_status => l_return_status,
1336: x_msg_count => l_msg_count,

Line 1997: IF OE_Contracts_util.check_license() <> 'Y' THEN

1993: x_return_status := FND_API.G_RET_STS_SUCCESS;
1994: x_error_count := 0;
1995:
1996: --Check for licensing
1997: IF OE_Contracts_util.check_license() <> 'Y' THEN
1998: IF l_debug_level > 0 THEN
1999: oe_debug_pub.add('Contractual option not licensed, hence not performing article QA ', 3);
2000: END IF;
2001: RETURN;

Line 2060: oe_debug_pub.add('Calling OE_CONTRACTS_UTIL.qa_articles for l_header_id_tbl('||I||'): '||l_header_id_tbl(I));

2056: --now run QA on header id's contained in PL/SQL table l_header_id_tbl
2057: J := 1;
2058: FOR I IN 1..p_header_count LOOP
2059: IF l_debug_level > 0 THEN
2060: oe_debug_pub.add('Calling OE_CONTRACTS_UTIL.qa_articles for l_header_id_tbl('||I||'): '||l_header_id_tbl(I));
2061: END IF;
2062:
2063: OE_CONTRACTS_UTIL.qa_articles (
2064: p_api_version => 1.0,

Line 2063: OE_CONTRACTS_UTIL.qa_articles (

2059: IF l_debug_level > 0 THEN
2060: oe_debug_pub.add('Calling OE_CONTRACTS_UTIL.qa_articles for l_header_id_tbl('||I||'): '||l_header_id_tbl(I));
2061: END IF;
2062:
2063: OE_CONTRACTS_UTIL.qa_articles (
2064: p_api_version => 1.0,
2065: p_doc_type => OE_CONTRACTS_UTIL.G_SO_DOC_TYPE,
2066: p_doc_id => TO_NUMBER(l_header_id_tbl(I)),
2067: x_qa_return_status => l_qa_return_status,

Line 2065: p_doc_type => OE_CONTRACTS_UTIL.G_SO_DOC_TYPE,

2061: END IF;
2062:
2063: OE_CONTRACTS_UTIL.qa_articles (
2064: p_api_version => 1.0,
2065: p_doc_type => OE_CONTRACTS_UTIL.G_SO_DOC_TYPE,
2066: p_doc_id => TO_NUMBER(l_header_id_tbl(I)),
2067: x_qa_return_status => l_qa_return_status,
2068: x_return_status => l_return_status,
2069: x_msg_count => l_msg_count,