By Er Gurpreet Singh,
Senior Software Engineer,
Sopra Steria India
Sunday, 19 November 2017
Saturday, 18 November 2017
Tuesday, 11 July 2017
Get Concurrent Program details Oracle Apps
select
a.concurrent_program_id,
a.concurrent_program_name,
b.user_concurrent_program_name,
c.executable_name,
c.execution_method_code,
(select meaning FROM apps.fnd_lookups
WHERE lookup_type like 'CP_EXECUTION_METHOD_CODE' and lookup_code= c.execution_method_code) type,
c.execution_file_name
from
apps.fnd_concurrent_programs a,
apps.fnd_concurrent_programs_tl b,
apps.fnd_executables c
where
a.concurrent_program_id=b.concurrent_program_id
and a.executable_id=c.executable_id
and lower(b.user_concurrent_program_name) like '%program_name%';
Thursday, 6 July 2017
Friday, 31 March 2017
Query to get open period details in Oracle Apps
SELECT
distinct b.application_id,
b.application_short_name,
c.application_name,
a.set_of_books_id,
e.name set_of_books_name,
e.short_name,
a.period_name,
a.start_date,
a.end_date,
a.closing_status ||' - '||d.meaning period_status,
a.year_start_date,
a.quarter_num,
a.quarter_start_date,
a.period_year,
a.period_num
FROM
apps.gl_period_statuses a ,
apps.fnd_application b,
apps.fnd_application_tl c,
apps.fnd_lookups d,
apps.gl_sets_of_books e
WHERE
a.application_id=b.application_id and
a.application_id=c.application_id and
a.closing_status=d.lookup_code and
d.lookup_type='OKL_PERIOD_STATUS' and
e.set_of_books_id=a.set_of_books_id and
a.closing_status='O' and
c.application_name like 'Payables'; -- Change the name of application
distinct b.application_id,
b.application_short_name,
c.application_name,
a.set_of_books_id,
e.name set_of_books_name,
e.short_name,
a.period_name,
a.start_date,
a.end_date,
a.closing_status ||' - '||d.meaning period_status,
a.year_start_date,
a.quarter_num,
a.quarter_start_date,
a.period_year,
a.period_num
FROM
apps.gl_period_statuses a ,
apps.fnd_application b,
apps.fnd_application_tl c,
apps.fnd_lookups d,
apps.gl_sets_of_books e
WHERE
a.application_id=b.application_id and
a.application_id=c.application_id and
a.closing_status=d.lookup_code and
d.lookup_type='OKL_PERIOD_STATUS' and
e.set_of_books_id=a.set_of_books_id and
a.closing_status='O' and
c.application_name like 'Payables'; -- Change the name of application
Wednesday, 1 March 2017
Get Request Set programs details with their exetuables
SELECT A.request_set_id,
B.REQUEST_SET_STAGE_ID,
A.USER_REQUEST_SET_NAME,
C.USER_CONCURRENT_PROGRAM_NAME,
E.EXECUTION_FILE_NAME,
E.EXECUTION_METHOD_CODE
FROM apps.FND_REQUEST_SETS_TL A,
apps.FND_REQUEST_SET_PROGRAMS B,
apps.fnd_concurrent_programs_tl C,
apps.fnd_concurrent_programs D,
apps.fnd_executables E
WHERE a.request_set_id =b.request_set_id
AND b.concurrent_program_id=c.concurrent_program_id
AND c.concurrent_program_id=d.concurrent_program_id
AND d.executable_id =e.executable_id
AND (A.USER_REQUEST_SET_NAME) LIKE '%' ||:RequestSetName ||'%'
ORDER BY b.REQUEST_SET_STAGE_ID;
B.REQUEST_SET_STAGE_ID,
A.USER_REQUEST_SET_NAME,
C.USER_CONCURRENT_PROGRAM_NAME,
E.EXECUTION_FILE_NAME,
E.EXECUTION_METHOD_CODE
FROM apps.FND_REQUEST_SETS_TL A,
apps.FND_REQUEST_SET_PROGRAMS B,
apps.fnd_concurrent_programs_tl C,
apps.fnd_concurrent_programs D,
apps.fnd_executables E
WHERE a.request_set_id =b.request_set_id
AND b.concurrent_program_id=c.concurrent_program_id
AND c.concurrent_program_id=d.concurrent_program_id
AND d.executable_id =e.executable_id
AND (A.USER_REQUEST_SET_NAME) LIKE '%' ||:RequestSetName ||'%'
ORDER BY b.REQUEST_SET_STAGE_ID;
Sunday, 18 December 2016
Saturday, 17 December 2016
Reset the password of user in Oracle apps
To reset the password of a user in oracle apps run the following query:
DECLARE
X BOOLEAN ;
BEGIN
X:= FND_USER_PKG.CHANGEPASSWORD('XG63','welcome123');
IF X THEN
dbms_output.put_line('true');
COMMIT;
ELSE
dbms_output.put_line('flase');
END IF;
END;
Here XG63 is username and welcome123 is new password
DECLARE
X BOOLEAN ;
BEGIN
X:= FND_USER_PKG.CHANGEPASSWORD('XG63','welcome123');
IF X THEN
dbms_output.put_line('true');
COMMIT;
ELSE
dbms_output.put_line('flase');
END IF;
END;
Here XG63 is username and welcome123 is new password
Saturday, 12 November 2016
Assign role AME_BUS_ANALYST to user in oracle apps
By default, the “Approvals Management Administrator” and “Approvals Management Business Analyst” responsibilities do not have any functions associated with them, because their access is restricted by Role Based Access Control (RBAC).
So we need to assign role AME_BUS_ANALYST to user
Subscribe to:
Posts (Atom)