DBA Data[Home] [Help]

APPS.PA_HR_UPDATE_PA_ENTITIES dependencies on FND_MESSAGE

Line 3104: l_data := FND_MESSAGE.get_string('PA',p_msg_data);

3100: BEGIN
3101: IF nvl(p_msg_count,0) = 0 and p_msg_data is NULL THEN
3102: RETURN;
3103: Elsif nvl(p_msg_count,0) = 0 and p_msg_data is NOT NULL then
3104: l_data := FND_MESSAGE.get_string('PA',p_msg_data);
3105: wf_engine.SetItemAttrText
3106: ( itemtype => p_item_type
3107: , itemkey => p_item_key
3108: , aname => 'ERROR_MSG1'

Line 3118: -- so fnd_message.get_string is used instead of fnd_message.set encoded

3114: END IF;
3115:
3116: IF p_msg_count = 1 THEN
3117: /* -- this is commented as p_msg_data is string or code cannot be determined
3118: -- so fnd_message.get_string is used instead of fnd_message.set encoded
3119: -- IF p_msg_data IS NOT NULL THEN
3120: -- FND_MESSAGE.SET_ENCODED (p_msg_data);
3121: -- l_data := FND_MESSAGE.GET;
3122: */

Line 3120: -- FND_MESSAGE.SET_ENCODED (p_msg_data);

3116: IF p_msg_count = 1 THEN
3117: /* -- this is commented as p_msg_data is string or code cannot be determined
3118: -- so fnd_message.get_string is used instead of fnd_message.set encoded
3119: -- IF p_msg_data IS NOT NULL THEN
3120: -- FND_MESSAGE.SET_ENCODED (p_msg_data);
3121: -- l_data := FND_MESSAGE.GET;
3122: */
3123:
3124: -- Added to fix the Bug 1563218

Line 3121: -- l_data := FND_MESSAGE.GET;

3117: /* -- this is commented as p_msg_data is string or code cannot be determined
3118: -- so fnd_message.get_string is used instead of fnd_message.set encoded
3119: -- IF p_msg_data IS NOT NULL THEN
3120: -- FND_MESSAGE.SET_ENCODED (p_msg_data);
3121: -- l_data := FND_MESSAGE.GET;
3122: */
3123:
3124: -- Added to fix the Bug 1563218
3125: If p_msg_count = 1 and p_msg_data is not NULL then

Line 3128: l_data := FND_MESSAGE.get_string('PA',p_msg_data);

3124: -- Added to fix the Bug 1563218
3125: If p_msg_count = 1 and p_msg_data is not NULL then
3126: -- Added this to identify whether the incoming message is ENCODED or DECODED. Bug 8986089
3127: IF (Upper(p_msg_data) = p_msg_data) THEN
3128: l_data := FND_MESSAGE.get_string('PA',p_msg_data);
3129: ELSE
3130: l_data := p_msg_data;
3131: END IF;
3132: End if;

Line 3161: l_data := FND_MESSAGE.get_string('PA',p_msg_data);

3157: p_msg_index_out => l_msg_index_out );
3158:
3159: -- Added to fix the Bug 1563218
3160: if l_data is NULL then
3161: l_data := FND_MESSAGE.get_string('PA',p_msg_data);
3162: end if;
3163:
3164: l_item_attr_name := 'ERROR_MSG'||i;
3165: wf_engine.SetItemAttrText