top of page
Search
Writer's picturemdvorkin

Set up a database session for manually testing application code using SQL*Plus

declare

m_user_id number := 0;

m_resp_id number := 0;

m_resp_appl_id number := 0;

begin


-- Change responibility name to whatever you need

select application_id, responsibility_id

into m_resp_appl_id, m_resp_id

from fnd_responsibility_tl

where responsibility_name = 'System Administrator'

and language = 'US';


-- Change user name to whatever you need

select user_id

into m_user_id

from fnd_user

where user_name = 'SYSADMIN';


fnd_global.apps_initialize (m_user_id, m_resp_id, m_resp_appl_id);


end;

/

10 views1 comment

Recent Posts

See All

Get DDL for Oracle object

set feed off set long 1000000 set longchunksize 1000000 set pages 0 set lines 32767 set trimspool on set feed off set wrap on set...

Cancelled scheduled concurrent requests

This SQL query returns all concurrent requests that were scheduled in the past and are not scheduled currently. It can be used for...

Foreign key constraint violation

/* This PL/SQL script checks violations of foreign key constraints Example of the tables: CREATE TABLE temp_supplier ( supplier_id...

1 Comment


Nick
Nick
Aug 31, 2021

Thanks for shariing

Like
bottom of page