DBA Data[Home] [Help]

APPS.ARP_AUTO_RULE dependencies on FND_MESSAGE

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

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

Line 2680: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',

2676: THEN
2677: IF PG_DEBUG in ('Y', 'C') THEN
2678: arp_standard.debug('create_distributions(): NULL Request_id');
2679: END IF;
2680: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',
2681: 'OBJECT', 'AUTO_RULE.CREATE_DISTRIBUTIONS',
2682: 'PARAMETER', 'ARP_STANDARD.PROFILE.REQUEST_ID' );
2683: END IF;
2684:

Line 2690: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',

2686: THEN
2687: IF PG_DEBUG in ('Y', 'C') THEN
2688: arp_standard.debug('create_distributions(): NULL Program_id');
2689: END IF;
2690: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',
2691: 'OBJECT', 'AUTO_RULE.CREATE_DISTRIBUTIONS',
2692: 'PARAMETER', 'ARP_STANDARD.PROFILE.PROGRAM_ID' );
2693: END IF;
2694:

Line 2700: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',

2696: THEN
2697: IF PG_DEBUG in ('Y', 'C') THEN
2698: arp_standard.debug('create_distributions(): NULL User_id');
2699: END IF;
2700: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',
2701: 'OBJECT', 'AUTO_RULE.CREATE_DISTRIBUTIONS',
2702: 'PARAMETER', 'ARP_STANDARD.PROFILE.USER_ID' );
2703: END IF;
2704:

Line 2710: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',

2706: THEN
2707: IF PG_DEBUG in ('Y', 'C') THEN
2708: arp_standard.debug('create_distributions(): NULL Program_app_id');
2709: END IF;
2710: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',
2711: 'OBJECT', 'AUTO_RULE.CREATE_DISTRIBUTIONS',
2712: 'PARAMETER', 'ARP_STANDARD.APPLICATION_ID' );
2713: END IF;
2714:

Line 2720: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',

2716: THEN
2717: IF PG_DEBUG in ('Y', 'C') THEN
2718: arp_standard.debug('create_distributions(): NULL Last_update_login');
2719: END IF;
2720: arp_standard.fnd_message( 'AR_PP_NULL_PARAMETER',
2721: 'OBJECT', 'AUTO_RULE.CREATE_DISTRIBUTIONS',
2722: 'PARAMETER', 'ARP_STANDARD.PROFILE.LAST_UPDATE_LOGIN' );
2723: END IF;
2724:

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

3046: END IF;
3047:
3048: /* Bug 2399504 - added handler for p_continue_on_error */
3049: IF (p_continue_on_error IS NULL) THEN
3050: /* This FND_MESSAGE call halts execution of program */
3051: arp_standard.fnd_message( 'GENERIC_MESSAGE',
3052: 'GENERIC_TEXT', error_message);
3053: RETURN( -1 );
3054: ELSE

Line 3051: arp_standard.fnd_message( 'GENERIC_MESSAGE',

3047:
3048: /* Bug 2399504 - added handler for p_continue_on_error */
3049: IF (p_continue_on_error IS NULL) THEN
3050: /* This FND_MESSAGE call halts execution of program */
3051: arp_standard.fnd_message( 'GENERIC_MESSAGE',
3052: 'GENERIC_TEXT', error_message);
3053: RETURN( -1 );
3054: ELSE
3055: return_warning := TRUE;

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

3123: run. */
3124: IF (return_warning AND p_trx_id IS NULL)
3125: THEN
3126: arp_standard.debug('Attempting to set WARNING return status');
3127: error_message := FND_MESSAGE.GET_STRING('AR','ARBARL_WARN_BAD_TRX');
3128:
3129: IF (FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING', error_message) = FALSE)
3130: THEN
3131: arp_standard.debug('Unable to set WARNING return status');