-
begin
-
fnd_global.apps_INITIALIZE(
-
1320, --ROBERTS USER ID
-
50358, --resp_id (Greenwich SST Reports)
-
800, --resp_appl_id in number,
-
1, --security_group_id in number,
-
5129 --server_id in number default -1
-
);
-
end;
-
SET VERIFY OFF;
-
-
set serveroutput on;
-
-
declare
-
tmp varchar2(255);
-
BEGIN
-
fnd_global.apps_INITIALIZE(
-
0, --User SYSADMIN
-
1, --Resp System Administrator
-
1 --Application System Administration/SYSDAMIN
-
);
-
-
select
-
apps.fnd_profile.VALUE('USER_ID')
-
into
-
tmp
-
from dual;
-
-
dbms_output.put_line(tmp);
-
END;
-
R12
-
SET VERIFY OFF;
-
-
SET serveroutput ON;
-
-
DECLARE
-
tmp VARCHAR2(255);
-
BEGIN
-
apps.fnd_global.apps_INITIALIZE(
-
0, --User SYSADMIN
-
1, --Resp System Administrator
-
1 --Application System Administration/SYSDAMIN
-
);
-
-
SELECT
-
apps.fnd_profile.VALUE('USER_ID')
-
INTO
-
tmp
-
FROM dual;
-
-
DBMS_OUTPUT.put_line(tmp);
-
-
apps.mo_global.init('S',null);
-
apps.CEP_STANDARD.init_security();
-
end;
Search Strings
apps instalise init
referenced in This article
RJM Article Type
Quick Reference