DBA Data[Home] [Help]

APPS.WF_PREF dependencies on WF_RESOURCES

Line 703: UPDATE wf_resources

699:
700: IF (l_name IS NOT NULL) THEN
701:
702: -- Update the admin role
703: UPDATE wf_resources
704: SET text = UPPER(l_name)
705: WHERE type = 'WFTKN'
706: AND name = 'WF_ADMIN_ROLE';
707:

Line 715: UPDATE wf_resources

711:
712: END IF;
713:
714: -- Update the web agent
715: UPDATE wf_resources
716: SET text = p_web_agent
717: WHERE type = 'WFTKN'
718: AND name = 'WF_WEB_AGENT';
719:

Line 726: UPDATE wf_resources

722: ** It is no longer possible to update jinitiator info
723: ** from the Global Preferences page
724:
725: -- Update the jinitiator info
726: UPDATE wf_resources
727: SET text = p_classid
728: WHERE type = 'WFTKN'
729: AND name = 'WF_CLASSID';
730:

Line 731: UPDATE wf_resources

727: SET text = p_classid
728: WHERE type = 'WFTKN'
729: AND name = 'WF_CLASSID';
730:
731: UPDATE wf_resources
732: SET text = p_plugin_loc
733: WHERE type = 'WFTKN'
734: AND name = 'WF_PLUGIN_DOWNLOAD';
735:

Line 736: UPDATE wf_resources

732: SET text = p_plugin_loc
733: WHERE type = 'WFTKN'
734: AND name = 'WF_PLUGIN_DOWNLOAD';
735:
736: UPDATE wf_resources
737: SET text = p_plugin_ver
738: WHERE type = 'WFTKN'
739: AND name = 'WF_PLUGIN_VERSION';
740:

Line 751: Wf_Resources_Pkg.Update_Row(

747: Wf_Event_Html.Validate_System_Name(p_system_name, l_sguid);
748:
749: -- update the local system guid
750: begin
751: Wf_Resources_Pkg.Update_Row(
752: x_type=>'WFTKN',
753: x_name=>'WF_SYSTEM_GUID',
754: x_protect_level=>0,
755: x_custom_level=>0,

Line 761: Wf_Resources_Pkg.Insert_Row(

757: x_text=>rawtohex(l_sguid)
758: );
759: exception
760: when NO_DATA_FOUND then
761: Wf_Resources_Pkg.Insert_Row(
762: x_rowid=>rowid,
763: x_type=>'WFTKN',
764: x_name=>'WF_SYSTEM_GUID',
765: x_protect_level=>0,

Line 775: Wf_Resources_Pkg.Update_Row(

771: end if;
772:
773: -- update the local system status
774: begin
775: Wf_Resources_Pkg.Update_Row(
776: x_type=>'WFTKN',
777: x_name=>'WF_SYSTEM_STATUS',
778: x_protect_level=>0,
779: x_custom_level=>0,

Line 785: Wf_Resources_Pkg.Insert_Row(

781: x_text=>p_system_status
782: );
783: exception
784: when NO_DATA_FOUND then
785: Wf_Resources_Pkg.Insert_Row(
786: x_rowid=>rowid,
787: x_type=>'WFTKN',
788: x_name=>'WF_SYSTEM_STATUS',
789: x_protect_level=>0,