DBA Data[Home] [Help]

APPS.WF_RESOURCES_PKG dependencies on WF_CORE

Line 31: REPLACE(X_TEXT, WF_CORE.CR),

27: ) select
28: X_TYPE,
29: X_NAME,
30: X_ID,
31: REPLACE(X_TEXT, WF_CORE.CR),
32: X_PROTECT_LEVEL,
33: X_CUSTOM_LEVEL,
34: L.CODE,
35: userenv('LANG')

Line 55: wf_core.context('Wf_Resources_Pkg', 'Insert_Row',

51: close c;
52:
53: exception
54: when others then
55: wf_core.context('Wf_Resources_Pkg', 'Insert_Row',
56: x_name, x_type);
57: raise;
58: end INSERT_ROW;
59:

Line 85: wf_core.raise('WF_RECORD_DELETED');

81: open c1;
82: fetch c1 into tlinfo;
83: if (c1%notfound) then
84: close c1;
85: wf_core.raise('WF_RECORD_DELETED');
86: end if;
87: close c1;
88:
89: if ( (tlinfo.TEXT = X_TEXT)

Line 96: wf_core.raise('WF_RECORD_CHANGED');

92: AND (tlinfo.CUSTOM_LEVEL = X_CUSTOM_LEVEL)
93: ) then
94: null;
95: else
96: wf_core.raise('WF_RECORD_CHANGED');
97: end if;
98: return;
99:
100: exception

Line 102: wf_core.context('Wf_Resources_Pkg', 'Lock_Row',

98: return;
99:
100: exception
101: when others then
102: wf_core.context('Wf_Resources_Pkg', 'Lock_Row',
103: x_name, x_type);
104: raise;
105: end LOCK_ROW;
106:

Line 120: TEXT = REPLACE(X_TEXT, WF_CORE.CR),

116: update WF_RESOURCES set
117: ID = X_ID,
118: PROTECT_LEVEL = X_PROTECT_LEVEL,
119: CUSTOM_LEVEL = X_CUSTOM_LEVEL,
120: TEXT = REPLACE(X_TEXT, WF_CORE.CR),
121: SOURCE_LANG = userenv('LANG')
122: where NAME = X_NAME
123: and TYPE = X_TYPE
124: and userenv('LANG') in (LANGUAGE, SOURCE_LANG);

Line 132: wf_core.context('Wf_Resources_Pkg', 'Update_Row',

128: end if;
129:
130: exception
131: when others then
132: wf_core.context('Wf_Resources_Pkg', 'Update_Row',
133: x_name, x_type);
134: raise;
135: end UPDATE_ROW;
136:

Line 152: wf_core.context('Wf_Resources_Pkg', 'Delete_Row',

148: end if;
149:
150: exception
151: when others then
152: wf_core.context('Wf_Resources_Pkg', 'Delete_Row',
153: x_name, x_type);
154: raise;
155: end DELETE_ROW;
156: