DBA Data[Home] [Help]

APPS.AMS_ADV_FILTER_PKG dependencies on AMS_UTILITY_PVT

Line 115: AMS_UTILITY_PVT.debug_message('Table Handler API: Update_row');

111: )
112: IS
113: l_flag VARCHAR2(4);
114: BEGIN
115: AMS_UTILITY_PVT.debug_message('Table Handler API: Update_row');
116:
117: Update JTF_PERZ_QUERY_PARAM
118: SET
119: parameter_name = DECODE( p_parameter_name, FND_API.g_miss_char, parameter_name, p_parameter_name),

Line 133: AMS_UTILITY_PVT.debug_message('Table Handler API: Update_row Flag '|| l_flag);

129: AND parameter_type = p_parameter_type ;
130:
131: IF (SQL%NOTFOUND) THEN
132: l_flag := 'true';
133: AMS_UTILITY_PVT.debug_message('Table Handler API: Update_row Flag '|| l_flag);
134: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
135: ELSE
136: commit;
137: END IF;