DBA Data[Home] [Help]

APPS.WF_RESOURCE_LOAD dependencies on WF_RESOURCES

Line 28: from WF_RESOURCES

24: x_level_error := 0;
25: begin
26: select PROTECT_LEVEL, CUSTOM_LEVEL
27: into protection_level, customization_level
28: from WF_RESOURCES
29: where NAME = x_name
30: and TYPE = x_type
31: and LANGUAGE = userenv('LANG');
32:

Line 46: Wf_Resources_Pkg.Update_Row (

42: return;
43: end if;
44:
45: -- Update existing row
46: Wf_Resources_Pkg.Update_Row (
47: x_type => x_type,
48: x_name => x_name,
49: x_protect_level => x_protect_level,
50: x_custom_level => x_custom_level,

Line 71: Wf_Resources_Pkg.Insert_Row (

67: return;
68: end if;
69:
70: -- Insert new row
71: Wf_Resources_Pkg.Insert_Row (
72: x_rowid => row_id,
73: x_type => x_type,
74: x_name => x_name,
75: x_protect_level => x_protect_level,