DBA Data[Home] [Help]

APPS.FND_STATS dependencies on FND_STATS_HIST_S

Line 215: SELECT fnd_stats_hist_s.nextval

211: request_id_l := FND_GLOBAL.CONC_REQUEST_ID; -- set request id to conc request id
212: elsif ( FND_GLOBAL.USER_ID > 0) THEN -- check if call from apps program
213: request_from :='P'; -- P for PROG , cal by program
214: -- generate it from sequence
215: SELECT fnd_stats_hist_s.nextval
216: INTO request_id_l
217: FROM dual;
218:
219: ELSE -- call not from within apps context, maybe sqlplus

Line 222: SELECT fnd_stats_hist_s.nextval

218:
219: ELSE -- call not from within apps context, maybe sqlplus
220: request_from:='U'; -- U for USER, called from sqlplus etc
221: -- generate it from sequence
222: SELECT fnd_stats_hist_s.nextval
223: INTO request_id_l
224: FROM dual;
225:
226: END IF;