DBA Data[Home] [Help]

APPS.WSH_FOLDER_EXTENSIONS_PVT dependencies on FND_FOLDERS

Line 182: -- Only if record has been deleted from fnd_folders, delete it

178: END IF;
179: --
180: x_return_status := WSH_UTIL_CORE.G_RET_STS_SUCCESS;
181:
182: -- Only if record has been deleted from fnd_folders, delete it
183: -- from WSH custom table
184:
185: SELECT count(*)
186: INTO l_count

Line 187: FROM fnd_folders

183: -- from WSH custom table
184:
185: SELECT count(*)
186: INTO l_count
187: FROM fnd_folders
188: WHERE folder_id = p_folder_id;
189:
190: IF l_count = 0 THEN
191: l_flag := 'N';

Line 302: -- No need to check for records in fnd_folders

298: -- of buttons when doing Save-As,so delete existing records and then
299: -- create new for same folder id
300: IF l_flag = 'U' THEN
301: -- Delete all records and then Insert New Records
302: -- No need to check for records in fnd_folders
303: DELETE FROM wsh_folder_custom_actions
304: WHERE folder_id = l_folder_id;
305: END IF;
306: