Using Apps Initialize

Submitted by code_admin on Tue, 07/17/2018 - 12:52
  1. begin
  2.     fnd_global.apps_INITIALIZE(
  3.                      1320, --ROBERTS USER ID
  4.                      50358, --resp_id (Greenwich SST Reports)
  5.                     800, --resp_appl_id in number,
  6.                      1, --security_group_id     in number,
  7.                     5129 --server_id in number default -1
  8.         );    
  9. end;
  1. SET VERIFY OFF;
  2.  
  3. set serveroutput on;
  4.  
  5. declare
  6.   tmp varchar2(255);
  7. BEGIN
  8.     fnd_global.apps_INITIALIZE(
  9.                        0, --User SYSADMIN
  10.                        1, --Resp System Administrator
  11.                        1  --Application System Administration/SYSDAMIN
  12.           );    
  13.          
  14.     select
  15.       apps.fnd_profile.VALUE('USER_ID')
  16.     into
  17.       tmp
  18.     from dual;        
  19.    
  20.     dbms_output.put_line(tmp);
  21.  END;
  22.  

R12

  1. SET VERIFY OFF;
  2.  
  3. SET serveroutput ON;
  4.  
  5. DECLARE
  6.    tmp VARCHAR2(255);
  7.  BEGIN
  8.      apps.fnd_global.apps_INITIALIZE(
  9.                         0, --User SYSADMIN
  10.                         1, --Resp System Administrator
  11.                         1  --Application System Administration/SYSDAMIN
  12.            );    
  13.          
  14.      SELECT
  15.        apps.fnd_profile.VALUE('USER_ID')
  16.      INTO
  17.       tmp
  18.      FROM dual;        
  19.    
  20.     DBMS_OUTPUT.put_line(tmp);
  21.  
  22.  apps.mo_global.init('S',null);
  23. apps.CEP_STANDARD.init_security();
  24.  end;

Search Strings

apps instalise init

referenced in This article

RJM Article Type
Quick Reference