SlideShare a Scribd company logo
Retrieve Apps password in R12 or Forgot Apps Password
in R12
Steps to retrieve forgotten apps password in R12.
Step 1 : login to DB-Node
sqlplus / as sysdba
STEP 2 : Create Function for to decrypt the encrypted password
SQL> create FUNCTION apps.decrypt_pin_func(in_chr_key IN VARCHAR2,in_chr_encrypted_pin IN
VARCHAR2)
RETURN VARCHAR2
AS
LANGUAGE JAVA NAME
'oracle.apps.fnd.security.WebSessionManagerProc.decrypt(java.lang.String,java.lang.String) return
java.lang.String';
/
Function created.
STEP 3 : (Query for password)
SQL> select ENCRYPTED_FOUNDATION_PASSWORD from apps.fnd_user where
USER_NAME='GUEST';
Output
ENCRYPTED_FOUNDATION_PASSWORD
--------------------------------------------------------------------------------
ZG37E123746712BDB2D99E048FE44AE662F2713E2EDB443391BABA0414CADDB7A2E6DD45BBAF
A7270A663E5EEBA837F5548A
STEP 4:
SELECT
apps.decrypt_pin_func('GUEST/ORACLE','ZG37E123746712BDB2D99E048FE44AE662F2713E2EDB44
3391BABA0414CADDB7A2E6DD45BBAFA7270A663E5EEBA837F5548A') from dual;
Output
APPS.DECRYPT_PIN_FUNC('GUEST/ORACLE','ZG37E123746712BDB2D99E048FE44AE662F2713E2
EDB443391BABA0414CADDB7A2E6DD45BBAFA7270A663E5EEBA837F5548A')
--------------------------------------------------------------------------------
DEMONSTRATE
STEP 5: (Test apps password)
SQL> conn apps/DEMONSTRATE;
Connected.

More Related Content

PPTX
INSTRUMENTACION BIOMEDICA DIAPOSITIVAS.pptx
PPSX
Temples in india
DOC
Restricting unix users
PPTX
lease financing and hire purchase
DOC
R12 User Management (UMX) - Proxy User - New Functionality
PPT
Oracle Weblogic for EBS and obiee (R12.2)
PDF
R12 oracle e-business_tax_fundamentals_ag-us-_oracle_ebs
PPTX
Top 10 utilities interview questions with answers
INSTRUMENTACION BIOMEDICA DIAPOSITIVAS.pptx
Temples in india
Restricting unix users
lease financing and hire purchase
R12 User Management (UMX) - Proxy User - New Functionality
Oracle Weblogic for EBS and obiee (R12.2)
R12 oracle e-business_tax_fundamentals_ag-us-_oracle_ebs
Top 10 utilities interview questions with answers

More from Muqthiyar Pasha (9)

DOCX
Printing in linux with cups
TXT
Mount windows cdrom in linux
TXT
Find and zip files
TXT
Forcefully unmount a linux disk partition
TXT
Determine 64 or 32 bit unix kernel and hw
TXT
Unzip and extract tar.gz
PDF
Oracle application tech stack tips and queries for troubleshooting advanced t...
DOCX
How to install oracle ops center 12c
DOCX
Get to know oracle apps username and pwd
Printing in linux with cups
Mount windows cdrom in linux
Find and zip files
Forcefully unmount a linux disk partition
Determine 64 or 32 bit unix kernel and hw
Unzip and extract tar.gz
Oracle application tech stack tips and queries for troubleshooting advanced t...
How to install oracle ops center 12c
Get to know oracle apps username and pwd
Ad

Recently uploaded (20)

PDF
Designing Intelligence for the Shop Floor.pdf
PPTX
Why Generative AI is the Future of Content, Code & Creativity?
PPTX
L1 - Introduction to python Backend.pptx
PPTX
Advanced SystemCare Ultimate Crack + Portable (2025)
PPTX
CHAPTER 2 - PM Management and IT Context
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
Salesforce Agentforce AI Implementation.pdf
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
Complete Guide to Website Development in Malaysia for SMEs
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PPTX
Log360_SIEM_Solutions Overview PPT_Feb 2020.pptx
PPTX
assetexplorer- product-overview - presentation
DOCX
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
PPTX
Oracle Fusion HCM Cloud Demo for Beginners
PDF
iTop VPN Free 5.6.0.5262 Crack latest version 2025
PDF
medical staffing services at VALiNTRY
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PPTX
history of c programming in notes for students .pptx
PDF
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
Designing Intelligence for the Shop Floor.pdf
Why Generative AI is the Future of Content, Code & Creativity?
L1 - Introduction to python Backend.pptx
Advanced SystemCare Ultimate Crack + Portable (2025)
CHAPTER 2 - PM Management and IT Context
Reimagine Home Health with the Power of Agentic AI​
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Salesforce Agentforce AI Implementation.pdf
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Complete Guide to Website Development in Malaysia for SMEs
Wondershare Filmora 15 Crack With Activation Key [2025
Log360_SIEM_Solutions Overview PPT_Feb 2020.pptx
assetexplorer- product-overview - presentation
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
Oracle Fusion HCM Cloud Demo for Beginners
iTop VPN Free 5.6.0.5262 Crack latest version 2025
medical staffing services at VALiNTRY
Design an Analysis of Algorithms I-SECS-1021-03
history of c programming in notes for students .pptx
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
Ad

Retrieve apps password in r12 or forgot apps password in r12

  • 1. Retrieve Apps password in R12 or Forgot Apps Password in R12 Steps to retrieve forgotten apps password in R12. Step 1 : login to DB-Node sqlplus / as sysdba STEP 2 : Create Function for to decrypt the encrypted password SQL> create FUNCTION apps.decrypt_pin_func(in_chr_key IN VARCHAR2,in_chr_encrypted_pin IN VARCHAR2) RETURN VARCHAR2 AS LANGUAGE JAVA NAME 'oracle.apps.fnd.security.WebSessionManagerProc.decrypt(java.lang.String,java.lang.String) return java.lang.String'; / Function created. STEP 3 : (Query for password) SQL> select ENCRYPTED_FOUNDATION_PASSWORD from apps.fnd_user where USER_NAME='GUEST'; Output ENCRYPTED_FOUNDATION_PASSWORD -------------------------------------------------------------------------------- ZG37E123746712BDB2D99E048FE44AE662F2713E2EDB443391BABA0414CADDB7A2E6DD45BBAF A7270A663E5EEBA837F5548A STEP 4: SELECT apps.decrypt_pin_func('GUEST/ORACLE','ZG37E123746712BDB2D99E048FE44AE662F2713E2EDB44 3391BABA0414CADDB7A2E6DD45BBAFA7270A663E5EEBA837F5548A') from dual; Output APPS.DECRYPT_PIN_FUNC('GUEST/ORACLE','ZG37E123746712BDB2D99E048FE44AE662F2713E2 EDB443391BABA0414CADDB7A2E6DD45BBAFA7270A663E5EEBA837F5548A') -------------------------------------------------------------------------------- DEMONSTRATE STEP 5: (Test apps password) SQL> conn apps/DEMONSTRATE; Connected.