DBA Data[Home] [Help]

APPS.AMW_CREATE_LINES_PKG dependencies on FND_MSG_PUB

Line 56: FND_MSG_PUB.initialize;

52: x_return_status := FND_API.G_RET_STS_SUCCESS;
53:
54: -- Initialize message list if p_init_msg_list is set to TRUE.
55: IF FND_API.to_Boolean( l_init_msg_list ) THEN
56: FND_MSG_PUB.initialize;
57: END IF;
58:
59: ---02.16.2005 npanandi: need to delete existing lines for this changeRequest
60: ---and re-create rows with new process / risk / control associations

Line 104: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,

100: EXCEPTION
101: WHEN others THEN
102: rollback;
103: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
104: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,
105: p_count => x_msg_count,
106: p_data => x_msg_data);
107: --fnd_file.put_line (fnd_file.LOG, 'unexpected exception in create_lines: '||sqlerrm);
108: END CREATE_LINES;