...
Code Block |
---|
DWHServerService dss = new DWHServerService();
DWHServer ds = dss.getDWHServerPort();
ArrayList<OrganizationParameters> pl17 = new ArrayList<OrganizationParameters>();
OrganizationParameters op170 = new OrganizationParameters();
op170.setKfsChartCode("UC");
op170.setKfsOrgCode("9999");
OrganizationParameters op171 = new OrganizationParameters();
op171.setKfsChartCode("IR");
op171.setKfsOrgCode("9999");
OrganizationParameters op172 = new OrganizationParameters();
op172.setKfsChartCode("MC");
op172.setKfsOrgCode("9999");
OrganizationParameters op173 = new OrganizationParameters();
op173.setKfsChartCode("XX");
op173.setKfsOrgCode("0000");
pl17.add(op170);
pl17.add(op171);
pl17.add(op172);
pl17.add(op173);
List<OrganizationDetails> resultList18 = ds.getValidKFSOrganizations(pl17);
if (resultList18 != null) {
for (Iterator i = resultList18.iterator(); i.hasNext();) {
OrganizationDetails element = (OrganizationDetails) i.next();
System.out.println("\t" + element.getKfsChartCode() + "/" + element.getKfsOrgCode() + " : " + element.getKfsOrgName());
}
} else {
System.out.println("something bad happened...please check your query");
} |
getKFSChildOrganizations(kfsOrgCode, kfsChartCode)
This service is used retrieve valid KFS child organizations with its flattened out org structure for reference. Returns an XML result set with a list of organizations
Input Specifications
Index | Parameter | Description | Required? | Data Type (max length) | Example |
---|
0 | kfsChartCode | KFS Chart Code | Yes | String(2) | IR |
1 | kfsOrgCode | KFS Organization Code | Yes | String(4) | 9052 |
DB Query
Code Block |
---|
SELECT
FIN_COA_CD,
ORG_CD
FROM CA_ORG_T a WHERE a.ORG_ACTIVE_CD <> 'N' AND
(
(a.ORG_CD='9052' AND a.FIN_COA_CD='IR') OR
(a.ORG_CD='9053' AND a.FIN_COA_CD='IR') OR
(a.ORG_CD='1111' AND a.FIN_COA_CD='IR') OR
(a.ORG_CD='9054' AND a.FIN_COA_CD='XX')
); |
Result Schema: A list of following elements (OrganizationDetails.java)
DB Parameter | Java Parameter | Description | Data Type | Example |
---|
FIN_COA_CD | kfsChartCode | KFS Chart Code | String (2) | IR |
ORG_CD | kfsOrgCode | KFS Organization Code | String (4) | 1234 |
ORG_NM | kfsOrgName | KFS Organization Name | String (4) | |
| kfsOrgCategory | KFS Organization Category | String (4) | Denotes the org level category designated by the budget office: 'U' , 'C', 'S', 'D' |
| kfsOrgRollupLevel1 | KFS Organization Rollup Level 1 | String (4) | |
| kfsOrgRollupLevel2 | KFS Organization Rollup Level 2 | String (4) | |
| kfsOrgRollupLevel3 | KFS Organization Rollup Level 3 | String (4) | |
| kfsOrgRollupLevel4 | KFS Organization Rollup Level 4 | String (4) | |
| kfsOrgRollupLevel5 | KFS Organization Rollup Level 5 | String (4) | |
| kfsOrgRollupLevel6 | KFS Organization Rollup Level 6 | String (4) | |
WS Example
Request
Response
Java Client Example
...
getAllKFSOrganizations()
No input parameter, ALL active KFS organization details will be returned in result set.
DB Query
Code Block |
---|
SELECT
FIN_COA_CD,
ORG_CD,
ORG_MGR_UNVL_ID,
ORG_NM,
RC_CD,
ORG_PHYS_CMP_CD,
ORG_TYP_CD,
ORG_DFLT_ACCT_NBR,
ORG_LN1_ADDR,
ORG_LN2_ADDR,
ORG_CITY_NM,
ORG_STATE_CD,
ORG_ZIP_CD,
ORG_CNTRY_CD,
ORG_BEGIN_DT,
ORG_END_DT,
RPTS_TO_FIN_COA_CD,
RPTS_TO_ORG_CD,
ORG_ACTIVE_CD,
ORG_PLNT_ACCT_NBR,
CMP_PLNT_ACCT_NBR,
ORG_PLNT_COA_CD,
CMP_PLNT_COA_CD
FROM CA_ORG_T WHERE ORG_ACTIVE_CD <> 'N'; |
Result Schema: SAME as getValidKFSOrganizations
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:getAllKFSOrganizations/>
</soapenv:Body>
</soapenv:Envelope> |
Response
Code Block |
---|
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:getAllKFSOrganizationsResponse xmlns:ns2="http://www.adcom.uci.edu">
<return>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgActiveCode>Y</kfsOrgActiveCode>
<kfsOrgAddr1>Campus Drive</kfsOrgAddr1>
<kfsOrgCampusCode>IR</kfsOrgCampusCode>
<kfsOrgCity>Irvine</kfsOrgCity>
<kfsOrgCode>9052</kfsOrgCode>
<kfsOrgCountryCode>US</kfsOrgCountryCode>
<kfsOrgManagerId>000000076676</kfsOrgManagerId>
<kfsOrgName>PRIMARY CARE MEDICAL GROUP</kfsOrgName>
<kfsOrgState>CA</kfsOrgState>
<kfsOrgTypeCode>A</kfsOrgTypeCode>
<kfsOrgZip>92697</kfsOrgZip>
<kfsRCCode>10</kfsRCCode>
<kfsReportToChartCode>IR</kfsReportToChartCode>
<kfsReportToOrgCode>9821</kfsReportToOrgCode>
</return>
<return>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgActiveCode>Y</kfsOrgActiveCode>
<kfsOrgAddr1>Campus Drive</kfsOrgAddr1>
<kfsOrgCampusCode>IR</kfsOrgCampusCode>
<kfsOrgCity>Irvine</kfsOrgCity>
<kfsOrgCode>9053</kfsOrgCode>
<kfsOrgCountryCode>US</kfsOrgCountryCode>
<kfsOrgManagerId>000000076676</kfsOrgManagerId>
<kfsOrgName>HOSPITALIST PROGRAM</kfsOrgName>
<kfsOrgState>CA</kfsOrgState>
<kfsOrgTypeCode>A</kfsOrgTypeCode>
<kfsOrgZip>92697</kfsOrgZip>
<kfsRCCode>10</kfsRCCode>
<kfsReportToChartCode>IR</kfsReportToChartCode>
<kfsReportToOrgCode>9821</kfsReportToOrgCode>
</return>
...
...
</ns2:getAllKFSOrganizationsResponse>
</soap:Body>
</soap:Envelope> |
Java Client Example
Code Block |
---|
DWHServerService dss = new DWHServerService();
DWHServer ds = dss.getDWHServerPort();
List<OrganizationDetails> resultList14 = ds.getAllKFSOrganizations();
if (resultList14 != null) {
//for (Iterator i = resultList14.iterator(); i.hasNext();) {
// OrganizationDetails element = (OrganizationDetails)i.next();
//}
System.out.println("total size: " + resultList14.size());
System.out.println("the 1st item ChartCode / OrgCode: OrgName" + ((OrganizationDetails)resultList14.get(0)).getKfsChartCode() + " / " + ((OrganizationDetails)resultList14.get(0)).getKfsOrgCode() + " : " + ((OrganizationDetails)resultList14.get(0)).getKfsOrgName());
} else {
System.out.println("something bad happened...please check your query");
} |
...
This service is used to validate KFS organization. Returns an XML result set with a value of true or false for each organization.
Index | Parameter | Description | Required? | Data Type (max length) | Example |
---|
0 | fsLocationCode | FS Location Code | Yes | String(1) | 9 |
1 | fsHierarchyCode | FS Organization Code | No | String(4) | 2000 |
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='O' AND
(
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='2000') OR
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='3000') OR
(UC_LOC_CD='0' AND UC_HIERARCHY_CD='0000')
); |
...
Parameter | Description | Data Type | Example |
---|
kfsChartCode | KFS Chart Code | String(2) | IR |
kfsOrgCode | KFS Organization Code | String(4) | 9022 |
fsHierarchyType | FS Hierarchy Type | String | O |
fsLocationCode | FS Location Code | String | 9 |
fsHierarchyCode | FS Hierarchy Code | String | 2000 |
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:translateFSOrganizations>
<fsOrganizationList>
<fsHierarchyCode>2000</fsHierarchyCode>
<fsLocationCode>9</fsLocationCode>
</fsOrganizationList>
<fsOrganizationList>
<fsHierarchyCode>3000</fsHierarchyCode>
<fsLocationCode>9</fsLocationCode>
</fsOrganizationList>
<fsOrganizationList>
<fsHierarchyCode>0000</fsHierarchyCode>
<fsLocationCode>0</fsLocationCode>
</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>2000</fsHierarchyCode>
<fsHierarchyType>O</fsHierarchyType>
<fsLocationCode>9</fsLocationCode>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgCode>9022</kfsOrgCode>
</return>
<return>
<fsHierarchyCode>3000</fsHierarchyCode>
<fsHierarchyType>O</fsHierarchyType>
<fsLocationCode>9</fsLocationCode>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgCode>9002</kfsOrgCode>
</return>
</ns2:translateFSOrganizationsResponse>
</soap:Body>
</soap:Envelope> |
Java Client Example
Code Block |
---|
DWHServerService dss = new DWHServerService();
DWHServer ds = dss.getDWHServerPort();
ArrayList<OrganizationTranslateParameters> pl20 = new ArrayList<OrganizationTranslateParameters>();
OrganizationTranslateParameters otp200 = new OrganizationTranslateParameters();
otp200.setFsHierarchyCode("2000");
otp200.setFsLocationCode("9");
OrganizationTranslateParameters otp201 = new OrganizationTranslateParameters();
otp201.setFsHierarchyCode("3000");
otp201.setFsLocationCode("9");
OrganizationTranslateParameters otp202 = new OrganizationTranslateParameters();
otp202.setFsHierarchyCode("0000");
otp202.setFsLocationCode("0");
pl20.add(otp200);
pl20.add(otp201);
pl20.add(otp202);
List<Fs2KFSOrganizationDetails> resultList20 = ds.translateFSOrganizations(pl20);
if (resultList20 != null) {
for (Iterator i = resultList20.iterator(); i.hasNext();) {
Fs2KFSOrganizationDetails element = (Fs2KFSOrganizationDetails) i.next();
System.out.println("\t" + element.getFsLocationCode() + "/" + element.getFsHierarchyCode() + "/" + element.getFsHierarchyType() + " : " + element.getKfsChartCode() + "/" + element.getKfsOrgCode()); }
} else {
System.out.println("something bad happened...please check your query");
} |
...
This service is used to validate KFS organization. Returns an XML result set with a value of true or false for each organization.
Index | Parameter | Description | Required? | Data Type (max length) | Example |
---|
0 | fsLocationCode | FS Location Code | Yes | String(1) | 9 |
1 | fsHierarchyCode | FS Division Code | Yes | String(4) | 1015 |
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='1015') OR
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='1100') OR
(UC_LOC_CD='0' AND UC_HIERARCHY_CD='0000')
); |
...
Parameter | Description | Data Type | Example |
---|
kfsChartCode | KFS Chart Code | String(2) | IR |
kfsOrgCode | KFS Organization Code | String(4) | 9006 |
fsHierarchyType | FS Hierarchy Type | String | V |
fsLocationCode | FS Location Code | String | 9 |
fsHierarchyCode | FS Hierarchy Code | String | 1015 |
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>
<fsHierarchyCode>1015</fsHierarchyCode>
<fsLocationCode>9</fsLocationCode>
</fsOrganizationList>
<fsOrganizationList>
<fsHierarchyCode>1100</fsHierarchyCode>
<fsLocationCode>9</fsLocationCode>
</fsOrganizationList>
<fsOrganizationList>
<fsHierarchyCode>0000</fsHierarchyCode>
<fsLocationCode>0</fsLocationCode>
</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>1015</fsHierarchyCode>
<fsHierarchyType>V</fsHierarchyType>
<fsLocationCode>9</fsLocationCode>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgCode>9006</kfsOrgCode>
</return>
<return>
<fsHierarchyCode>1100</fsHierarchyCode>
<fsHierarchyType>V</fsHierarchyType>
<fsLocationCode>9</fsLocationCode>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgCode>9012</kfsOrgCode>
</return>
</ns2:translateFSDivisionsResponse>
</soap:Body>
</soap:Envelope> |
Java Client Example
Code Block |
---|
DWHServerService dss = new DWHServerService();
DWHServer ds = dss.getDWHServerPort();
ArrayList<OrganizationTranslateParameters> pl21 = new ArrayList<OrganizationTranslateParameters>();
OrganizationTranslateParameters otp210 = new OrganizationTranslateParameters();
otp210.setFsHierarchyCode("1015");
otp210.setFsLocationCode("9");
OrganizationTranslateParameters otp211 = new OrganizationTranslateParameters();
otp211.setFsHierarchyCode("1100");
otp211.setFsLocationCode("9");
OrganizationTranslateParameters otp212 = new OrganizationTranslateParameters();
otp212.setFsHierarchyCode("0000");
otp212.setFsLocationCode("0");
pl21.add(otp210);
pl21.add(otp211);
pl21.add(otp212);
List<Fs2KFSOrganizationDetails> resultList21 = ds.translateFSDivisions(pl21);
if (resultList21 != null) {
for (Iterator i = resultList21.iterator(); i.hasNext();) {
Fs2KFSOrganizationDetails element = (Fs2KFSOrganizationDetails) i.next();
System.out.println("\t" + element.getFsLocationCode() + "/" + element.getFsHierarchyCode() + "/" + element.getFsHierarchyType() + " : " + element.getKfsChartCode() + "/" + element.getKfsOrgCode()); }
} else {
System.out.println("something bad happened...please check your query");
} |
...
This service is used to validate KFS organization. Returns an XML result set with a value of true or false for each organization.
Index | Parameter | Description | Required? | Data Type (max length) | Example |
---|
0 | fsLocationCode | FS Location Code | Yes | String(1) | 9 |
1 | fsHierarchyCode | FS SubDivisionCode | Yes | String(4) | 1300 |
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='1300') OR
(UC_LOC_CD='9' AND UC_HIERARCHY_CD='1350') OR
(UC_LOC_CD='0' AND UC_HIERARCHY_CD='0000')
); |
...
Parameter | Description | Data Type | Example |
---|
kfsChartCode | KFS Chart Code | String(2) | IR |
kfsOrgCode | KFS Organization Code | String(4) | 9004 |
fsHierarchyType | FS Hierarchy Type | String | S |
fsLocationCode | FS Location Code | String | 9 |
fsHierarchyCode | FS Hierarchy Code | String | 1300 |
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>
<fsHierarchyCode>1300</fsHierarchyCode>
<fsLocationCode>9</fsLocationCode>
</fsOrganizationList>
<fsOrganizationList>
<fsHierarchyCode>1350</fsHierarchyCode>
<fsLocationCode>9</fsLocationCode>
</fsOrganizationList>
<fsOrganizationList>
<fsHierarchyCode>0000</fsHierarchyCode>
<fsLocationCode>0</fsLocationCode>
</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>1300</fsHierarchyCode>
<fsHierarchyType>S</fsHierarchyType>
<fsLocationCode>9</fsLocationCode>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgCode>9004</kfsOrgCode>
</return>
<return>
<fsHierarchyCode>1350</fsHierarchyCode>
<fsHierarchyType>S</fsHierarchyType>
<fsLocationCode>9</fsLocationCode>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgCode>9010</kfsOrgCode>
</return>
</ns2:translateFSSubDivisionsResponse>
</soap:Body>
</soap:Envelope> |
Java Client Example
Code Block |
---|
DWHServerService dss = new DWHServerService();
DWHServer ds = dss.getDWHServerPort();
ArrayList<OrganizationTranslateParameters> pl22 = new ArrayList<OrganizationTranslateParameters>();
OrganizationTranslateParameters otp220 = new OrganizationTranslateParameters();
otp220.setFsHierarchyCode("1300");
otp220.setFsLocationCode("9");
OrganizationTranslateParameters otp221 = new OrganizationTranslateParameters();
otp221.setFsHierarchyCode("1350");
otp221.setFsLocationCode("9");
OrganizationTranslateParameters otp222 = new OrganizationTranslateParameters();
otp222.setFsHierarchyCode("0000");
otp222.setFsLocationCode("0");
pl22.add(otp220);
pl22.add(otp221);
pl22.add(otp222);
List<Fs2KFSOrganizationDetails> resultList22 = ds.translateFSSubDivisions(pl22);
if (resultList22 != null) {
for (Iterator i = resultList22.iterator(); i.hasNext();) {
Fs2KFSOrganizationDetails element = (Fs2KFSOrganizationDetails) i.next();
System.out.println("\t" + element.getFsLocationCode() + "/" + element.getFsHierarchyCode() + "/" + element.getFsHierarchyType() + " : " + element.getKfsChartCode() + "/" + element.getKfsOrgCode());
}
} else {
System.out.println("something bad happened...please check your query");
} |
...
This service is used to validate KFS organization. Returns an XML result set with a value of true or false for each organization.
Index | Parameter | Description | Required? | Data Type (max length) | Example |
---|
0 | fsLocationCode | FS Location Code | Yes | String(1) | 9 |
1 | fsHierarchyCode | FS DepartmentCode | Yes | 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')
); |
...
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>
<fsHierarchyCode>0003</fsHierarchyCode>
<fsLocationCode>9</fsLocationCode>
</fsOrganizationList>
<fsOrganizationList>
<fsHierarchyCode>0302</fsHierarchyCode>
<fsLocationCode>9</fsLocationCode>
</fsOrganizationList>
<fsOrganizationList>
<fsHierarchyCode>0000</fsHierarchyCode>
<fsLocationCode>0</fsLocationCode>
</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>9027</kfsOrgCode>
</return>
<return>
<fsHierarchyCode>0302</fsHierarchyCode>
<fsHierarchyType>D</fsHierarchyType>
<fsLocationCode>9</fsLocationCode>
<kfsChartCode>IR</kfsChartCode>
<kfsOrgCode>8075</kfsOrgCode>
</return>
</ns2:translateFSDepartmentsResponse>
</soap:Body>
</soap:Envelope> |
Java Client Example
Code Block |
---|
DWHServerService dss = new DWHServerService();
DWHServer ds = dss.getDWHServerPort();
ArrayList<OrganizationTranslateParameters> pl23 = new ArrayList<OrganizationTranslateParameters>();
OrganizationTranslateParameters otp230 = new OrganizationTranslateParameters();
otp230.setFsHierarchyCode("0003");
otp230.setFsLocationCode("9");
OrganizationTranslateParameters otp231 = new OrganizationTranslateParameters();
otp231.setFsHierarchyCode("0302");
otp231.setFsLocationCode("9");
OrganizationTranslateParameters otp232 = new OrganizationTranslateParameters();
otp232.setFsHierarchyCode("0000");
otp232.setFsLocationCode("0");
pl23.add(otp230);
pl23.add(otp231);
pl23.add(otp232);
List<Fs2KFSOrganizationDetails> resultList23 = ds.translateFSDepartments(pl23);
if (resultList23 != null) {
for (Iterator i = resultList23.iterator(); i.hasNext();) {
Fs2KFSOrganizationDetails element = (Fs2KFSOrganizationDetails) i.next();
System.out.println("\t" + element.getFsLocationCode() + "/" + element.getFsHierarchyCode() + "/" + element.getFsHierarchyType() + " : " + element.getKfsChartCode() + "/" + element.getKfsOrgCode());
}
} else {
System.out.println("something bad happened...please check your query");
} |
...