This Blog has solutions for day to day issues faced during Development & Customization's activity in Oracle EBS Applications.
Aug 19, 2019
Query To Get List of all Responsibility attached for user
SELECT fuser.user_name,
frt.responsibility_name,
furgd.start_date,
furgd.end_date,
fresp.responsibility_key,
fapp.application_short_name,
furgd.*
FROM apps.fnd_user_resp_groups_direct furgd,
apps.fnd_user fuser,
apps.fnd_responsibility fresp,
apps.fnd_responsibility_tl frt,
apps.fnd_application fapp,
apps.fnd_application_tl fat
WHERE 1 = 1
AND furgd.user_id = fuser.user_id
AND furgd.responsibility_id = frt.responsibility_id
AND fresp.responsibility_id = frt.responsibility_id
AND fapp.application_id = fat.application_id
AND fresp.application_id = fat.application_id
AND frt.language = USERENV ('LANG')
AND UPPER (fuser.user_name) = UPPER ('&Enter_User_Name')
--AND (furgd.end_date IS NULL OR furgd.end_date >= TRUNC(SYSDATE))
ORDER BY frt.responsibility_name;
Subscribe to:
Post Comments (Atom)
Useful Workflow Commands
WFLOAD apps/columbus789 0 Y DOWNLOAD APEXP_FINDEV.wft APEXP Locations: $PO_TOP/patch/115/import/US/porpocha.wft $PO_TOP/patch/115/import/U...
-
There are two steps to create Materialized Views in 12.2 Create Logical View Upgrade to Materialized View Create Logical View CREATE OR RE...
-
1. Deriving Various Bean values a. messageStyledText OAMessageStyledTextBean lvariable = (OAMessageStyledTextBean)webBean.findChildRecu...
-
Download Concurrent Programs: FNDLOAD apps/matrix O Y DOWNLOAD $FND_TOP/patch/115/import/afcpprog.lct XX_CUSTOM_CP.ldt PROGRAM APPLICATION_...
No comments:
Post a Comment