DBA Data[Home] [Help]

APPS.OKL_RULE_PUB dependencies on FND_GLOBAL

Line 3882: pos:= instr(l_rest,fnd_global.newline);

3878: end if;
3879: pos:= instr(l_rest,'--LOV');
3880: if (pos<>0) then
3881: l_rest := substr(l_rest,pos);
3882: pos:= instr(l_rest,fnd_global.newline);
3883: l_rest := substr(l_rest,pos+length(fnd_global.newline));
3884: pos1:= instr(l_rest,'*/');
3885: l_where := l_where||' '||substr(l_rest,1,pos1-1);
3886: l_rest := substr(l_rest,pos1+2);

Line 3883: l_rest := substr(l_rest,pos+length(fnd_global.newline));

3879: pos:= instr(l_rest,'--LOV');
3880: if (pos<>0) then
3881: l_rest := substr(l_rest,pos);
3882: pos:= instr(l_rest,fnd_global.newline);
3883: l_rest := substr(l_rest,pos+length(fnd_global.newline));
3884: pos1:= instr(l_rest,'*/');
3885: l_where := l_where||' '||substr(l_rest,1,pos1-1);
3886: l_rest := substr(l_rest,pos1+2);
3887: end if;

Line 3894: pos:= instr(l_rest,fnd_global.newline);

3890: end if;
3891: pos:= instr(l_rest,'--'||p_what);
3892: if (pos<>0) then
3893: l_rest := substr(l_rest,pos+2+length(p_what));
3894: pos:= instr(l_rest,fnd_global.newline);
3895: l_rest := substr(l_rest,pos+length(fnd_global.newline));
3896: pos1:= instr(l_rest,'*/');
3897: l_where := l_where||' '||substr(l_rest,1,pos1-1);
3898: end if;

Line 3895: l_rest := substr(l_rest,pos+length(fnd_global.newline));

3891: pos:= instr(l_rest,'--'||p_what);
3892: if (pos<>0) then
3893: l_rest := substr(l_rest,pos+2+length(p_what));
3894: pos:= instr(l_rest,fnd_global.newline);
3895: l_rest := substr(l_rest,pos+length(fnd_global.newline));
3896: pos1:= instr(l_rest,'*/');
3897: l_where := l_where||' '||substr(l_rest,1,pos1-1);
3898: end if;
3899: return l_where;