DBA Data[Home] [Help]

APPS.OZF_AR_INTERFACE_PVT dependencies on RA_CUST_TRX_TYPES

Line 1083: FROM ra_cust_trx_types

1079: WHERE reason_code_id = p_id;
1080:
1081: CURSOR trx_type_gl_flag_csr(p_trx_type_id IN NUMBER) IS
1082: SELECT post_to_gl
1083: FROM ra_cust_trx_types
1084: WHERE cust_trx_type_id = p_trx_type_id;
1085:
1086: CURSOR csr_trx_type_payment_term(cv_claim_type_id IN NUMBER) IS
1087: SELECT default_term

Line 1088: FROM ra_cust_trx_types trx

1084: WHERE cust_trx_type_id = p_trx_type_id;
1085:
1086: CURSOR csr_trx_type_payment_term(cv_claim_type_id IN NUMBER) IS
1087: SELECT default_term
1088: FROM ra_cust_trx_types trx
1089: , ozf_claim_types_all_b ct
1090: WHERE trx.cust_trx_type_id = ct.dm_trx_type_id
1091: AND ct.claim_type_id = cv_claim_type_id;
1092: