Skip to Main Content

Enterprise Manager

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Is there any API/Web Service to Access GL_COA_MAPPINGS and Related COA Mapping Tables?

Deependra LodhiJun 17 2025 — edited Jun 18 2025

Hello,

I need to retrieve Chart of Accounts (COA) mapping data from the following tables:

  • GL_COA_MAPPINGS
  • GL_COA_MAP_SEGMENT_RULES
  • GL_COA_MAP_ROLLUP_RULES

Currently, I use a SQL query to get this information, but I am looking for a standard Oracle API or web service (REST or SOAP) that can provide this data.

  1. Does Oracle provide any API or web service to access COA mapping data from these tables?
  2. If not, what is the recommended approach for programmatically retrieving this data?
  3. I am not able to find the BICC PVO for this data. Is there a relevant PVO available?

Sample query-

SELECT
rr.FROM_FLEX_VALUE_LOW AS COST_CENTER,
rr.TO_FLEX_VALUE AS BUSINESS_AREA
FROM
GL_COA_MAPPINGS m
JOIN GL_COA_MAP_SEGMENT_RULES sr
ON m.COA_MAPPING_ID = sr.COA_MAPPING_ID
JOIN GL_COA_MAP_ROLLUP_RULES rr
ON sr.SEGMENT_RULE_ID = rr.SEGMENT_RULE_ID
WHERE
m.NAME = 'COA Mapping IND'
AND rr.FROM_FLEX_VALUE_LOW = :P_CostCenter

Thank You

Comments
Post Details
Added on Jun 17 2025
0 comments
84 views