DBA Data[Home] [Help]

APPS.AST_UWQ_WRAPPER_PKG dependencies on FND_MSG_PUB

Line 258: FND_MSG_PUB.ADD;

254: END IF;
255:
256: IF fnd_profile.value('JTF_TASK_DEFAULT_OWNER_TYPE') <> 'RS_EMPLOYEE' THEN
257: FND_MESSAGE.Set_Name('AST', 'AST_UWQ_IMPROPER_OWNER_TYPE');
258: FND_MSG_PUB.ADD;
259: x_return_status := FND_API.G_RET_STS_ERROR;
260: -- x_msg_count := l_msg_count;
261: -- x_msg_data := l_msg_data;
262: RETURN;

Line 1692: FND_MSG_PUB.INITIALIZE;

1688: end if;
1689:
1690: if (l_access_flag <> 'Y') then
1691: x_return_status := 'E';
1692: FND_MSG_PUB.INITIALIZE;
1693: FND_MESSAGE.Set_Name('AST',l_message_name);
1694: FND_MSG_PUB.ADD;
1695: return;
1696: end if;

Line 1694: FND_MSG_PUB.ADD;

1690: if (l_access_flag <> 'Y') then
1691: x_return_status := 'E';
1692: FND_MSG_PUB.INITIALIZE;
1693: FND_MESSAGE.Set_Name('AST',l_message_name);
1694: FND_MSG_PUB.ADD;
1695: return;
1696: end if;
1697: end if;
1698: **/

Line 1950: l_count := FND_MSG_PUB.Count_Msg;

1946: end if;
1947:
1948: /**
1949: if x_return_status in ('E','U') then
1950: l_count := FND_MSG_PUB.Count_Msg;
1951: dbms_output.put_line('Update Opp: There are ' || l_count || ' messages.');
1952: FOR l_index IN 1..l_count LOOP
1953: my_message := FND_MSG_PUB.Get(
1954: p_msg_index => l_index,

Line 1953: my_message := FND_MSG_PUB.Get(

1949: if x_return_status in ('E','U') then
1950: l_count := FND_MSG_PUB.Count_Msg;
1951: dbms_output.put_line('Update Opp: There are ' || l_count || ' messages.');
1952: FOR l_index IN 1..l_count LOOP
1953: my_message := FND_MSG_PUB.Get(
1954: p_msg_index => l_index,
1955: p_encoded => FND_API.G_FALSE);
1956: dbms_output.put_line(substr(my_message,1,255));
1957: END LOOP;