DBA Data[Home] [Help]

APPS.GMF_XLA_PKG dependencies on CM_MTHD_MST

Line 1800: cm_mthd_mst cmm

1796: gmf_fiscal_policies gfp,
1797: org_organization_definitions ood,
1798: gl_item_cst gic,
1799: gmf_period_statuses gps,
1800: cm_mthd_mst cmm
1801: WHERE mp.process_enabled_flag = 'Y'
1802: AND gfp.legal_entity_id = ood.legal_entity
1803: AND gfp.legal_entity_id = l_security_id_int_3
1804: AND mp.organization_id = ood.organization_id

Line 1824: cm_mthd_mst cmm

1820: gmf_fiscal_policies gfp,
1821: org_organization_definitions ood,
1822: gl_item_cst gic,
1823: gmf_period_statuses gps,
1824: cm_mthd_mst cmm
1825: WHERE mp.process_enabled_flag = 'Y'
1826: AND gfp.legal_entity_id = ood.legal_entity
1827: AND gfp.legal_entity_id = l_security_id_int_3
1828: AND mp.organization_id = ood.organization_id

Line 1841: FROM gmf_xla_extract_headers eh, cm_mthd_mst cmm, gmf_ledger_valuation_methods vm

1837:
1838: -- Get cost type and legal entity from extract headers
1839: CURSOR cur_le_cost_mthd IS
1840: SELECT DISTINCT cost_mthd_code, eh.legal_entity_id
1841: FROM gmf_xla_extract_headers eh, cm_mthd_mst cmm, gmf_ledger_valuation_methods vm
1842: WHERE eh.valuation_cost_type_id = cmm.cost_type_id
1843: AND vm.ledger_id = eh.ledger_id
1844: AND vm.cost_type_id = eh.valuation_cost_type_id
1845: AND eh.ledger_id = p_ledger_id

Line 3891: l_cost_method_type cm_mthd_mst.cost_type%TYPE;

3887: *===========================================================================*/
3888: PROCEDURE process_rval_txns(p_event VARCHAR2)
3889: IS
3890: l_procedure_name CONSTANT VARCHAR2(100) := 'process_rval_txns';
3891: l_cost_method_type cm_mthd_mst.cost_type%TYPE;
3892: BEGIN
3893:
3894: g_log_msg := 'Begin of procedure ' || l_procedure_name || ' for event ' || p_event;
3895:

Line 4063: FROM cm_mthd_mst

4059: */
4060:
4061: SELECT cost_type
4062: INTO l_cost_method_type
4063: FROM cm_mthd_mst
4064: WHERE cost_type_id = (SELECT xpae.SOURCE_ID_INT_3
4065: FROM xla_post_acctg_events_v xpae
4066: WHERE rownum = 1)
4067: ;