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 978: FND_MESSAGE.set_name( 'AR', 'AR_INVALID_APP_GL_DATE' );

974: END IF;
975: --
976: l_ret_code := is_gl_date_valid( p_gl_date );
977: IF ( l_ret_code = FALSE ) THEN
978: FND_MESSAGE.set_name( 'AR', 'AR_INVALID_APP_GL_DATE' );
979: FND_MESSAGE.set_token( 'GL_DATE', TO_CHAR( p_gl_date ) );
980: APP_EXCEPTION.raise_exception;
981: END IF;
982: --

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

975: --
976: l_ret_code := is_gl_date_valid( p_gl_date );
977: IF ( l_ret_code = FALSE ) THEN
978: FND_MESSAGE.set_name( 'AR', 'AR_INVALID_APP_GL_DATE' );
979: FND_MESSAGE.set_token( 'GL_DATE', TO_CHAR( p_gl_date ) );
980: APP_EXCEPTION.raise_exception;
981: END IF;
982: --
983: IF PG_DEBUG in ('Y', 'C') THEN

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

1354: /*Changed the 'V' with 'I' in below call for bug3291407 */
1355: IF ( NOT fnd_flex_descval.validate_desccols('AR',p_desc_flex_name,'I') )
1356: THEN
1357:
1358: FND_MESSAGE.SET_NAME('AR', 'AR_RAPI_DESC_FLEX_INVALID');
1359: FND_MESSAGE.SET_TOKEN('DFF_NAME',p_desc_flex_name);
1360: FND_MSG_PUB.ADD ;
1361: p_return_status := FND_API.G_RET_STS_ERROR;
1362: END IF;

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

1355: IF ( NOT fnd_flex_descval.validate_desccols('AR',p_desc_flex_name,'I') )
1356: THEN
1357:
1358: FND_MESSAGE.SET_NAME('AR', 'AR_RAPI_DESC_FLEX_INVALID');
1359: FND_MESSAGE.SET_TOKEN('DFF_NAME',p_desc_flex_name);
1360: FND_MSG_PUB.ADD ;
1361: p_return_status := FND_API.G_RET_STS_ERROR;
1362: END IF;
1363:

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

1795: debug( 'Flexbuilder error: Original CCID ' || p_original_ccid);
1796: debug( 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);
1797: debug( 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);
1798: END IF;
1799: fnd_message.set_name('AR','AR_FLEX_CCID_ERROR');
1800: fnd_message.set_token('COA',TO_CHAR(p_coa_id));
1801: fnd_message.set_token('ORG_CCID',TO_CHAR(p_original_ccid));
1802: fnd_message.set_token('SUB_CCID',TO_CHAR(p_subs_ccid));
1803: RAISE;

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

1796: debug( 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);
1797: debug( 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);
1798: END IF;
1799: fnd_message.set_name('AR','AR_FLEX_CCID_ERROR');
1800: fnd_message.set_token('COA',TO_CHAR(p_coa_id));
1801: fnd_message.set_token('ORG_CCID',TO_CHAR(p_original_ccid));
1802: fnd_message.set_token('SUB_CCID',TO_CHAR(p_subs_ccid));
1803: RAISE;
1804:

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

1797: debug( 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);
1798: END IF;
1799: fnd_message.set_name('AR','AR_FLEX_CCID_ERROR');
1800: fnd_message.set_token('COA',TO_CHAR(p_coa_id));
1801: fnd_message.set_token('ORG_CCID',TO_CHAR(p_original_ccid));
1802: fnd_message.set_token('SUB_CCID',TO_CHAR(p_subs_ccid));
1803: RAISE;
1804:
1805: WHEN OTHERS THEN

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

1798: END IF;
1799: fnd_message.set_name('AR','AR_FLEX_CCID_ERROR');
1800: fnd_message.set_token('COA',TO_CHAR(p_coa_id));
1801: fnd_message.set_token('ORG_CCID',TO_CHAR(p_original_ccid));
1802: fnd_message.set_token('SUB_CCID',TO_CHAR(p_subs_ccid));
1803: RAISE;
1804:
1805: WHEN OTHERS THEN
1806: IF PG_DEBUG in ('Y', 'C') THEN