SlideShare a Scribd company logo
2
Most read
Oracle e-business How to Obtain Environment Variable value using sql query
There is a very simple query to find the environment variable being used by a concurrent
program:
SELECT variable_name,
VALUE
FROM apps.fnd_env_context
WHERE variable_name in ('AF_CLASSPATH','CLASSPATH','JAVA_TOP')
AND concurrent_process_id =
(SELECT MAX(concurrent_process_id)
FROM apps.fnd_env_context)
ORDER BY 1;
Oracle ebs how to obtain environment variable value using sql query

More Related Content

PDF
Oracle Payables R12 ivas
PDF
Oracle R12 Legal Entity
PDF
Oracle R12 Cash Management New Features
DOC
AME Requisition Approval Heirarchy
PPTX
Oracle EBS(On Premise) and Oracle Revenue Management Cloud Integration
PDF
Check printing in_r12
PDF
Oracle r12 eb tax sql queries for functional implementers for troubleshooting...
ODT
R12:Payment Process Request (PPR)
Oracle Payables R12 ivas
Oracle R12 Legal Entity
Oracle R12 Cash Management New Features
AME Requisition Approval Heirarchy
Oracle EBS(On Premise) and Oracle Revenue Management Cloud Integration
Check printing in_r12
Oracle r12 eb tax sql queries for functional implementers for troubleshooting...
R12:Payment Process Request (PPR)

What's hot (20)

PPTX
Oracle receivables
PPT
Oracle Payable Complete Business flows
PPT
Oracle HRMS Payroll Table Overview
PDF
Oracle Cloud SQL FTE Positions Query
PDF
Oracle R12 Apps - Order Management Tables & Descriptions
DOCX
Prevent merging columns in excel output using rtf template
PDF
Oracle Apps Technical – Short notes on RICE Components.
DOCX
Oracle Fusion Cloud HCM value sets
PPTX
Secondary Ledger implementation in Oracle R12
PDF
Description and Definition of HCM Data Loader
PPTX
Oracle EBS: Intercompany Invoicing
PDF
Oracle apps-technical-tutorial
DOCX
Absence management in oracle HRMS
DOC
Payment create a ppr for multiple legal entities (eft)
PDF
Query all roles and duties and privileges Oracle Fusion Cloud
DOC
How to create payslip through self service
DOCX
Inventory aging report using oracle discoverer desktop
PDF
Ap invoice line level approval - R12
DOCX
Base tables for order to cash
DOCX
Oracle EBS R12 Audit trial
Oracle receivables
Oracle Payable Complete Business flows
Oracle HRMS Payroll Table Overview
Oracle Cloud SQL FTE Positions Query
Oracle R12 Apps - Order Management Tables & Descriptions
Prevent merging columns in excel output using rtf template
Oracle Apps Technical – Short notes on RICE Components.
Oracle Fusion Cloud HCM value sets
Secondary Ledger implementation in Oracle R12
Description and Definition of HCM Data Loader
Oracle EBS: Intercompany Invoicing
Oracle apps-technical-tutorial
Absence management in oracle HRMS
Payment create a ppr for multiple legal entities (eft)
Query all roles and duties and privileges Oracle Fusion Cloud
How to create payslip through self service
Inventory aging report using oracle discoverer desktop
Ap invoice line level approval - R12
Base tables for order to cash
Oracle EBS R12 Audit trial
Ad

Recently uploaded (20)

PPTX
Odoo POS Development Services by CandidRoot Solutions
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PPTX
history of c programming in notes for students .pptx
PDF
System and Network Administration Chapter 2
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Understanding Forklifts - TECH EHS Solution
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PPTX
L1 - Introduction to python Backend.pptx
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Odoo POS Development Services by CandidRoot Solutions
Design an Analysis of Algorithms II-SECS-1021-03
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
history of c programming in notes for students .pptx
System and Network Administration Chapter 2
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Upgrade and Innovation Strategies for SAP ERP Customers
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Navsoft: AI-Powered Business Solutions & Custom Software Development
Wondershare Filmora 15 Crack With Activation Key [2025
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Understanding Forklifts - TECH EHS Solution
How Creative Agencies Leverage Project Management Software.pdf
Odoo Companies in India – Driving Business Transformation.pdf
wealthsignaloriginal-com-DS-text-... (1).pdf
Which alternative to Crystal Reports is best for small or large businesses.pdf
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
L1 - Introduction to python Backend.pptx
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Ad

Oracle ebs how to obtain environment variable value using sql query

  • 1. Oracle e-business How to Obtain Environment Variable value using sql query There is a very simple query to find the environment variable being used by a concurrent program: SELECT variable_name, VALUE FROM apps.fnd_env_context WHERE variable_name in ('AF_CLASSPATH','CLASSPATH','JAVA_TOP') AND concurrent_process_id = (SELECT MAX(concurrent_process_id) FROM apps.fnd_env_context) ORDER BY 1;