DBA Data[Home] [Help]

APPS.ARPT_SQL_FUNC_UTIL dependencies on RA_CUST_TRX_TYPES

Line 236: (name ra_cust_trx_types.name%type,

232: FUNCTION get_agreement_name(p_agreement_id IN NUMBER)
233: RETURN VARCHAR2;
234:
235: TYPE trx_type_rec_type IS RECORD
236: (name ra_cust_trx_types.name%type,
237: type ra_cust_trx_types.type%type,
238: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,
239: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,
240: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,

Line 237: type ra_cust_trx_types.type%type,

233: RETURN VARCHAR2;
234:
235: TYPE trx_type_rec_type IS RECORD
236: (name ra_cust_trx_types.name%type,
237: type ra_cust_trx_types.type%type,
238: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,
239: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,
240: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,
241: creation_sign ra_cust_trx_types.creation_sign%type,

Line 238: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,

234:
235: TYPE trx_type_rec_type IS RECORD
236: (name ra_cust_trx_types.name%type,
237: type ra_cust_trx_types.type%type,
238: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,
239: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,
240: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,
241: creation_sign ra_cust_trx_types.creation_sign%type,
242: post_to_gl ra_cust_trx_types.post_to_gl%type);

Line 239: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,

235: TYPE trx_type_rec_type IS RECORD
236: (name ra_cust_trx_types.name%type,
237: type ra_cust_trx_types.type%type,
238: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,
239: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,
240: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,
241: creation_sign ra_cust_trx_types.creation_sign%type,
242: post_to_gl ra_cust_trx_types.post_to_gl%type);
243:

Line 240: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,

236: (name ra_cust_trx_types.name%type,
237: type ra_cust_trx_types.type%type,
238: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,
239: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,
240: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,
241: creation_sign ra_cust_trx_types.creation_sign%type,
242: post_to_gl ra_cust_trx_types.post_to_gl%type);
243:
244: TYPE t_trx_type_table IS TABLE OF trx_type_rec_type

Line 241: creation_sign ra_cust_trx_types.creation_sign%type,

237: type ra_cust_trx_types.type%type,
238: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,
239: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,
240: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,
241: creation_sign ra_cust_trx_types.creation_sign%type,
242: post_to_gl ra_cust_trx_types.post_to_gl%type);
243:
244: TYPE t_trx_type_table IS TABLE OF trx_type_rec_type
245: INDEX BY BINARY_INTEGER;

Line 242: post_to_gl ra_cust_trx_types.post_to_gl%type);

238: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,
239: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,
240: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,
241: creation_sign ra_cust_trx_types.creation_sign%type,
242: post_to_gl ra_cust_trx_types.post_to_gl%type);
243:
244: TYPE t_trx_type_table IS TABLE OF trx_type_rec_type
245: INDEX BY BINARY_INTEGER;
246: