DBA Data[Home] [Help]

APPS.AP_WEB_CC_NOTIFICATIONS_PKG dependencies on WF_CORE

Line 127: rs := rs||wf_core.newline||' 126: '>
';
127: rs := rs||wf_core.newline||'';

Line 144: rs := rs||wf_core.newline||'
';

140: -- dbms_output.put_line(substrb('('||to_char(i)||')='||cells(i),1,254));
141: -- end if;
142: modv := mod(i, col);
143: if (modv = 1) then
144: rs := rs||wf_core.newline||'

';
145: end if;
146:
147: alignv := substrb(cells(i), 1, 1);
148: if (alignv = 'R') then

Line 182: rs := rs||wf_core.newline||'

178: if ((l_type = 'V' and modv = 1) or (l_type = 'N' and modv = 1)
179: or (l_type = 'H' and i <= col)
180: or (alignv = 'T') ) then
181: if (l_type = 'N') then
182: rs := rs||wf_core.newline||' 183: else
184: -- this is a header
185: rs := rs||wf_core.newline||' 186: end if;

Line 185: rs := rs||wf_core.newline||'

181: if (l_type = 'N') then
182: rs := rs||wf_core.newline||' 183: else
184: -- this is a header
185: rs := rs||wf_core.newline||' 186: end if;
187: if (l_type = 'V') then
188: rs := rs||' scope=row';
189: else

Line 208: rs := rs||wf_core.newline||'

204: rs := rs||'';
205: end if;
206: else
207: -- this is regular data
208: rs := rs||wf_core.newline||' 209: if (l_width is not null) then
210: rs := rs||' width='||l_width;
211: end if;
212: rs := rs||' align='||l_align||' valign=baseline bgcolor='||

Line 223: rs := rs||wf_core.newline||'
';

219: rs := rs||l_text||'';
220: end if;
221: end if;
222: if (modv = 0) then
223: rs := rs||wf_core.newline||'';
224: end if;
225: end loop;
226: rs := rs||wf_core.newline||'

'||wf_core.newline||'
';
227:

Line 226: rs := rs||wf_core.newline||''||wf_core.newline||'';

222: if (modv = 0) then
223: rs := rs||wf_core.newline||'';
224: end if;
225: end loop;
226: rs := rs||wf_core.newline||''||wf_core.newline||'';
227:
228: exception
229: when OTHERS then
230: wf_core.context('Wf_Notification', 'NTF_Table',to_char(col),l_type);

Line 230: wf_core.context('Wf_Notification', 'NTF_Table',to_char(col),l_type);

226: rs := rs||wf_core.newline||''||wf_core.newline||'';
227:
228: exception
229: when OTHERS then
230: wf_core.context('Wf_Notification', 'NTF_Table',to_char(col),l_type);
231: raise;
232: end NTF_Table;
233:
234: