DBA Data[Home] [Help]

APPS.PA_ASSIGNMENT_UTILS dependencies on FND_NEW_MESSAGES

Line 634: l_message_text FND_NEW_MESSAGES.message_text%TYPE;

630: p_token1 IN VARCHAR2 DEFAULT NULL,
631: p_value1 IN VARCHAR2 DEFAULT NULL)
632: IS
633:
634: l_message_text FND_NEW_MESSAGES.message_text%TYPE;
635:
636: /* 2708879 - Added two conditions for application id and language code for the cursor get_message below */
637: CURSOR get_message IS
638: SELECT message_text

Line 639: FROM fnd_new_messages

635:
636: /* 2708879 - Added two conditions for application id and language code for the cursor get_message below */
637: CURSOR get_message IS
638: SELECT message_text
639: FROM fnd_new_messages
640: WHERE message_name = p_msg_name
641: and application_id = 275
642: and language_code = userenv('LANG');
643: