DBA Data[Home] [Help]

APPS.OKC_ARTICLE_KEYWORD_PVT dependencies on FND_PROFILE

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

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

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

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

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

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