DBA Data[Home] [Help]

APPS.PO_SOURCING_PVT dependencies on PO_CORE_S

Line 228: PO_CORE_S.get_po_parameters(

224:
225: g_progress:='010';
226:
227: -- Get system defaults
228: PO_CORE_S.get_po_parameters(
229: x_currency_code => g_params_rec.currency_code,
230: x_coa_id => g_params_rec.coa_id,
231: x_po_encumberance_flag => g_params_rec.po_encumbrance_flag,
232: x_req_encumberance_flag => g_params_rec.req_encumbrance_flag,

Line 278: PO_CORE_S.get_period_name(

274:
275: g_progress:='020';
276:
277: IF(g_params_rec.po_encumbrance_flag = 'Y') THEN
278: PO_CORE_S.get_period_name(
279: x_sob_id => g_params_rec.sob_id,
280: x_period => g_params_rec.period_name,
281: x_gl_date => x_date);
282: END IF;

Line 350: --Using the procedure po_core_s.get_po_parameters

346: x_return_status := FND_API.G_RET_STS_SUCCESS;
347:
348: --Default all the required default po parameters from the financial system
349: --parameters,Po_system_parameters, receiving options and gl set of books.
350: --Using the procedure po_core_s.get_po_parameters
351: g_progress := '200';
352:
353: IF g_debug_stmt THEN
354: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,

Line 1382: x_document_num := po_core_sv1.default_po_unique_identifier

1378: x_document_num := REPLACE(x_doc_number,'-');
1379:
1380: IF Length(x_document_num) > 20 THEN
1381:
1382: x_document_num := po_core_sv1.default_po_unique_identifier
1383: (p_table_name => 'PO_HEADERS',
1384: p_org_id => g_cpa_csr.org_id
1385: );
1386:

Line 1390: x_document_num := po_core_sv1.default_po_unique_identifier

1386:
1387: END IF;
1388: ELSE
1389:
1390: x_document_num := po_core_sv1.default_po_unique_identifier
1391: (p_table_name => 'PO_HEADERS',
1392: p_org_id => g_cpa_csr.org_id
1393: );
1394: END IF; -- x_doc_number IS NOT NULL

Line 1417: PO_CORE_SV1.default_po_unique_identifier

1413: -- bug5176308
1414: -- Consolidate PO # generation code into one API
1415:
1416: x_document_num :=
1417: PO_CORE_SV1.default_po_unique_identifier
1418: ( p_table_name => 'PO_HEADERS',
1419: p_org_id => g_cpa_csr.org_id
1420: );
1421: