DBA Data[Home] [Help]

APPS.AP_WEB_OA_PREFERENCES_PKG dependencies on FND_MSG_PUB

Line 19: fnd_msg_pub.initialize;

15: AP_WEB_UTILITIES_PKG.LogProcedure('AP_WEB_OA_PREFERENCES_PKG',
16: 'start ValidateApprover');
17:
18: -- Initalize global message table
19: fnd_msg_pub.initialize;
20:
21: -- Validate approver and get the ID
22: AP_WEB_VALIDATE_UTIL.ValidateApprover(p_employee_id,
23: p_approver_name,

Line 30: fnd_msg_pub.add();

26:
27: -- Report error
28: IF (l_error_message IS NOT NULL) THEN
29: fnd_message.set_encoded(l_error_message);
30: fnd_msg_pub.add();
31: END IF;
32:
33: -- Report the errors
34: FND_MSG_PUB.count_and_get(p_count => p_msg_count,

Line 34: FND_MSG_PUB.count_and_get(p_count => p_msg_count,

30: fnd_msg_pub.add();
31: END IF;
32:
33: -- Report the errors
34: FND_MSG_PUB.count_and_get(p_count => p_msg_count,
35: p_data => p_msg_data);
36: p_return_status := '';
37:
38: AP_WEB_UTILITIES_PKG.LogProcedure('AP_WEB_OA_PREFERENCES_PKG',