DBA Data[Home] [Help]

APPS.EGO_UI_ITEM_PUB dependencies on FND_MSG_PUB

Line 2766: FND_MSG_PUB.Initialize;

2762:
2763: -- Initialize message list
2764: IF FND_API.To_Boolean(p_init_msg_list) THEN
2765: developer_debug (' ISS: Message list initialized ');
2766: FND_MSG_PUB.Initialize;
2767: END IF;
2768:
2769: developer_debug (' ISS: processing for transaction type ' || p_transaction_type);
2770: -- todo validate the parameters

Line 3224: FND_MSG_PUB.Add;

3220: ELSIF p_transaction_type = G_COPY_TRANSACTION_TYPE THEN
3221: -- transaction type = 'COPY'
3222: -- to be implemented
3223: FND_MESSAGE.Set_Name ('EGO', 'EGO_PROGRAM_NOT_IMPLEMENTED');
3224: FND_MSG_PUB.Add;
3225: RAISE FND_API.G_EXC_ERROR;
3226: END IF;
3227:
3228: IF FND_API.To_Boolean(p_commit) THEN

Line 3240: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE

3236: IF FND_API.To_Boolean(p_commit) THEN
3237: ROLLBACK TO Process_Item_Scalar;
3238: END IF;
3239: x_return_status := G_RET_STS_ERROR;
3240: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE
3241: ,p_count => x_msg_count
3242: ,p_data => x_msg_data);
3243: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
3244: IF FND_API.To_Boolean(p_commit) THEN

Line 3248: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE

3244: IF FND_API.To_Boolean(p_commit) THEN
3245: ROLLBACK TO Process_Item_Scalar;
3246: END IF;
3247: x_RETURN_STATUS := G_RET_STS_UNEXP_ERROR;
3248: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE
3249: ,p_count => x_msg_count
3250: ,p_data => x_msg_data);
3251: WHEN OTHERS THEN
3252: IF FND_API.To_Boolean(p_commit) THEN

Line 3261: FND_MSG_PUB.Add;

3257: FND_MESSAGE.Set_Name('EGO', 'EGO_PLSQL_ERR');
3258: FND_MESSAGE.Set_Token('PKG_NAME', G_PKG_NAME);
3259: FND_MESSAGE.Set_Token('API_NAME', l_api_name);
3260: FND_MESSAGE.Set_Token('SQL_ERR_MSG', SQLERRM);
3261: FND_MSG_PUB.Add;
3262: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE
3263: ,p_count => x_msg_count
3264: ,p_data => x_msg_data);
3265: END Process_Item;

Line 3262: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE

3258: FND_MESSAGE.Set_Token('PKG_NAME', G_PKG_NAME);
3259: FND_MESSAGE.Set_Token('API_NAME', l_api_name);
3260: FND_MESSAGE.Set_Token('SQL_ERR_MSG', SQLERRM);
3261: FND_MSG_PUB.Add;
3262: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE
3263: ,p_count => x_msg_count
3264: ,p_data => x_msg_data);
3265: END Process_Item;
3266: