DBA Data[Home] [Help]

APPS.PO_AUTOCREATE_DOC dependencies on PO_CORE_S2

Line 1539: l_base_currency := PO_CORE_S2.get_base_currency;

1535:
1536: x_progress := '001';
1537:
1538: -- The original query has been moved to the declare section as a cursor.
1539: l_base_currency := PO_CORE_S2.get_base_currency;
1540: l_current_org_id := PO_GA_PVT.get_current_org;
1541:
1542: OPEN c_contract_currency;
1543:

Line 1577: l_base_currency := PO_CORE_S2.get_base_currency;

1573:
1574: --
1575: IF (x_contract_id IS NOT NULL AND l_gc_flag = 'Y') THEN
1576:
1577: l_base_currency := PO_CORE_S2.get_base_currency;
1578:
1579: IF (l_base_currency <> l_currency) THEN -- conversion is needed
1580:
1581: -- Since a PO line referencing a gloabal contract must be in a PO

Line 4054: x_currency_code_doc := PO_CORE_S2.get_base_currency;

4050: -- If Currency code is null get the functional currency
4051: IF x_currency_code is not NULL THEN
4052: x_currency_code_doc := x_currency_code;
4053: ELSE
4054: x_currency_code_doc := PO_CORE_S2.get_base_currency;
4055: END IF;
4056:
4057: l_interface_rate_type := x_rate_type; --bug 3401653
4058: l_interface_rate_date := x_rate_date; --bug 3401653

Line 6510: l_base_currency := PO_CORE_S2.get_base_currency;

6506: elsif (x_contract_id_valid = x_source_doc_po_header_id) then
6507: -- bug 3079146
6508: -- if currency didn't match, don't create po
6509: -- so set the flag to true so that po won't be created.
6510: l_base_currency := PO_CORE_S2.get_base_currency;
6511:
6512: if ((x_source_currency_code is not null and x_contract_currency_code = x_source_currency_code) or (x_source_currency_code is null and x_contract_currency_code = l_base_currency)) then
6513:
6514: resultout := wf_engine.eng_completed || ':' || 'Y';