DBA Data[Home] [Help]

APPS.ARP_AUTO_RULE dependencies on FND_MESSAGE

Line 132: error_message := FND_MESSAGE.GET_STRING('AR','AR_RAXTRX-1783');

128: IF gl_bump_t.EXISTS(i-1)
129: AND
130: gl_bump_t(i-1) IS NULL
131: THEN
132: error_message := FND_MESSAGE.GET_STRING('AR','AR_RAXTRX-1783');
133: arp_standard.debug('Cannot process this transaction...');
134: arp_standard.debug('Closed or closed pending period exists at ' || i || 'with start date ' ||
135: TO_CHAR( gl_start_t( i) , 'DD-MON-YY HH:MI:SS'));
136: arp_standard.debug(error_message);

Line 3000: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',

2996: THEN
2997: IF PG_DEBUG in ('Y', 'C') THEN
2998: arp_standard.debug('create_distributions(): NULL Request_id');
2999: END IF;
3000: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',
3001: 'OBJECT', 'AUTO_RULE.CREATE_DISTRIBUTIONS',
3002: 'PARAMETER', 'ARP_STANDARD.PROFILE.REQUEST_ID' );
3003: END IF;
3004:

Line 3010: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',

3006: THEN
3007: IF PG_DEBUG in ('Y', 'C') THEN
3008: arp_standard.debug('create_distributions(): NULL Program_id');
3009: END IF;
3010: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',
3011: 'OBJECT', 'AUTO_RULE.CREATE_DISTRIBUTIONS',
3012: 'PARAMETER', 'ARP_STANDARD.PROFILE.PROGRAM_ID' );
3013: END IF;
3014:

Line 3020: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',

3016: THEN
3017: IF PG_DEBUG in ('Y', 'C') THEN
3018: arp_standard.debug('create_distributions(): NULL User_id');
3019: END IF;
3020: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',
3021: 'OBJECT', 'AUTO_RULE.CREATE_DISTRIBUTIONS',
3022: 'PARAMETER', 'ARP_STANDARD.PROFILE.USER_ID' );
3023: END IF;
3024:

Line 3030: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',

3026: THEN
3027: IF PG_DEBUG in ('Y', 'C') THEN
3028: arp_standard.debug('create_distributions(): NULL Program_app_id');
3029: END IF;
3030: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',
3031: 'OBJECT', 'AUTO_RULE.CREATE_DISTRIBUTIONS',
3032: 'PARAMETER', 'ARP_STANDARD.APPLICATION_ID' );
3033: END IF;
3034:

Line 3040: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',

3036: THEN
3037: IF PG_DEBUG in ('Y', 'C') THEN
3038: arp_standard.debug('create_distributions(): NULL Last_update_login');
3039: END IF;
3040: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',
3041: 'OBJECT', 'AUTO_RULE.CREATE_DISTRIBUTIONS',
3042: 'PARAMETER', 'ARP_STANDARD.PROFILE.LAST_UPDATE_LOGIN' );
3043: END IF;
3044:

Line 3377: /* This FND_MESSAGE call halts execution of program */

3373: END IF;
3374:
3375: /* Bug 2399504 - added handler for p_continue_on_error */
3376: IF (p_continue_on_error IS NULL) THEN
3377: /* This FND_MESSAGE call halts execution of program */
3378: arp_standard.fnd_message( 'GENERIC_MESSAGE',
3379: 'GENERIC_TEXT', error_message);
3380: RETURN( -1 );
3381: ELSE

Line 3378: arp_standard.fnd_message( 'GENERIC_MESSAGE',

3374:
3375: /* Bug 2399504 - added handler for p_continue_on_error */
3376: IF (p_continue_on_error IS NULL) THEN
3377: /* This FND_MESSAGE call halts execution of program */
3378: arp_standard.fnd_message( 'GENERIC_MESSAGE',
3379: 'GENERIC_TEXT', error_message);
3380: RETURN( -1 );
3381: ELSE
3382: return_warning := TRUE;

Line 3492: error_message := FND_MESSAGE.GET_STRING('AR','ARBARL_WARN_BAD_TRX');

3488: run. */
3489: IF (return_warning AND p_trx_id IS NULL)
3490: THEN
3491: arp_standard.debug('Attempting to set WARNING return status');
3492: error_message := FND_MESSAGE.GET_STRING('AR','ARBARL_WARN_BAD_TRX');
3493:
3494: IF (FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING', error_message) = FALSE)
3495: THEN
3496: arp_standard.debug('Unable to set WARNING return status');