DBA Data[Home] [Help]

APPS.AR_DEPOSIT_VAL_PVT dependencies on AR_DEPOSIT_LIB_PVT

Line 30: if ar_deposit_lib_pvt.pg_profile_batch_source is null and

26: BEGIN
27: arp_util.debug('AR_DEPOSIT_VAL_PVT.Validate_batch_source()+');
28:
29: p_return_status := FND_API.G_RET_STS_SUCCESS;
30: if ar_deposit_lib_pvt.pg_profile_batch_source is null and
31: p_batch_source_id is null
32: then
33: FND_MESSAGE.set_name( 'AR', 'AR_DAPI_NO_BATCH' );
34: FND_MSG_PUB.Add;

Line 355: decode(nvl(ar_deposit_lib_pvt.pg_profile_trxln_excpt_flag,'Y'),

351: select lookup_code CODE
352: from ar_lookups
353: where lookup_type = 'TAX_CONTROL_FLAG' and
354: lookup_code <>
355: decode(nvl(ar_deposit_lib_pvt.pg_profile_trxln_excpt_flag,'Y'),
356: 'Y', '!@#$', 'N', 'E');
357: c_tax_flag c_tax_flag_cur%rowtype;
358: l_tax_flag_return_status VARCHAR2(1);
359: c_tax_flag_result VARCHAR2(1) := 'N';

Line 395: IF(NVL(ar_deposit_lib_pvt.pg_profile_doc_seq, 'N') = 'N' ) AND

391:
392:
393: --Validate document sequence value
394:
395: IF(NVL(ar_deposit_lib_pvt.pg_profile_doc_seq, 'N') = 'N' ) AND
396: p_doc_sequence_value IS NOT NULL
397: THEN
398: l_doc_seq_return_status := FND_API.G_RET_STS_ERROR ;
399: FND_MESSAGE.SET_NAME('AR','AR_RAPI_DOC_SEQ_VAL_INVALID');