DBA Data[Home] [Help]

APPS.GR_DISPATCH_HISTORY_PVT dependencies on GR_UPLOAD_FILE_TMP

Line 181: FROM gr_upload_file_tmp

177:
178: --Cursor used to retrieve actual file from temp table
179: CURSOR c_get_file_data IS
180: SELECT file_data
181: FROM gr_upload_file_tmp
182: WHERE request_id = -12345;
183:
184: --Cursor used to retrieve the next dispatch history id
185: CURSOR c_get_dispatch_history_id IS

Line 466: Delete from gr_upload_file_tmp where request_id = -12345;

462: RAISE FILE_ERROR;
463: END IF;
464: CLOSE c_get_file_data;
465:
466: Delete from gr_upload_file_tmp where request_id = -12345;
467:
468: --Get the profile value to use to determine if file should be sent for approvals
469: l_document_managment := FND_PROFILE.Value('GR_DOC_MANAGEMENT');
470: