Search Results https://www.galaxus.ch/en/sector/showdiscussion/snapchat-id-hack-visit-kunghaccom-c76eyaq4-222179
Overview
The PSB_ERROR_MESSAGES table is a critical component within the Oracle E-Business Suite (EBS) Release 12.1.1 and 12.2.2, specifically serving the Public Sector Budgeting (PSB) module. Owned by the database schema PSB, this table functions as a centralized repository for error messages that are generated during the execution of various Public Sector Budgeting processes. In the context of EBS, this table plays a diagnostic and audit role, capturing runtime exceptions, validation failures, and process-specific errors that occur during budget formulation, approval, or posting cycles. Because PSB processes are often batch-driven and complex, this table provides a structured mechanism for system administrators and functional users to retrieve and analyze failures without having to parse concurrent manager log files. The table is marked as VALID, indicating that its structure and metadata are current and fully supported for the listed Oracle EBS releases.
Key Information Stored
The table’s primary key, CONCURRENT_REQUEST_ID, is the central column and directly ties each error record to a specific concurrent manager request. This column is part of the CONCURRENT_REQUEST_ID_PK constraint. The table is designed to hold the following core data attributes (based on documented structure and standard PSB error logging conventions):
- CONCURRENT_REQUEST_ID (PK): A unique identifier for the concurrent request that generated the error. This is the foreign key linkage to the FND_CONCURRENT_REQUESTS interface.
- Error Sequence/Line Number: Typically stores the order of errors when multiple messages are generated from a single request.
- Error Message Text: The actual descriptive message, identifying the specific validation failure or processing exception, often including table names, column names, or SQL error codes.
- Process Name/Stage: Indicates which specific PSB process (e.g., budget batch posting, funds check) triggered the error.
- Creation Date/Timestamp: Stores the exact date and time when the error was written, facilitating chronological troubleshooting.
Common Use Cases and Queries
In a production support environment, this table is primarily used for post-processing error diagnosis and audit trail analysis. Common use cases include:
- Concurrent Request Failure Analysis: When a PSB concurrent program fails, DBAs query this table to see the exact underlying error message tied to that request ID.
- Historical Trend Monitoring: Reporting which processes generate the highest volume of errors over a fiscal period, aiding in process optimization.
- Data Validation: Cross-referencing errors against budget document IDs to identify problematic budget lines.
Example diagnostic query pattern:
SELECT CONCURRENT_REQUEST_ID, ERROR_MESSAGE, CREATION_DATE
FROM PSB.PSB_ERROR_MESSAGES
WHERE CONCURRENT_REQUEST_ID = :P_CONC_REQ_ID
ORDER BY CREATION_DATE DESC;
Use case: Identify all errors for a specific request and retrieve the messages to correlate with the log file output.
Related Objects
Based on the documented relationship data, the primary related object is the FND_CONCURRENT_REQUESTS table in the APPLSYS schema. The join is established via the CONCURRENT_REQUEST_ID column, where PSB_ERROR_MESSAGES.CONCURRENT_REQUEST_ID = FND_CONCURRENT_REQUESTS.CONCURRENT_REQUEST_ID. This relationship allows for joined queries that retrieve user-friendly request metadata (e.g., request status, program name, requester) alongside the error details. The PSB_ERROR_MESSAGES table is also indirectly related to the FND_CONCURRENT_PROGRAMS table (through FND_CONCURRENT_REQUESTS) to identify which program produced the errors. No other direct foreign keys to PSB-specific tables were documented in the provided metadata, though in practice, the error message text often references PSB budget header or line tables such as PSB_BUDGET_DOCUMENTS for contextual tracing.
-
File: Public Sector Budgeting ERD.pdf
12.1.1
product: PSB - Public Sector Budgeting , size: 93.527 KBytes , file_type: PDF Diagram ,
-
Table: PSB_ERROR_MESSAGES
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_ERROR_MESSAGES, object_name:PSB_ERROR_MESSAGES, status:VALID, product: PSB - Public Sector Budgeting , description: Error messages generated from various Public Sector Budgeting processes , implementation_dba_data: PSB.PSB_ERROR_MESSAGES ,
-
Table: PSB_REENTRANT_PROCESS_STATUS
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_REENTRANT_PROCESS_STATUS, object_name:PSB_REENTRANT_PROCESS_STATUS, status:VALID, product: PSB - Public Sector Budgeting , description: Table used to control restart of Public Sector Budgeting processes , implementation_dba_data: PSB.PSB_REENTRANT_PROCESS_STATUS ,
-
Table: PSB_SUMMARY_TEMPLATES
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_SUMMARY_TEMPLATES, object_name:PSB_SUMMARY_TEMPLATES, status:VALID, product: PSB - Public Sector Budgeting , description: Summary templates to be used in Public Sector Budgeting , implementation_dba_data: PSB.PSB_SUMMARY_TEMPLATES ,
-
Table: PSB_HRMS_FACTORS
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_HRMS_FACTORS, object_name:PSB_HRMS_FACTORS, status:VALID, product: PSB - Public Sector Budgeting , description: Conversion factors for translating rates from HRMS period basis to Public Sector Budgeting budget periods , implementation_dba_data: PSB.PSB_HRMS_FACTORS ,
-
Table: PSB_SALARY_I
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_SALARY_I, object_name:PSB_SALARY_I, status:VALID, product: PSB - Public Sector Budgeting , description: Interface table for salary rate information , implementation_dba_data: PSB.PSB_SALARY_I ,
-
Table: PSB_WS_ACCOUNT_LINE_NOTES
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_WS_ACCOUNT_LINE_NOTES, object_name:PSB_WS_ACCOUNT_LINE_NOTES, status:VALID, product: PSB - Public Sector Budgeting , description: Notes for account lines , implementation_dba_data: PSB.PSB_WS_ACCOUNT_LINE_NOTES ,
-
Lookup Type: PSB_FORMULA_TYPE
12.1.1
product: PSB - Public Sector Budgeting , meaning: PSB_FORMULA_TYPE ,
-
Lookup Type: PSB_EXTRACT_OR_WORKSHEET
12.1.1
product: PSB - Public Sector Budgeting , meaning: PSB_EXTRACT_OR_WORKSHEET ,
-
Table: PSB_DSS_OFA_LINKS
12.1.1
product: PSB - Public Sector Budgeting , description: Financial Analyzer link definitions , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: PSB_INCREMENT_TYPE
12.1.1
product: PSB - Public Sector Budgeting , meaning: PSB_INCREMENT_TYPE ,
-
Lookup Type: PSB_PARAMETER_TYPE
12.1.1
product: PSB - Public Sector Budgeting , meaning: PSB_PARAMETER_TYPE ,
-
Table: PSB_WORKSHEET_CONTEXT
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_WORKSHEET_CONTEXT, object_name:PSB_WORKSHEET_CONTEXT, status:VALID, product: PSB - Public Sector Budgeting , description: Worksheet Context inofrmation , implementation_dba_data: PSB.PSB_WORKSHEET_CONTEXT ,
-
Table: PSB_WS_SUBMIT_COMMENTS
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_WS_SUBMIT_COMMENTS, object_name:PSB_WS_SUBMIT_COMMENTS, status:VALID, product: PSB - Public Sector Budgeting , description: Stores comments for review groups sent during Submit Worksheet process , implementation_dba_data: PSB.PSB_WS_SUBMIT_COMMENTS ,
-
Lookup Type: PSB_ALLOCRULE_TYPE
12.1.1
product: PSB - Public Sector Budgeting , meaning: PSB_ALLOCRULE_TYPE ,
-
Table: PSB_DSS_DIMENSION_MAPPINGS
12.1.1
product: PSB - Public Sector Budgeting , description: Financial Analyzer dimension segment mappings , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: PSB_PARAMETER_VALUE_TYPE
12.1.1
product: PSB - Public Sector Budgeting , meaning: PSB_PARAMETER_VALUE_TYPE ,
-
Table: PSB_WS_USER_PROFILES
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_WS_USER_PROFILES, object_name:PSB_WS_USER_PROFILES, status:VALID, product: PSB - Public Sector Budgeting , description: User profiles for a worksheet , implementation_dba_data: PSB.PSB_WS_USER_PROFILES ,
-
Concurrent Program: PSBRPERR_XML
12.1.1
product: PSB - Public Sector Budgeting , user_name: Validation Results Report (XML) , description: Validation Results Report , argument_method: Standard , enabled: Yes , execution_method: Java Concurrent Program ,
-
View: PSB_PAY_ELEMENT_DISTRIBUTION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_PAY_ELEMENT_DISTRIBUTION_V, object_name:PSB_PAY_ELEMENT_DISTRIBUTION_V, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSB_PAY_ELEMENT_DISTRIBUTION_V ,
-
Table: PSB_RULE_TRANSACTION_TYPE
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_RULE_TRANSACTION_TYPE, object_name:PSB_RULE_TRANSACTION_TYPE, status:VALID, product: PSB - Public Sector Budgeting , description: PSB_RULE_TRANSACTION_TYPE is used to define transaction types for a budget revision rule. , implementation_dba_data: PSB.PSB_RULE_TRANSACTION_TYPE ,
-
Lookup Type: PSB_SALARY_TYPE
12.1.1
product: PSB - Public Sector Budgeting , meaning: PSB_SALARY_TYPE ,
-
Concurrent Program: PSBRPSBI_XML
12.1.1
product: PSB - Public Sector Budgeting , user_name: Standard Budget Items Listing (XML) , description: Standard Budget Items Listing , argument_method: Standard , enabled: Yes , execution_method: Java Concurrent Program ,
-
File: DATA_EXTRACT_INTERFACE.pdf
12.1.1
product: PSB - Public Sector Budgeting , size: 4.762 KBytes , file_type: PDF Diagram ,
-
Concurrent Program: PSBRRBRS_XML
12.1.1
product: PSB - Public Sector Budgeting , user_name: Budget Revision Summary Report by Responsibility (XML) , description: Budget Revision Summary , argument_method: Standard , enabled: Yes , execution_method: Java Concurrent Program ,
-
Table: PSB_POSITION_DEFINITIONS
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_POSITION_DEFINITIONS, object_name:PSB_POSITION_DEFINITIONS, status:VALID, product: PSB - Public Sector Budgeting , description: Position key flexfield information , implementation_dba_data: PSB.PSB_POSITION_DEFINITIONS ,
-
Concurrent Program: PSBRRVPR_XML
12.1.1
product: PSB - Public Sector Budgeting , user_name: Vacant Position Report by Responsibility (XML) , description: Vacant Position Report by Responsibility , argument_method: Standard , enabled: Yes , execution_method: Java Concurrent Program ,
-
Lookup Type: PSB_SUMMARY_OR_DETAIL_TYPE
12.1.1
product: PSB - Public Sector Budgeting , meaning: PSB_SUMMARY_OR_DETAIL_TYPE ,
-
Lookup Type: PSB_CURRENCY_CODE
12.1.1
product: PSB - Public Sector Budgeting , meaning: PSB_CURRENCY_CODE ,
-
Lookup Type: PSB_TOLERANCE_VALUE_TYPE
12.1.1
product: PSB - Public Sector Budgeting , meaning: PSB_TOLERANCE_VALUE_TYPE ,
-
Table: PSB_DATA_EXTRACT_ORGS
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_DATA_EXTRACT_ORGS, object_name:PSB_DATA_EXTRACT_ORGS, status:VALID, product: PSB - Public Sector Budgeting , description: This table stores details about organizations selected for data extraction. , implementation_dba_data: PSB.PSB_DATA_EXTRACT_ORGS ,
-
Lookup Type: PSB_ELEMENT_VALUE_TYPE
12.1.1
product: PSB - Public Sector Budgeting , meaning: PSB_ELEMENT_VALUE_TYPE ,
-
Table: PSB_WORKFLOW_PROCESSES
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_WORKFLOW_PROCESSES, object_name:PSB_WORKFLOW_PROCESSES, status:VALID, product: PSB - Public Sector Budgeting , description: Workflow item key information for a worksheet , implementation_dba_data: PSB.PSB_WORKFLOW_PROCESSES ,
-
Table: PSB_FLEX_MAPPING_SET_VALUES
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_FLEX_MAPPING_SET_VALUES, object_name:PSB_FLEX_MAPPING_SET_VALUES, status:VALID, product: PSB - Public Sector Budgeting , description: Flexfield Mapping Set Values , implementation_dba_data: PSB.PSB_FLEX_MAPPING_SET_VALUES ,
-
View: PSB_POSITION_PAY_DISTR_DATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_POSITION_PAY_DISTR_DATE_V, object_name:PSB_POSITION_PAY_DISTR_DATE_V, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSB_POSITION_PAY_DISTR_DATE_V ,
-
Table: PSB_WS_CONSOLIDATION_DETAILS
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_WS_CONSOLIDATION_DETAILS, object_name:PSB_WS_CONSOLIDATION_DETAILS, status:VALID, product: PSB - Public Sector Budgeting , description: Worksheet consolidation details , implementation_dba_data: PSB.PSB_WS_CONSOLIDATION_DETAILS ,
-
Lookup Type: PSB_GLOBAL_OR_LOCAL_TYPE
12.1.1
product: PSB - Public Sector Budgeting , meaning: PSB_GLOBAL_OR_LOCAL_TYPE ,
-
Lookup Type: PSB_SERVICE_PACKAGE_SORT
12.1.1
product: PSB - Public Sector Budgeting , meaning: PSB_SERVICE_PACKAGE_SORT ,
-
Table: PSB_WS_COLUMNS_I
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_WS_COLUMNS_I, object_name:PSB_WS_COLUMNS_I, status:VALID, product: PSB - Public Sector Budgeting , description: Budget years exported for a given worksheet , implementation_dba_data: PSB.PSB_WS_COLUMNS_I ,
-
Table: PSB_LD_PAYROLL_MAPS
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_LD_PAYROLL_MAPS, object_name:PSB_LD_PAYROLL_MAPS, status:VALID, product: PSB - Public Sector Budgeting , description: Payroll definitions for integration with Oracle Labor Distribution. , implementation_dba_data: PSB.PSB_LD_PAYROLL_MAPS ,
-
View: PSBBV_ACCOUNT_SET_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBBV_ACCOUNT_SET_LINES, object_name:PSBBV_ACCOUNT_SET_LINES, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSBBV_ACCOUNT_SET_LINES ,
-
Table: PSB_POSITION_ACCOUNTS
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_POSITION_ACCOUNTS, object_name:PSB_POSITION_ACCOUNTS, status:VALID, product: PSB - Public Sector Budgeting , description: Position Control account distributions , implementation_dba_data: PSB.PSB_POSITION_ACCOUNTS ,
-
Table: PSB_BUDGET_REVISION_LINES
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_BUDGET_REVISION_LINES, object_name:PSB_BUDGET_REVISION_LINES, status:VALID, product: PSB - Public Sector Budgeting , description: Matrix between PSB_BUDGET_REVISIONS and PSB_BUDGET_REVISION_ACCOUNTS , implementation_dba_data: PSB.PSB_BUDGET_REVISION_LINES ,
-
Concurrent Program: PSBRPCON
12.1.1
execution_filename: PSBRPCON , product: PSB - Public Sector Budgeting , user_name: PSBRPCON , description: Constraints Listing , argument_method: Standard , enabled: Yes , execution_method: Oracle Reports ,
-
Concurrent Program: PSBRRACV_XML
12.1.1
product: PSB - Public Sector Budgeting , user_name: Stage Variance Report for Account by Responsibility (XML) , description: Stage Variance Report for Account by Responsibility , argument_method: Standard , enabled: Yes , execution_method: Java Concurrent Program ,
-
Lookup Type: PSB_GL_MAP_CRITERIA
12.1.1
product: PSB - Public Sector Budgeting , meaning: PSB_GL_MAP_CRITERIA ,
-
Concurrent Program: PSBRPCON_XML
12.1.1
product: PSB - Public Sector Budgeting , user_name: Constraints Listing (XML) , description: Constraints Listing , argument_method: Standard , enabled: Yes , execution_method: Java Concurrent Program ,
-
Lookup Type: PSB_EXCEL_WORKSHEET_TYPE
12.1.1
product: PSB - Public Sector Budgeting , meaning: PSB_EXCEL_WORKSHEET_TYPE ,
-
View: PSBFV_BUDGET_CALENDARS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_BUDGET_CALENDARS, object_name:PSBFV_BUDGET_CALENDARS, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSBFV_BUDGET_CALENDARS ,
-
Concurrent Program: PSBDWS
12.1.1
execution_filename: PSB_Workflow_Pvt.Distribute_WS , product: PSB - Public Sector Budgeting , user_name: PSBDWS , description: Distribute Worksheet , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,