DBA Data[Home] [Help]

APPS.BIS_PMV_UTIL dependencies on FND_LOBS

Line 39: from FND_LOBS

35: -- get file location
36: begin
37: select file_data
38: into loc
39: from FND_LOBS
40: where file_id = pFileId;
41: exception
42: when others then
43: htp.p(SQLERRM);

Line 83: from fnd_lobs

79: BEGIN
80:
81: select count(*)
82: into l_count
83: from fnd_lobs
84: where file_id = document_id;
85:
86: if l_count > 0 then
87: l_html_pieces := BIS_PMV_UTIL.readfndlobs(document_id);

Line 1370: from fnd_lobs

1366: BEGIN
1367: l_file_id := icx_call.decrypt(p_file_id);
1368: select file_content_type, file_data
1369: into content_type, data
1370: from fnd_lobs
1371: where file_id = l_file_id;
1372: END readBinaryFile;
1373:
1374: