DBA Data[Home] [Help]

APPS.ARPT_SQL_FUNC_UTIL dependencies on RA_CUST_TRX_TYPES

Line 244: (name ra_cust_trx_types.name%type,

240: FUNCTION get_agreement_name(p_agreement_id IN NUMBER)
241: RETURN VARCHAR2;
242:
243: TYPE trx_type_rec_type IS RECORD
244: (name ra_cust_trx_types.name%type,
245: type ra_cust_trx_types.type%type,
246: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,
247: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,
248: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,

Line 245: type ra_cust_trx_types.type%type,

241: RETURN VARCHAR2;
242:
243: TYPE trx_type_rec_type IS RECORD
244: (name ra_cust_trx_types.name%type,
245: type ra_cust_trx_types.type%type,
246: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,
247: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,
248: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,
249: creation_sign ra_cust_trx_types.creation_sign%type,

Line 246: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,

242:
243: TYPE trx_type_rec_type IS RECORD
244: (name ra_cust_trx_types.name%type,
245: type ra_cust_trx_types.type%type,
246: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,
247: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,
248: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,
249: creation_sign ra_cust_trx_types.creation_sign%type,
250: post_to_gl ra_cust_trx_types.post_to_gl%type);

Line 247: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,

243: TYPE trx_type_rec_type IS RECORD
244: (name ra_cust_trx_types.name%type,
245: type ra_cust_trx_types.type%type,
246: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,
247: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,
248: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,
249: creation_sign ra_cust_trx_types.creation_sign%type,
250: post_to_gl ra_cust_trx_types.post_to_gl%type);
251:

Line 248: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,

244: (name ra_cust_trx_types.name%type,
245: type ra_cust_trx_types.type%type,
246: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,
247: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,
248: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,
249: creation_sign ra_cust_trx_types.creation_sign%type,
250: post_to_gl ra_cust_trx_types.post_to_gl%type);
251:
252: TYPE t_trx_type_table IS TABLE OF trx_type_rec_type

Line 249: creation_sign ra_cust_trx_types.creation_sign%type,

245: type ra_cust_trx_types.type%type,
246: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,
247: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,
248: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,
249: creation_sign ra_cust_trx_types.creation_sign%type,
250: post_to_gl ra_cust_trx_types.post_to_gl%type);
251:
252: TYPE t_trx_type_table IS TABLE OF trx_type_rec_type
253: INDEX BY BINARY_INTEGER;

Line 250: post_to_gl ra_cust_trx_types.post_to_gl%type);

246: subseq_trx_type_id ra_cust_trx_types.subsequent_trx_type_id%type,
247: allow_overapplication_flag ra_cust_trx_types.allow_overapplication_flag%type,
248: natural_application_only_flag ra_cust_trx_types.natural_application_only_flag%type,
249: creation_sign ra_cust_trx_types.creation_sign%type,
250: post_to_gl ra_cust_trx_types.post_to_gl%type);
251:
252: TYPE t_trx_type_table IS TABLE OF trx_type_rec_type
253: INDEX BY BINARY_INTEGER;
254: