DBA Data[Home] [Help]

APPS.GMA_STANDARD dependencies on FND_LOBS

Line 401: --fnd_lobs

397: --cj the whole idea is that instead of inserting one row in edr_files_b/tl tables
398: -- we would have to insert a row in:
399: -- edr_files_b/tl
400: -- fnd_documents
401: --fnd_lobs
402: --fnd_attached_documents (attach the file to a default enity named EDR_FILES_B
403:
404: --CJ look at the new definition of this package
405: --it would not have the BLOB col FILE_DATA

Line 445: -- and fnd_lobs

441: X_LAST_UPDATE_LOGIN =>p_last_update_login);
442:
443: --CJ now that the row is inserted in edr_files table
444: -- we have insert into fn_documents, fnd_attached_documents
445: -- and fnd_lobs
446:
447: --CJ to insert in fnd_documents and fnd_attached_dcouments
448: --use FND_ATTACHED_DOCUMENTS_PKG.Insert_Row
449: -- i am attaching the java code to help u understand

Line 498: -- into FND_LOBS

494: X_doc_attribute10=>p_attribute10,
495: X_create_doc=>'N');
496:
497: -- use a direct INSERT statement to insert
498: -- into FND_LOBS
499: -- i am attaching the java code for inserting into this table
500: --just to show u what the values of the parameters should be
501: INSERT into FND_LOBS
502: (file_id,

Line 501: INSERT into FND_LOBS

497: -- use a direct INSERT statement to insert
498: -- into FND_LOBS
499: -- i am attaching the java code for inserting into this table
500: --just to show u what the values of the parameters should be
501: INSERT into FND_LOBS
502: (file_id,
503: file_name,
504: file_data,
505: file_content_type,