DBA Data[Home] [Help]

APPS.CS_CHG_AUTO_SUB_CON_PKG dependencies on CS_TRANSACTION_TYPES

Line 192: cs_transaction_types tt

188: CURSOR cs_charge_flags(p_estimate_detail_id number) IS
189: SELECT nvl(edt.no_charge_flag,'N') chg_no_charge_flag,
190: nvl(tt.no_charge_flag,'N') txn_no_charge_flag
191: FROM cs_estimate_details edt,
192: cs_transaction_types tt
193: WHERE edt.estimate_detail_id = p_estimate_detail_id
194: AND tt.transaction_type_id = edt.transaction_type_id;
195: --
196: l_chg_no_charge_flag VARCHAR2(1);