DBA Data[Home] [Help]

APPS.OKC_ARTICLE_KEYWORD_PVT dependencies on FND_PROFILE

Line 19: return nvl(fnd_profile.value('AFLOG_ENABLED'),'N');

15:
16: function l_debug return varchar2
17: is
18: begin
19: return nvl(fnd_profile.value('AFLOG_ENABLED'),'N');
20: end;
21:
22: --
23: -- our concurrent programs:

Line 139: IF nvl(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N') = 'Y' THEN

135: 'Synchronize Clause Text Index', request_id, 0, 0, 1,
136: 'OKCARTSYNCCTX concurrent program', 'steps');
137:
138: --Modified for performance bug 6943402. Removing counter since its taking long time to fetch the value of counter.
139: IF nvl(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N') = 'Y' THEN
140: counter := check_pending_rows(starting);
141: END IF;
142:
143:

Line 149: IF FND_PROFILE.VALUE('AFLOG_ENABLED') = 'Y' THEN

145: fnd_file.put_line(fnd_file.log, 'Start synchronization ...');
146: sync;
147: fnd_file.put_line(fnd_file.log, 'Synchronization complete');
148:
149: IF FND_PROFILE.VALUE('AFLOG_ENABLED') = 'Y' THEN
150: counter := check_pending_rows(finish);
151: END IF;
152:
153: dbms_application_info.set_session_longops( rindex, slno, null, request_id, 0, 1, 1);