Search Results iby_xml_hr_addr_1_0_v
Overview
The IBY_XML_HR_ADDR_1_0_V view is a Payments (IBY) module database object owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. Its purpose is to generate a structured XML representation of a Human Resources (HR) address record maintained in the HR_LOCATIONS_ALL table. Rather than exposing rows of discrete address columns in the traditional relational manner, the view returns an XMLTYPE value constructed through SQL/XML functions.
The view is part of Oracle Payments' address formatting infrastructure used during funds capture and disbursement processing. It is referenced by the extract generation logic that produces payment files, remittance advice, and other outbound XML payloads that must carry a payee, payor, or party address. By encapsulating address assembly into a re-usable view, Oracle Payments ensures consistent element naming and formatting across the various XML message versions (note the "1_0" suffix indicating the version of the XML schema the view targets).
Underlying Base Objects
The view is defined over four documented base objects:
HR_LOCATIONS_ALL(SYNONYM) — the primary source of address data. Each row in this table represents an HR location, identified byLOCATION_ID, holding street lines, city, region, postal code, and country.FND_TERRITORIES_VL(VIEW) — an outer-joined reference to obtain the territory short name (TERRITORY_SHORT_NAME) corresponding to the location'sCOUNTRYcode. The outer join ((+)) preserves locations whose country code has no matching territory.IBY_FD_EXTRACT_GEN_PVT(PACKAGE) — a Payments PL/SQL package invoked as part of the view's SELECT list. The functionFORMAT_HR_ADDRESSreturns pre-formatted, concatenated address strings.XMLTYPE(TYPE) — the datatype of the composed XML document returned byXMLCONCAT.
The view consequently depends on both HR reference data and Payments formatting logic, reflecting the cross-module nature of its role.
Key Columns
The view exposes two columns:
LOCATION_ID— the numeric key inherited fromHR_LOCATIONS_ALL.LOCATION_ID, allowing the XML payload to be correlated back to the source location record.ADDRESS— anXMLTYPEdocument produced byXMLCONCAT. Its child elements includeADDRESSINTERNALID,ADDRESSLINE1,ADDRESSLINE2,ADDRESSLINE3,CITY,COUNTY,STATE,COUNTRY,COUNTRYNAME,POSTALCODE,PREFORMATTEDCONCATENATEDADDRESS, andPREFORMATTEDMAILINGADDRESS. The two preformatted elements are populated by calls toIBY_FD_EXTRACT_GEN_PVT.FORMAT_HR_ADDRESS, the second passing the'POSTAL_ADDR'style hint to yield a mailing-oriented format.
Common Use Cases and Queries
This view is typically consumed by the Payments extract generation process rather than by end users directly. Developers and support analysts query it to inspect, debug, or validate the XML that will appear in payment messages, and to dry-run address formatting for a given location.
- Validating XML output for a specific location:
SELECT LOCATION_ID, XMLSERIALIZE(CONTENT ADDRESS AS CLOB) AS ADDR_XML FROM IBY_XML_HR_ADDR_1_0_V WHERE LOCATION_ID = :loc_id; - Extracting a single formatted element:
SELECT LOCATION_ID, EXTRACTVALUE(ADDRESS,'/ADDRESSLINE1') FROM IBY_XML_HR_ADDR_1_0_V; - Confirming the preformatted mailing string:
SELECT LOCATION_ID, EXTRACTVALUE(ADDRESS,'/PREFORMATTEDMAILINGADDRESS') FROM IBY_XML_HR_ADDR_1_0_V WHERE LOCATION_ID = :loc_id;
Because formatting is delegated to IBY_FD_EXTRACT_GEN_PVT, querying the view also exercises the same logic Oracle Payments uses in production, making it valuable for confirming that country-specific address styles resolve as expected.
-
View: IBY_XML_HR_ADDR_1_0_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_HR_ADDR_1_0_V, object_name:IBY_XML_HR_ADDR_1_0_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_XML_HR_ADDR_1_0_V ,
-
View: IBY_XML_HR_ADDR_1_0_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_HR_ADDR_1_0_V, object_name:IBY_XML_HR_ADDR_1_0_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_XML_HR_ADDR_1_0_V ,
-
VIEW: APPS.IBY_XML_FNDCPT_PAYEE_1_0_V
12.1.1
-
VIEW: APPS.IBY_XML_FNDCPT_PAYEE_1_0_V
12.2.2
-
View: IBY_XML_FNDCPT_PAYEE_1_0_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_FNDCPT_PAYEE_1_0_V, object_name:IBY_XML_FNDCPT_PAYEE_1_0_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_XML_FNDCPT_PAYEE_1_0_V ,
-
View: IBY_XML_FNDCPT_PAYEE_1_0_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_FNDCPT_PAYEE_1_0_V, object_name:IBY_XML_FNDCPT_PAYEE_1_0_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_XML_FNDCPT_PAYEE_1_0_V ,
-
View: IBY_XML_FD_PAYER_1_0_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_FD_PAYER_1_0_V, object_name:IBY_XML_FD_PAYER_1_0_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_XML_FD_PAYER_1_0_V ,
-
VIEW: APPS.IBY_XML_FNDCPT_PAYEE_1_0_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_FNDCPT_PAYEE_1_0_V, object_name:IBY_XML_FNDCPT_PAYEE_1_0_V, status:VALID,
-
View: IBY_XML_FD_PAYER_1_0_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_FD_PAYER_1_0_V, object_name:IBY_XML_FD_PAYER_1_0_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_XML_FD_PAYER_1_0_V ,
-
VIEW: APPS.IBY_XML_HR_ADDR_1_0_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_HR_ADDR_1_0_V, object_name:IBY_XML_HR_ADDR_1_0_V, status:VALID,
-
VIEW: APPS.IBY_XML_HR_ADDR_1_0_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_HR_ADDR_1_0_V, object_name:IBY_XML_HR_ADDR_1_0_V, status:VALID,
-
VIEW: APPS.IBY_XML_FNDCPT_PAYEE_1_0_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_FNDCPT_PAYEE_1_0_V, object_name:IBY_XML_FNDCPT_PAYEE_1_0_V, status:VALID,
-
PACKAGE: APPS.IBY_FD_EXTRACT_GEN_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IBY_FD_EXTRACT_GEN_PVT, status:VALID,
-
PACKAGE: APPS.IBY_FD_EXTRACT_GEN_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:IBY_FD_EXTRACT_GEN_PVT, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.IBY_FD_EXTRACT_GEN_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBY_FD_EXTRACT_GEN_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.FND_TERRITORIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_TERRITORIES_VL, object_name:FND_TERRITORIES_VL, status:VALID,
-
VIEW: APPS.FND_TERRITORIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_TERRITORIES_VL, object_name:FND_TERRITORIES_VL, status:VALID,
-
APPS.IBY_FD_EXTRACT_GEN_PVT dependencies on IBY_XML_HR_ADDR_1_0_V
12.1.1
-
SYNONYM: APPS.HR_LOCATIONS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL, status:VALID,
-
SYNONYM: APPS.HR_LOCATIONS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL, status:VALID,
-
TYPE: SYS.XMLTYPE
12.1.1
owner:SYS, object_type:TYPE, object_name:XMLTYPE, status:VALID,
-
TYPE: SYS.XMLTYPE
12.2.2
owner:SYS, object_type:TYPE, object_name:XMLTYPE, status:VALID,
-
APPS.IBY_FD_EXTRACT_GEN_PVT SQL Statements
12.1.1
-
APPS.IBY_FD_EXTRACT_GEN_PVT SQL Statements
12.2.2
-
eTRM - IBY Tables and Views
12.1.1
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
eTRM - IBY Tables and Views
12.2.2
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
APPS.IBY_FD_EXTRACT_GEN_PVT dependencies on XMLTYPE
12.1.1
-
PACKAGE BODY: APPS.IBY_FD_EXTRACT_GEN_PVT
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IBY_FD_EXTRACT_GEN_PVT
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - IBY Tables and Views
12.1.1
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
eTRM - IBY Tables and Views
12.2.2
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,