...
WS Example
Request
Response
Java Client Example
translateFSDivisions(List of (fsLocationCode, fsDivsionCode))
This service is used to validate KFS organization. Returns an XML result set with a value of true or false for each organization.
Input Specifications
Index | Parameter | Description | Required? | Data Type (max length) | Example |
---|
0 | fsLocationCode | FS Location Code | Yes | String(1) | 9 |
1 | fsDivsionCode | FS Division Code | Yes | String(4) | 1003 |
DB Query
Code Block |
---|
SELECT
FIN_COA_CD,
ORG_CD,
UC_LOC_CD,
UC_HIERARCHY_CD,
UC_HIERARCHY_TYPE_CD
FROM UCI_CA_ORG_XW_T
WHERE UC_HIERARCHY_TYPE_CD='V' AND
(
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='1003') OR
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='1005') OR
(UC_LOC_CD='0' AND UC_HIERARCHY_CD='0000')
); |
Result Schema: A list of following elements (OrganizationValidation.java)
Parameter | Description | Data Type | Example |
---|
kfsChartCode | KFS Chart Code | String(2) | IR |
kfsOrgCode | KFS Organization Code | String(4) | 9801 |
fsHierarchyType | FS Hierarchy Type | String | V |
fsLocationCode | FS Location Code | String | 9 |
fsHierarchyCode | FS Hierarchy Code | String | 1003 |
WS Example
Request
Response
Java Client Example
translateFSSubDivisions(List of (fsLocationCode, fsSubDivisionCode))
This service is used to validate KFS organization. Returns an XML result set with a value of true or false for each organization.
Input Specifications
Index | Parameter | Description | Required? | Data Type (max length) | Example |
---|
0 | fsLocationCode | FS Location Code | Yes | String(1) | 9 |
1 | fsSubDivisionCode | FS SubDivisionCode | No | String(4) | 1003 |
DB Query
Code Block |
---|
SELECT
FIN_COA_CD,
ORG_CD,
UC_LOC_CD,
UC_HIERARCHY_CD,
UC_HIERARCHY_TYPE_CD
FROM UCI_CA_ORG_XW_T
WHERE UC_HIERARCHY_TYPE_CD='S' AND
(
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='1003') OR
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='1005') OR
(UC_LOC_CD='0' AND UC_HIERARCHY_CD='0000')
); |
Result Schema: A list of following elements (OrganizationValidation.java)
Parameter | Description | Data Type | Example |
---|
kfsChartCode | KFS Chart Code | String(2) | IR |
kfsOrgCode | KFS Organization Code | String(4) | 9001 |
fsHierarchyType | FS Hierarchy Type | String | S |
fsLocationCode | FS Location Code | String | 9 |
fsHierarchyCode | FS Hierarchy Code | String | 1003 |
WS Example
Request
Response
Java Client Example
translateFSDepartments(List of (fsLocationCode, fsDepartmentCode))
This service is used to validate KFS organization. Returns an XML result set with a value of true or false for each organization.
Input Specifications
Index | Parameter | Description | Required? | Data Type (max length) | Example |
---|
0 | fsLocationCode | FS Location Code | Yes | String(1) | 9 |
1 | fsDepartmentCode | FS DepartmentCode | No | String(4) | 0302 |
DB Query
Code Block |
---|
SELECT
FIN_COA_CD,
ORG_CD,
UC_LOC_CD,
UC_HIERARCHY_CD,
UC_HIERARCHY_TYPE_CD
FROM UCI_CA_ORG_XW_T
WHERE UC_HIERARCHY_TYPE_CD='D' AND
(
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='0302') OR
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='0003') OR
(UC_LOC_CD='0' AND UC_HIERARCHY_CD='0000')
); |
Result Schema: A list of following elements (FS2KFSOrganizationDetails.java)
Parameter | Description | Data Type | Example |
---|
kfsChartCode | KFS Chart Code | String(2) | IR |
kfsOrgCode | KFS Organization Code | String(4) | 0302 |
fsHierarchyType | FS Hierarchy Type | String | D |
fsLocationCode | FS Location Code | String | 9 |
fsHierarchyCode | FS Hierarchy Code | String | 0302 |
WS Example
Request
Response
Code Block |
---|
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:adc="http://www.adcom.uci.edu">
<soapenv:Header/>
<soapenv:Body>
<adc:translateFSOrganizations>
<fsOrganizationList>
<item>9</item>
<item>9030</item>
</fsOrganizationList>
<fsOrganizationList>
<item>9</item>
<item>9040</item>
</fsOrganizationList>
<fsOrganizationList>
<item>0</item>
<item>0000</item>
</fsOrganizationList>
</adc:translateFSOrganizations>
</soapenv:Body>
</soapenv:Envelope> |
Response
Code Block |
---|
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:translateFSOrganizationsResponse xmlns:ns2="http://www.adcom.uci.edu">
<return>
<fsHierarchyCode>9030</fsHierarchyCode>
<fsHierarchyType>O</fsHierarchyType>
<fsLocationCode>9</fsLocationCode>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgCode>9903</kfsOrgCode>
</return>
<return>
<fsHierarchyCode>9040</fsHierarchyCode>
<fsHierarchyType>O</fsHierarchyType>
<fsLocationCode>9</fsLocationCode>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgCode>9904</kfsOrgCode>
</return>
</ns2:translateFSOrganizationsResponse>
</soap:Body>
</soap:Envelope> |
Java Client Example
...
translateFSDivisions(List of (fsLocationCode, fsDivsionCode))
This service is used to validate KFS organization. Returns an XML result set with a value of true or false for each organization.
Input Specifications
Index | Parameter | Description | Required? | Data Type (max length) | Example |
---|
0 | fsLocationCode | FS Location Code | Yes | String(1) | 9 |
1 | fsDivsionCode | FS Division Code | Yes | String(4) | 1003 |
DB Query
Code Block |
---|
SELECT
FIN_COA_CD,
ORG_CD,
UC_LOC_CD,
UC_HIERARCHY_CD,
UC_HIERARCHY_TYPE_CD
FROM UCI_CA_ORG_XW_T
WHERE UC_HIERARCHY_TYPE_CD='V' AND
(
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='1003') OR
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='1005') OR
(UC_LOC_CD='0' AND UC_HIERARCHY_CD='0000')
); |
Result Schema: A list of following elements (OrganizationValidation.java)
Parameter | Description | Data Type | Example |
---|
kfsChartCode | KFS Chart Code | String(2) | IR |
kfsOrgCode | KFS Organization Code | String(4) | 9801 |
fsHierarchyType | FS Hierarchy Type | String | V |
fsLocationCode | FS Location Code | String | 9 |
fsHierarchyCode | FS Hierarchy Code | String | 1003 |
WS Example
Request
Code Block |
---|
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:adc="http://www.adcom.uci.edu">
<soapenv:Header/>
<soapenv:Body>
<adc:translateFSDivisions>
<fsOrganizationList>
<item>9</item>
<item>1003</item>
</fsOrganizationList>
<fsOrganizationList>
<item>9</item>
<item>1005</item>
</fsOrganizationList>
<fsOrganizationList>
<item>0</item>
<item>0000</item>
</fsOrganizationList>
</adc:translateFSDivisions>
</soapenv:Body>
</soapenv:Envelope> |
Response
Code Block |
---|
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:translateFSDivisionsResponse xmlns:ns2="http://www.adcom.uci.edu">
<return>
<fsHierarchyCode>1003</fsHierarchyCode>
<fsHierarchyType>V</fsHierarchyType>
<fsLocationCode>9</fsLocationCode>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgCode>9801</kfsOrgCode>
</return>
<return>
<fsHierarchyCode>1005</fsHierarchyCode>
<fsHierarchyType>V</fsHierarchyType>
<fsLocationCode>9</fsLocationCode>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgCode>9802</kfsOrgCode>
</return>
</ns2:translateFSDivisionsResponse>
</soap:Body>
</soap:Envelope> |
Java Client Example
...
translateFSSubDivisions(List of (fsLocationCode, fsSubDivisionCode))
This service is used to validate KFS organization. Returns an XML result set with a value of true or false for each organization.
Input Specifications
Index | Parameter | Description | Required? | Data Type (max length) | Example |
---|
0 | fsLocationCode | FS Location Code | Yes | String(1) | 9 |
1 | fsSubDivisionCode | FS SubDivisionCode | No | String(4) | 1003 |
DB Query
Code Block |
---|
SELECT
FIN_COA_CD,
ORG_CD,
UC_LOC_CD,
UC_HIERARCHY_CD,
UC_HIERARCHY_TYPE_CD
FROM UCI_CA_ORG_XW_T
WHERE UC_HIERARCHY_TYPE_CD='S' AND
(
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='1003') OR
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='1005') OR
(UC_LOC_CD='0' AND UC_HIERARCHY_CD='0000')
); |
Result Schema: A list of following elements (OrganizationValidation.java)
Parameter | Description | Data Type | Example |
---|
kfsChartCode | KFS Chart Code | String(2) | IR |
kfsOrgCode | KFS Organization Code | String(4) | 9001 |
fsHierarchyType | FS Hierarchy Type | String | S |
fsLocationCode | FS Location Code | String | 9 |
fsHierarchyCode | FS Hierarchy Code | String | 1003 |
WS Example
Request
Code Block |
---|
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:adc="http://www.adcom.uci.edu">
<soapenv:Header/>
<soapenv:Body>
<adc:translateFSSubDivisions>
<fsOrganizationList>
<item>9</item>
<item>1003</item>
</fsOrganizationList>
<fsOrganizationList>
<item>9</item>
<item>1005</item>
</fsOrganizationList>
<fsOrganizationList>
<item>0</item>
<item>0000</item>
</fsOrganizationList>
</adc:translateFSSubDivisions>
</soapenv:Body>
</soapenv:Envelope> |
Response
Code Block |
---|
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:translateFSSubDivisionsResponse xmlns:ns2="http://www.adcom.uci.edu">
<return>
<fsHierarchyCode>1003</fsHierarchyCode>
<fsHierarchyType>S</fsHierarchyType>
<fsLocationCode>9</fsLocationCode>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgCode>9001</kfsOrgCode>
</return>
<return>
<fsHierarchyCode>1005</fsHierarchyCode>
<fsHierarchyType>S</fsHierarchyType>
<fsLocationCode>9</fsLocationCode>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgCode>9002</kfsOrgCode>
</return>
</ns2:translateFSSubDivisionsResponse>
</soap:Body>
</soap:Envelope> |
Java Client Example
...
translateFSDepartments(List of (fsLocationCode, fsDepartmentCode))
This service is used to validate KFS organization. Returns an XML result set with a value of true or false for each organization.
Input Specifications
Index | Parameter | Description | Required? | Data Type (max length) | Example |
---|
0 | fsLocationCode | FS Location Code | Yes | String(1) | 9 |
1 | fsDepartmentCode | FS DepartmentCode | No | String(4) | 0302 |
DB Query
Code Block |
---|
SELECT
FIN_COA_CD,
ORG_CD,
UC_LOC_CD,
UC_HIERARCHY_CD,
UC_HIERARCHY_TYPE_CD
FROM UCI_CA_ORG_XW_T
WHERE UC_HIERARCHY_TYPE_CD='D' AND
(
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='0302') OR
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='0003') OR
(UC_LOC_CD='0' AND UC_HIERARCHY_CD='0000')
); |
Result Schema: A list of following elements (FS2KFSOrganizationDetails.java)
Parameter | Description | Data Type | Example |
---|
kfsChartCode | KFS Chart Code | String(2) | IR |
kfsOrgCode | KFS Organization Code | String(4) | 0302 |
fsHierarchyType | FS Hierarchy Type | String | D |
fsLocationCode | FS Location Code | String | 9 |
fsHierarchyCode | FS Hierarchy Code | String | 0302 |
WS Example
Request
Code Block |
---|
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:adc="http://www.adcom.uci.edu">
<soapenv:Header/>
<soapenv:Body>
<adc:translateFSDepartments>
<fsOrganizationList>
<item>9</item>
<item>0302</item>
</fsOrganizationList>
<fsOrganizationList>
<item>9</item>
<item>0003</item>
</fsOrganizationList>
<fsOrganizationList>
<item>0</item>
<item>0000</item>
</fsOrganizationList>
</adc:translateFSDepartments>
</soapenv:Body>
</soapenv:Envelope> |
Response
Code Block |
---|
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:translateFSDepartmentsResponse xmlns:ns2="http://www.adcom.uci.edu">
<return>
<fsHierarchyCode>0003</fsHierarchyCode>
<fsHierarchyType>D</fsHierarchyType>
<fsLocationCode>9</fsLocationCode>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgCode>0003</kfsOrgCode>
</return>
<return>
<fsHierarchyCode>0302</fsHierarchyCode>
<fsHierarchyType>D</fsHierarchyType>
<fsLocationCode>9</fsLocationCode>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgCode>0302</kfsOrgCode>
</return>
</ns2:translateFSDepartmentsResponse>
</soap:Body>
</soap:Envelope> |
Java Client Example
...