DBA Data[Home] [Help]

APPS.ADI_BINARY_FILE dependencies on FND_GFM

Line 154: v_access := fnd_gfm.authorize(v_media_id);

150: end if;
151: end if;
152: end if;
153: if (v_display_flag) then
154: v_access := fnd_gfm.authorize(v_media_id);
155: fnd_gfm.download(v_media_id, v_access);
156: else
157: -- using -1 to force a access denied error message to be returned to
158: -- calling page.

Line 155: fnd_gfm.download(v_media_id, v_access);

151: end if;
152: end if;
153: if (v_display_flag) then
154: v_access := fnd_gfm.authorize(v_media_id);
155: fnd_gfm.download(v_media_id, v_access);
156: else
157: -- using -1 to force a access denied error message to be returned to
158: -- calling page.
159: v_access := fnd_gfm.authorize(-1);

Line 159: v_access := fnd_gfm.authorize(-1);

155: fnd_gfm.download(v_media_id, v_access);
156: else
157: -- using -1 to force a access denied error message to be returned to
158: -- calling page.
159: v_access := fnd_gfm.authorize(-1);
160: fnd_gfm.download(v_media_id, v_access);
161: end if;
162: else
163: -- -- ghooker 26-FEB-07 bug 5873313

Line 160: fnd_gfm.download(v_media_id, v_access);

156: else
157: -- using -1 to force a access denied error message to be returned to
158: -- calling page.
159: v_access := fnd_gfm.authorize(-1);
160: fnd_gfm.download(v_media_id, v_access);
161: end if;
162: else
163: -- -- ghooker 26-FEB-07 bug 5873313
164: -- As all this is for 11i and abover all files should be coming from

Line 169: v_access := fnd_gfm.authorize(-1);

165: -- fnd_lobs in ADI and RM we will fail any file that does not meet
166: -- the criteria above.
167: -- using -1 to force a access denied error message to be returned to
168: -- calling page.
169: v_access := fnd_gfm.authorize(-1);
170: fnd_gfm.download(v_media_id, v_access);
171: end if;
172:
173: end if;

Line 170: fnd_gfm.download(v_media_id, v_access);

166: -- the criteria above.
167: -- using -1 to force a access denied error message to be returned to
168: -- calling page.
169: v_access := fnd_gfm.authorize(-1);
170: fnd_gfm.download(v_media_id, v_access);
171: end if;
172:
173: end if;
174: EXCEPTION