DBA Data[Home] [Help]

APPS.ASP_ALERTS_PUB dependencies on FND_MSG_PUB

Line 105: FND_MSG_PUB.initialize;

101:
102: -- Initialize message list IF p_init_msg_list is set to TRUE.
103: IF FND_API.to_Boolean(p_init_msg_list)
104: THEN
105: FND_MSG_PUB.initialize;
106: END IF;
107:
108: -- Initialize API return status to SUCCESS
109: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 122: FND_MSG_PUB.Count_And_Get(

118: fnd_log.string(l_debug_proc_level, l_debug_module, 'After opening Cursor get_subs_secured' );
119: end if;
120:
121: -- Standard call to get message count and IF count is 1, get message info.
122: FND_MSG_PUB.Count_And_Get(
123: p_count => x_msg_count,
124: p_data => x_msg_data );
125:
126: l_debug_module := 'asp.plsql.ASP_ALERTS_PUB.Get_Matching_Subscriptions.End';

Line 139: FND_MSG_PUB.Count_And_Get(

135: if(l_debug_proc_level >= l_debug_level) then
136: fnd_log.string(l_debug_proc_level, l_debug_module, 'Exception: NO_DATA_FOUND' );
137: end if;
138: if get_subs_secured%ISOPEN then CLOSE get_subs_secured; end if;
139: FND_MSG_PUB.Count_And_Get(
140: p_count => x_msg_count,
141: p_data => x_msg_data );
142: WHEN OTHERS THEN
143: --Print_Debug('Exception: others in ASP_ALERTS_PUB::Get_Matching_Subscriptions');

Line 158: FND_MSG_PUB.Count_And_Get(

154: end if;
155:
156: x_return_status := FND_API.G_RET_STS_ERROR;
157: if get_subs_secured%ISOPEN then CLOSE get_subs_secured; end if;
158: FND_MSG_PUB.Count_And_Get(
159: p_count => x_msg_count,
160: p_data => x_msg_data );
161:
162: END Get_Matching_Subscriptions;