DBA Data[Home] [Help]

APPS.ARP_UTIL dependencies on FND_MESSAGE

Line 128: /* fnd_message('STD-FUNCT-AMT-INV-PAR'); */

124: (min_acc_unit IS NULL)) OR
125: (amount IS NULL) ) THEN
126: BEGIN
127:
128: /* fnd_message('STD-FUNCT-AMT-INV-PAR'); */
129:
130: RAISE invalid_params;
131:
132: END;

Line 148: /* fnd_message('STD-FUNCT-AMT-CURR-NF',

144: CLOSE curr_info;
145:
146: IF (curr.currency_code IS NULL) THEN
147:
148: /* fnd_message('STD-FUNCT-AMT-CURR-NF',
149: 'CURR',
150: currency_code); */
151:
152: RAISE invalid_params;

Line 1037: FND_MESSAGE.set_name( 'AR', 'AR_INVALID_APP_GL_DATE' );

1033: END IF;
1034: --
1035: l_ret_code := is_gl_date_valid( p_gl_date );
1036: IF ( l_ret_code = FALSE ) THEN
1037: FND_MESSAGE.set_name( 'AR', 'AR_INVALID_APP_GL_DATE' );
1038: FND_MESSAGE.set_token( 'GL_DATE', TO_CHAR( p_gl_date ) );
1039: APP_EXCEPTION.raise_exception;
1040: END IF;
1041: --

Line 1038: FND_MESSAGE.set_token( 'GL_DATE', TO_CHAR( p_gl_date ) );

1034: --
1035: l_ret_code := is_gl_date_valid( p_gl_date );
1036: IF ( l_ret_code = FALSE ) THEN
1037: FND_MESSAGE.set_name( 'AR', 'AR_INVALID_APP_GL_DATE' );
1038: FND_MESSAGE.set_token( 'GL_DATE', TO_CHAR( p_gl_date ) );
1039: APP_EXCEPTION.raise_exception;
1040: END IF;
1041: --
1042: IF PG_DEBUG in ('Y', 'C') THEN

Line 1417: FND_MESSAGE.SET_NAME('AR', 'AR_RAPI_DESC_FLEX_INVALID');

1413: /*Changed the 'V' with 'I' in below call for bug3291407 */
1414: IF ( NOT fnd_flex_descval.validate_desccols('AR',p_desc_flex_name,'I') )
1415: THEN
1416:
1417: FND_MESSAGE.SET_NAME('AR', 'AR_RAPI_DESC_FLEX_INVALID');
1418: FND_MESSAGE.SET_TOKEN('DFF_NAME',p_desc_flex_name);
1419: FND_MSG_PUB.ADD ;
1420: p_return_status := FND_API.G_RET_STS_ERROR;
1421: END IF;

Line 1418: FND_MESSAGE.SET_TOKEN('DFF_NAME',p_desc_flex_name);

1414: IF ( NOT fnd_flex_descval.validate_desccols('AR',p_desc_flex_name,'I') )
1415: THEN
1416:
1417: FND_MESSAGE.SET_NAME('AR', 'AR_RAPI_DESC_FLEX_INVALID');
1418: FND_MESSAGE.SET_TOKEN('DFF_NAME',p_desc_flex_name);
1419: FND_MSG_PUB.ADD ;
1420: p_return_status := FND_API.G_RET_STS_ERROR;
1421: END IF;
1422:

Line 1858: fnd_message.set_name('AR','AR_FLEX_CCID_ERROR');

1854: debug( 'Flexbuilder error: Original CCID ' || p_original_ccid);
1855: debug( 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);
1856: debug( 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);
1857: END IF;
1858: fnd_message.set_name('AR','AR_FLEX_CCID_ERROR');
1859: fnd_message.set_token('COA',TO_CHAR(p_coa_id));
1860: fnd_message.set_token('ORG_CCID',TO_CHAR(p_original_ccid));
1861: fnd_message.set_token('SUB_CCID',TO_CHAR(p_subs_ccid));
1862: RAISE;

Line 1859: fnd_message.set_token('COA',TO_CHAR(p_coa_id));

1855: debug( 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);
1856: debug( 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);
1857: END IF;
1858: fnd_message.set_name('AR','AR_FLEX_CCID_ERROR');
1859: fnd_message.set_token('COA',TO_CHAR(p_coa_id));
1860: fnd_message.set_token('ORG_CCID',TO_CHAR(p_original_ccid));
1861: fnd_message.set_token('SUB_CCID',TO_CHAR(p_subs_ccid));
1862: RAISE;
1863:

Line 1860: fnd_message.set_token('ORG_CCID',TO_CHAR(p_original_ccid));

1856: debug( 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);
1857: END IF;
1858: fnd_message.set_name('AR','AR_FLEX_CCID_ERROR');
1859: fnd_message.set_token('COA',TO_CHAR(p_coa_id));
1860: fnd_message.set_token('ORG_CCID',TO_CHAR(p_original_ccid));
1861: fnd_message.set_token('SUB_CCID',TO_CHAR(p_subs_ccid));
1862: RAISE;
1863:
1864: WHEN OTHERS THEN

Line 1861: fnd_message.set_token('SUB_CCID',TO_CHAR(p_subs_ccid));

1857: END IF;
1858: fnd_message.set_name('AR','AR_FLEX_CCID_ERROR');
1859: fnd_message.set_token('COA',TO_CHAR(p_coa_id));
1860: fnd_message.set_token('ORG_CCID',TO_CHAR(p_original_ccid));
1861: fnd_message.set_token('SUB_CCID',TO_CHAR(p_subs_ccid));
1862: RAISE;
1863:
1864: WHEN OTHERS THEN
1865: IF PG_DEBUG in ('Y', 'C') THEN