DBA Data[Home] [Help]

APPS.PA_ADJUSTMENTS dependencies on FND_MESSAGE

Line 5062: FND_MESSAGE.SET_NAME('FND','FORM_RECORD_CHANGED');

5058:
5059: /* Bug#3598333 */
5060: FOR j in 1..i LOOP
5061: If pa_debug.Acquire_user_lock( 'PA_EI_ADJUST_'||to_char( ItemsIdTab(i)))<>0 then
5062: FND_MESSAGE.SET_NAME('FND','FORM_RECORD_CHANGED');
5063: APP_EXCEPTION.RAISE_EXCEPTION; /* AcquireLock */
5064: end if;
5065: END LOOP;
5066: /* Bug#3598333 */

Line 5101: FND_MESSAGE.SET_NAME('PA','PA_CAP_CANNOT_RELS_LOCK');

5097: /*Changes for 7371988 Starts here -- We will release the lock, hence issuing a commit in PAXEIADJ.pld now, instead of here for messages seeded in Client Extension*/
5098: IF ( temp_msg_type not in ('E','W')) then
5099: FOR j in 1..i LOOP
5100: If pa_debug.release_user_lock( 'PA_EI_ADJUST_'||to_char( ItemsIdTab(i)))<>0 then
5101: FND_MESSAGE.SET_NAME('PA','PA_CAP_CANNOT_RELS_LOCK');
5102: APP_EXCEPTION.RAISE_EXCEPTION; /* AcquireLock */
5103: end if;
5104: /*Changes for 7371988 end here -- We will release the lock, hence issuing a commit in PAXEIADJ.pld now, instead of here for messages seeded in Client Extension*/
5105: END LOOP;

Line 6771: fnd_message.parse_encoded(l_encoded_error_message,l_application_short_name,l_error_message_name);

6767: ,x_encoded_error_message => l_encoded_error_message) THEN /* Bug 4997739 */
6768:
6769: /* Bug 4997739 - Trap exceptions from workflow or eBTax API */
6770: IF l_encoded_error_message IS NOT NULL THEN
6771: fnd_message.parse_encoded(l_encoded_error_message,l_application_short_name,l_error_message_name);
6772: v_allow_adjustments := l_error_message_name;
6773: ELSE
6774: v_allow_adjustments := l_error_message_name;
6775: END IF;

Line 6814: fnd_message.parse_encoded(l_encoded_error_message,l_application_short_name,l_error_message_name);

6810: ,x_encoded_error_message => l_encoded_error_message) THEN /* Bug 4997739 */
6811:
6812: /* Bug 4997739 - Trap exceptions from workflow */
6813: IF l_encoded_error_message IS NOT NULL THEN
6814: fnd_message.parse_encoded(l_encoded_error_message,l_application_short_name,l_error_message_name);
6815: v_allow_adjustments := l_error_message_name;
6816: ELSE
6817: v_allow_adjustments := 'PA_SI_ADJ_LB_ACC_CHG_NOT_ALLOW';
6818: END IF;