DBA Data[Home] [Help]

APPS.WF_TEMP_LOB dependencies on WF_CORE

Line 27: wf_core.context('WF_TEMP_LOB','GetLob');

23: return(m);
24:
25: exception
26: when OTHERS then
27: wf_core.context('WF_TEMP_LOB','GetLob');
28: raise;
29: end GetLob;
30:
31: procedure ReleaseLob(

Line 45: wf_core.context('WF_TEMP_LOB','ReleaseLob');

41: end if;
42:
43: exception
44: when OTHERS then
45: wf_core.context('WF_TEMP_LOB','ReleaseLob');
46: raise;
47: end ReleaseLob;
48:
49: procedure ShowLob(p_lob_tab in out nocopy wf_temp_lob_table_type)

Line 102: wf_core.context('WF_TEMP_LOB','ShowLob');

98: end loop;
99:
100: exception
101: when OTHERS then
102: wf_core.context('WF_TEMP_LOB','ShowLob');
103: raise;
104: end ShowLob;
105:
106: END WF_TEMP_LOB;