DBA Data[Home] [Help]

APPS.GR_DISPATCH_HISTORY_PVT dependencies on EDR_FILES_B

Line 144: FROM edr_files_b

140:
141: --Cursor used to see if document,version is already in the system
142: CURSOR c_check_document_edr IS
143: SELECT fnd_document_id , version_label
144: FROM edr_files_b
145: WHERE original_file_name = p_document_name
146: AND version_label = nvl(p_document_version, version_label)
147: order by version_label desc;
148:

Line 157: FROM edr_files_b

153:
154: --Cursor used to see if document is already in the system
155: CURSOR c_get_doc_id IS
156: SELECT fnd_document_id
157: FROM edr_files_b
158: WHERE original_file_name = p_document_name;
159:
160: --Cursor used to validate document category
161: CURSOR c_val_document_category IS