Search Results sob_type
Overview
APPS.AP_SOB_INFO_V is a read-only Oracle EBS view published in the APPS schema that consolidates the ledgers (sets of books) relevant to the Oracle Payables application into a single, uniformly shaped result set. It exists to answer a recurring integration and reporting question: for a given Payables operating unit, which ledgers are visible, which of them is the primary ledger, how does each ledger account, and what is each ledger's encumbrance posture?
The view is defined as a three-branch UNION ALL, each branch tagged with a constant APPLICATION_ID of 200 (Payables) and a literal SOB_TYPE discriminator. The first branch returns the primary set of books, the second returns reporting (MRC) ledgers linked through the subledger accounting relationship, and the third returns secondary ledgers linked to the primary ledger. Because the accounting method column is derived differently in each branch, the view normalizes three different underlying flag conventions into a single Cash / Accrual vocabulary. This makes it suitable as a lookup source in concurrent programs, custom reports, and integration extracts where the caller needs an application-neutral ledger list without navigating GL ledger relationship views directly.
Underlying Base Objects
The documented base objects are AP_SYSTEM_PARAMETERS, FINANCIALS_SYSTEM_PARAMETERS, GL_SETS_OF_BOOKS, GL_ALC_LEDGER_RSHIPS_V, and GL_SECONDARY_LEDGER_RSHIPS_V. The first three are synonyms over their respective Payables and General Ledger tables; the latter two are General Ledger views.
- AP_SYSTEM_PARAMETERS supplies the driving join key,
SET_OF_BOOKS_ID, along withBASE_CURRENCY_CODEandORG_ID. Every branch of the union anchors on this object. - FINANCIALS_SYSTEM_Parameters (synonym over the Payables system parameters table structure) supplies
PURCH_ENCUMBRANCE_FLAG, the source of theENCUMBRANCE_FLAGvalue. - GL_SETS_OF_BOOKS provides the ledger name and the
SLA_LEDGER_CASH_BASIS_FLAGused to derive the accounting method, and is joined bySET_OF_BOOKS_ID. - GL_ALC_LEDGER_RSHIPS_V provides reporting ledger relationships where
RELATIONSHIP_TYPE_CODE = 'SUBLEDGER',RELATIONSHIP_ENABLED_FLAG='Y',APPLICATION_ID = 200, andORG_IDmatches the system parameters row. - GL_SECONDARY_LEDGER_RSHIPS_V provides secondary ledger relationships on the same subledger, enabled-only criteria.
Key Columns
APPLICATION_ID— constant 200, identifying Oracle Payables as the owning application.NAME— ledger (set of books) name.SET_OF_BOOKS_ID— ledger identifier; for the primary branch this equals the Payables system parameter ledger.SOB_TYPE— literal discriminator with valuesPrimary,Reporting, orSecondary.ACCOUNTING_METHOD—CashorAccrual, decoded fromSLA_LEDGER_CASH_BASIS_FLAGfor primary and reporting ledgers, and fromSLA_ACCOUNTING_METHOD_CODEfor secondary ledgers.BASE_CURRENCY_CODE— taken from AP_SYSTEM_PARAMETERS; it is the Payables base currency, not necessarily the ledger currency.ENCUMBRANCE_FLAG—YorN. Only the primary branch can yieldY, and only when the ledger matches the Payables system parameter ledger andPURCH_ENCUMBRANCE_FLAGis set. Both reporting and secondary branches hard-codeN.
Common Use Cases and Queries
The view is typically used to enumerate ledgers for a Payables operating unit or to test whether purchasing encumbrance accounting is active. A representative query lists all ledgers and flags the primary:
SELECT sob_type, name, set_of_books_id, accounting_method, encumbrance_flag FROM ap_sob_info_v ORDER BY sob_type;SELECT set_of_books_id FROM ap_sob_info_v WHERE sob_type = 'Primary' AND encumbrance_flag = 'Y';SELECT name, base_currency_code FROM ap_sob_info_v WHERE accounting_method = 'Cash';
Because the reporting and secondary branches always return ENCUMBRANCE_FLAG = 'N', any query intended to determine whether encumbrance accounting applies must filter on SOB_TYPE = 'Primary'; otherwise the result set will include non-encumbered ledger rows that can mislead a join or a control total. The view is also frequently joined back to AP_SYSTEM_PARAMETERS or GL_SETS_OF_BOOKS on SET_OF_BOOKS_ID to enrich extracts with additional ledger attributes.
-
VIEW: APPS.AP_SOB_INFO_V
12.1.1
-
VIEW: APPS.AP_SOB_INFO_V
12.2.2
-
View: AP_SOB_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_SOB_INFO_V, object_name:AP_SOB_INFO_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_SOB_INFO_V ,
-
View: AP_SOB_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_SOB_INFO_V, object_name:AP_SOB_INFO_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_SOB_INFO_V ,
-
Concurrent Program: APGLTRANS
12.2.2
execution_filename: APXGLTRN , product: AP - Payables , user_name: APXGLTRN , description: Payables Transfer to General Ledger , argument_method: Standard , enabled: No , execution_method: Oracle Reports ,
-
VIEW: APPS.AP_SOB_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_SOB_INFO_V, object_name:AP_SOB_INFO_V, status:VALID,
-
APPS.XLA_XLAIQACL_UTILS_PKG SQL Statements
12.2.2
-
VIEW: APPS.AP_SOB_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_SOB_INFO_V, object_name:AP_SOB_INFO_V, status:VALID,
-
Concurrent Program: APGLTRANS
12.1.1
execution_filename: APXGLTRN , product: AP - Payables , user_name: APXGLTRN , description: Payables Transfer to General Ledger , argument_method: Standard , enabled: No , execution_method: Oracle Reports ,
-
APPS.XLA_XLAIQACL_UTILS_PKG SQL Statements
12.1.1
-
TABLE: AR.AR_BASE_DIST_AMTS_GT
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_BASE_DIST_AMTS_GT, object_name:AR_BASE_DIST_AMTS_GT, status:VALID,
-
TABLE: AR.AR_BASE_DIST_AMTS_GT
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_BASE_DIST_AMTS_GT, object_name:AR_BASE_DIST_AMTS_GT, status:VALID,
-
APPS.AR_UNPOSTED_ITEM_UPG SQL Statements
12.1.1
-
APPS.AR_UPGRADE_CASH_ACCRUAL SQL Statements
12.1.1
-
APPS.AR_UNPOSTED_ITEM_UPG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.XLA_XLAIQACL_UTILS_PKG
12.2.2
-
PACKAGE BODY: APPS.XLA_XLAIQACL_UTILS_PKG
12.1.1
-
APPS.AR_UPGRADE_CASH_ACCRUAL SQL Statements
12.2.2
-
PACKAGE: APPS.PA_ONESTEP_STREAMLINE_PKG
12.1.1
-
PACKAGE: APPS.PA_ONESTEP_STREAMLINE_PKG
12.2.2
-
APPS.OZF_GL_TRANSFER_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AR_UNPOSTED_ITEM_UPG
12.2.2
-
TABLE: AR.RA_AR_GT
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.RA_AR_GT, object_name:RA_AR_GT, status:VALID,
-
TABLE: AR.RA_AR_GT
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.RA_AR_GT, object_name:RA_AR_GT, status:VALID,
-
PACKAGE BODY: APPS.AR_UNPOSTED_ITEM_UPG
12.1.1
-
PACKAGE: APPS.XLA_XLAIQACL_UTILS_PKG
12.2.2
-
PACKAGE BODY: APPS.AR_UPGRADE_CASH_ACCRUAL
12.1.1
-
PACKAGE: APPS.XLA_XLAIQACL_UTILS_PKG
12.1.1
-
PACKAGE BODY: APPS.AR_UPGRADE_CASH_ACCRUAL
12.2.2
-
PACKAGE BODY: APPS.OZF_GL_TRANSFER_PVT
12.1.1
-
APPS.PA_MC_CURRENCY_PKG SQL Statements
12.1.1
-
APPS.PA_MC_CURRENCY_PKG SQL Statements
12.2.2
-
APPS.ARP_DET_DIST_PKG SQL Statements
12.2.2
-
APPS.ARP_DET_DIST_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PA_MC_CURRENCY_PKG
12.2.2
-
PACKAGE BODY: APPS.PA_MC_CURRENCY_PKG
12.1.1
-
PACKAGE BODY: APPS.GL_MC_INFO
12.2.2
-
PACKAGE BODY: APPS.GL_MC_INFO
12.1.1
-
PACKAGE BODY: APPS.AR_CUMULATIVE_BALANCE_REPORT
12.1.1
-
PACKAGE: APPS.ARP_ACCT_MAIN
12.1.1
-
PACKAGE: APPS.ARP_ACCT_MAIN
12.2.2
-
PACKAGE BODY: APPS.AR_CUMULATIVE_BALANCE_REPORT
12.2.2
-
PACKAGE: APPS.GL_MC_INFO
12.2.2
-
PACKAGE: APPS.GL_MC_INFO
12.1.1
-
APPS.PA_MC_CURRENCY_PKG dependencies on GL_SETS_OF_BOOKS
12.2.2
-
APPS.PA_MC_CURRENCY_PKG dependencies on GL_SETS_OF_BOOKS
12.1.1
-
APPS.PA_MC_CURRENCY_PKG dependencies on PA_IMPLEMENTATIONS
12.1.1
-
APPS.PA_MC_CURRENCY_PKG dependencies on PA_IMPLEMENTATIONS
12.2.2
-
APPS.ARP_ACCT_MAIN dependencies on FND_CURRENCIES
12.1.1
-
APPS.ARP_ACCT_MAIN dependencies on FND_CURRENCIES
12.2.2