DBA Data[Home] [Help]

APPS.EDR_FILES_PUB dependencies on FND_LOBS

Line 339: --fnd_lobs

335: --the whole idea is that instead of inserting one row in edr_files_b/tl tables
336: -- we would have to insert a row in:
337: -- edr_files_b/tl
338: -- fnd_documents
339: --fnd_lobs
340: --fnd_attached_documents (attach the file to a default enity named EDR_FILES_B
341:
342: EDR_FILES_PKG.Insert_Row (
343: X_ROWID =>l_row_id,

Line 379: -- and fnd_lobs

375: X_LAST_UPDATE_LOGIN =>p_last_update_login);
376:
377: --now that the row is inserted in edr_files table
378: -- we have insert into fn_documents, fnd_attached_documents
379: -- and fnd_lobs
380:
381: --to insert in fnd_documents and fnd_attached_dcouments
382: --use FND_ATTACHED_DOCUMENTS_PKG.Insert_Row
383:

Line 435: -- into FND_LOBS

431: X_doc_attribute10=>p_attribute10,
432: X_create_doc=>'N');
433:
434: -- use a direct INSERT statement to insert
435: -- into FND_LOBS
436: INSERT into FND_LOBS
437: (file_id,
438: file_name,
439: file_data,

Line 436: INSERT into FND_LOBS

432: X_create_doc=>'N');
433:
434: -- use a direct INSERT statement to insert
435: -- into FND_LOBS
436: INSERT into FND_LOBS
437: (file_id,
438: file_name,
439: file_data,
440: file_content_type,