37: p_file_id out nocopy NUMBER
38: ) IS
39: l_file_id NUMBER;
40: BEGIN
41: INSERT INTO fnd_lobs (
42: file_id,
43: file_content_type,
44: file_name,
45: file_format,
43: file_content_type,
44: file_name,
45: file_format,
46: file_data) VALUES (
47: fnd_lobs_s.nextval,
48: p_file_content_type,
49: p_file_name,
50: p_file_format,
51: empty_blob())