DBA Data[Home] [Help]

APPS.QPR_REPORT_TYPE_LINES_PKG dependencies on FND_LOAD_UTIL

Line 31: l_user_id := FND_LOAD_UTIL.OWNER_ID(P_OWNER);

27: l_mod_insert_clob clob;
28: l_user_id NUMBER;
29: begin
30:
31: l_user_id := FND_LOAD_UTIL.OWNER_ID(P_OWNER);
32: dbms_lob.createtemporary(l_met_clob1,true);
33: dbms_lob.open(l_met_clob1,dbms_lob.lob_readwrite);
34:
35: dbms_lob.createtemporary(l_met_clob2,true);

Line 69: if ( P_REPORT_METADATA <> fnd_load_util.null_value ) then --is not null ) then

65: l_met_insert_clob := null;
66: l_opt_insert_clob := null;
67: l_mod_insert_clob := null;
68:
69: if ( P_REPORT_METADATA <> fnd_load_util.null_value ) then --is not null ) then
70: dbms_lob.createtemporary(l_met_insert_clob,true);
71: dbms_lob.open(l_met_insert_clob,dbms_lob.lob_readwrite);
72:
73: dbms_lob.write(l_met_clob1,length(P_REPORT_METADATA),1,P_REPORT_METADATA);

Line 77: if ( P_REPORT_METADATA_II <> fnd_load_util.null_value) then --is not null ) then

73: dbms_lob.write(l_met_clob1,length(P_REPORT_METADATA),1,P_REPORT_METADATA);
74: l_met_insert_clob := l_met_clob1;
75: end if;
76:
77: if ( P_REPORT_METADATA_II <> fnd_load_util.null_value) then --is not null ) then
78: dbms_lob.write(l_met_clob2,length(P_REPORT_METADATA_II),1,P_REPORT_METADATA_II);
79: dbms_lob.append(l_met_insert_clob,l_met_clob2);
80: end if;
81:

Line 82: if ( P_REPORT_METADATA_III <> fnd_load_util.null_value) then --is not null ) then

78: dbms_lob.write(l_met_clob2,length(P_REPORT_METADATA_II),1,P_REPORT_METADATA_II);
79: dbms_lob.append(l_met_insert_clob,l_met_clob2);
80: end if;
81:
82: if ( P_REPORT_METADATA_III <> fnd_load_util.null_value) then --is not null ) then
83: dbms_lob.write(l_met_clob3,length(P_REPORT_METADATA_III),1,P_REPORT_METADATA_III);
84: dbms_lob.append(l_met_insert_clob,l_met_clob3);
85: end if;
86:

Line 87: if ( P_REPORT_METADATA_IV <> fnd_load_util.null_value) then --is not null ) then

83: dbms_lob.write(l_met_clob3,length(P_REPORT_METADATA_III),1,P_REPORT_METADATA_III);
84: dbms_lob.append(l_met_insert_clob,l_met_clob3);
85: end if;
86:
87: if ( P_REPORT_METADATA_IV <> fnd_load_util.null_value) then --is not null ) then
88: dbms_lob.write(l_met_clob4,length(P_REPORT_METADATA_IV),1,P_REPORT_METADATA_IV);
89: dbms_lob.append(l_met_insert_clob,l_met_clob4);
90: end if;
91:

Line 92: if ( P_REPORT_OPTIONS <> fnd_load_util.null_value) then --is not null ) then

88: dbms_lob.write(l_met_clob4,length(P_REPORT_METADATA_IV),1,P_REPORT_METADATA_IV);
89: dbms_lob.append(l_met_insert_clob,l_met_clob4);
90: end if;
91:
92: if ( P_REPORT_OPTIONS <> fnd_load_util.null_value) then --is not null ) then
93: dbms_lob.createtemporary(l_opt_insert_clob,true);
94: dbms_lob.open(l_opt_insert_clob,dbms_lob.lob_readwrite);
95:
96: dbms_lob.write(l_opt_clob1,length(P_REPORT_OPTIONS),1,P_REPORT_OPTIONS);

Line 100: if ( P_REPORT_OPTIONS_II <> fnd_load_util.null_value) then --is not null ) then

96: dbms_lob.write(l_opt_clob1,length(P_REPORT_OPTIONS),1,P_REPORT_OPTIONS);
97: l_opt_insert_clob := l_opt_clob1;
98: end if;
99:
100: if ( P_REPORT_OPTIONS_II <> fnd_load_util.null_value) then --is not null ) then
101: dbms_lob.write(l_opt_clob2,length(P_REPORT_OPTIONS_II),1,P_REPORT_OPTIONS_II);
102: dbms_lob.append(l_opt_insert_clob,l_opt_clob2);
103: end if;
104:

Line 105: if ( P_REPORT_MODIFIERS <> fnd_load_util.null_value) then --is not null ) then

101: dbms_lob.write(l_opt_clob2,length(P_REPORT_OPTIONS_II),1,P_REPORT_OPTIONS_II);
102: dbms_lob.append(l_opt_insert_clob,l_opt_clob2);
103: end if;
104:
105: if ( P_REPORT_MODIFIERS <> fnd_load_util.null_value) then --is not null ) then
106: dbms_lob.createtemporary(l_mod_insert_clob,true);
107: dbms_lob.open(l_mod_insert_clob,dbms_lob.lob_readwrite);
108:
109: dbms_lob.write(l_mod_clob1,length(P_REPORT_MODIFIERS),1,P_REPORT_MODIFIERS);

Line 113: if ( P_REPORT_MODIFIERS_II <> fnd_load_util.null_value) then --is not null ) then

109: dbms_lob.write(l_mod_clob1,length(P_REPORT_MODIFIERS),1,P_REPORT_MODIFIERS);
110: l_mod_insert_clob := l_mod_clob1;
111: end if;
112:
113: if ( P_REPORT_MODIFIERS_II <> fnd_load_util.null_value) then --is not null ) then
114: dbms_lob.write(l_mod_clob2,length(P_REPORT_MODIFIERS_II),1,P_REPORT_MODIFIERS_II);
115: dbms_lob.append(l_mod_insert_clob,l_mod_clob2);
116: end if;
117: