query to check Period status for AP and AR application
SELECT GLS.NAME LEDGER_NAME,
FA.APPLICATION_SHORT_NAME,
GPS.closing_status,
DECODE(GPS.closing_status, 'C', 'Closed',
'O', 'Open',
'F', 'Future',
'W', 'Closed Pending',
'N', 'Never Opened',
'P', 'Permanently Closed') "PeriodStatus" ,
GPS.*
FROM GL.GL_PERIOD_STATUSES GPS,
GL.GL_LEDGERS GLS,
APPLSYS.FND_APPLICATION FA
WHERE PERIOD_NAME ='SEP-FY-17'
AND GPS.APPLICATION_ID IN (222,200)
AND FA.APPLICATION_ID =GPS.APPLICATION_ID
AND GLS.LEDGER_ID =GPS.SET_OF_BOOKS_ID
ORDER BY 1;
This blog is for Oracle Ebs, Fusion and OIC Techno- Functional People. I am sharing my work experience through this blog.
Friday, 6 October 2017
Query for Oracle Period status for AP and AR applications
Subscribe to:
Post Comments (Atom)
Oracle Fusion SQL Queries to get Sales Person/Sales Representative information for an Order
1) Get sales person details if the Sales Person ID is known SELECT jrs.SALESREP_NUMBER , jrs.status , jrs.START_...
-
P2P CYCLE: INVENTORY=> REQUIESTITION=> RFQ=> QUOTATION=> QUOTATION ANALYSIS=> PURCHASE ORDER =>...
-
Order to Cash (O2C) Cycle with in Oracle Apps Enter the Sales Order Book the Sales Order Launch Pick Release Ship Confirm Create In...
-
---------- 1) Below given query can be used TO get concatenated Gl code combinations segment AND its description USING API GL_FLEXFIELDS_PK...
Thank you !! Very helpful !
ReplyDelete