DBA Data[Home] [Help]

APPS.CST_RECEIPTACCRUALPEREND_PVT dependencies on CST_PER_END_ACCRUALS_TEMP

Line 120: -- CST_PER_END_ACCRUALS_TEMP.

116:
117: -------------------------------------------------------------------------
118: -- Call the common API CST_PerEndAccruals_PVT.Create_PerEndAccruals()
119: -- This API creates period end accrual entries in the temporary table
120: -- CST_PER_END_ACCRUALS_TEMP.
121: -------------------------------------------------------------------------
122: l_stmt_num := 40;
123: CST_PerEndAccruals_PVT.Create_PerEndAccruals (
124: p_api_version => 1.0,

Line 331: -- Cursor for fetching data from temp table CST_PER_END_ACCRUALS_TEMP

327: l_conc_program_id NUMBER;
328: l_inv_org_id NUMBER;
329: l_po_number VARCHAR2(20);
330:
331: -- Cursor for fetching data from temp table CST_PER_END_ACCRUALS_TEMP
332: CURSOR l_accounting_events_csr IS
333: SELECT shipment_id,
334: distribution_id,
335: quantity_received,

Line 346: FROM cst_per_end_accruals_temp;

342: currency_code,
343: currency_conversion_type,
344: currency_conversion_rate,
345: currency_conversion_date
346: FROM cst_per_end_accruals_temp;
347:
348: BEGIN
349: -- Standard Start of API savepoint
350: SAVEPOINT Seed_RcvAccountingEvents_PVT;

Line 728: -- CST_PER_END_ACCRUALS_TEMP, and populates PL/SQL tables

724:
725: -----------------------------------------------------------------------------
726: -- PROCEDURE : Create_AccrualAccount
727: -- DESCRIPTION : The procedure fetches data from temp table
728: -- CST_PER_END_ACCRUALS_TEMP, and populates PL/SQL tables
729: -- with the corresponding accrual info for RCV_RECEIVING_SUB_LEDGER
730: -----------------------------------------------------------------------------
731: PROCEDURE Create_AccrualAccount
732: (

Line 813: FROM cst_per_end_accruals_temp cpea,

809: pod.quantity_ordered ) entered_nr_tax,
810: pod.code_combination_id act_debit_ccid,
811: pod.accrual_account_id act_credit_ccid,
812: pod.budget_account_id enc_credit_ccid
813: FROM cst_per_end_accruals_temp cpea,
814: po_headers_all poh,
815: po_line_locations_all poll,
816: po_distributions_all pod,
817: fnd_currencies fnc1,