...
Index | Parameter | Description | Required? | Data Type (max length) | Example |
---|---|---|---|---|---|
0 | fsLocationCode | FS Location Code | Yes | String(1) | 9 |
1 | fsOrganizationCode | FS Organization Code | No | String(4) | 9030 |
DB Query
Code Block |
---|
SELECTSELECT FIN_COA_CD, ORG_CD, UC_LOC_CD, UC_HIERARCHY_CD, UC_HIERARCHY_TYPE_CDCD FROM UCI_CA_ORG_XW_TT WHERE UC_HIERARCHY_TYPE_CD='O' AND ( (UC_LOC_CD='9' AND UC_HIERARCHY_CD='9030') OR (UC_LOC_CD='9' AND UC_HIERARCHY_TYPE_CD='9040') OR (UC_LOC_CD='0' AND UC_HIERARCHY_CD='O0000') ); |
Result Schema: A list of following elements (OrganizationValidation.java)
...
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 |
---|
SELECTSELECT FIN_COA_CD, ORG_CD, UC_LOC_CD, UC_HIERARCHY_CD, UC_HIERARCHY_TYPE_CDCD FROM UCI_CA_ORG_XW_T WHERE _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_TYPE_CD='1005') OR (UC_LOC_CD='0' AND UC_HIERARCHY_CD='V0000') ); |
Result Schema: A list of following elements (OrganizationValidation.java)
...
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 |
---|
SELECTSELECT FIN_COA_CD, ORG_CD, UC_LOC_CD, UC_HIERARCHY_CD, UC_HIERARCHY_TYPE_CDCD FROM UCI_CA_ORG_XW_T WHERE _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_TYPE_CD='1005') OR (UC_LOC_CD='0' AND UC_HIERARCHY_CD='S0000') ); |
Result Schema: A list of following elements (OrganizationValidation.java)
...
Code Block |
---|
Response
Code Block |
---|
Java Client Example
Code Block |
---|
...
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 |
---|
SELECTSELECT FIN_COA_CD, ORG_CD, UC_LOC_CD, UC_HIERARCHY_CD, UC_HIERARCHY_TYPE_CDCD FROM UCI_CA_ORG_XW_TT WHERE UC_HIERARCHY_TYPE_CD='D' AND ( (UC_LOC_CD='9' AND UC_HIERARCHY_CD='0302') OR (UC_LOC_CD='9' AND UC_HIERARCHY_TYPE_CD='0003') OR (UC_LOC_CD='0' AND UC_HIERARCHY_CD='D0000') ); |
Result Schema: A list of following elements (FS2KFSOrganizationDetails.java)
...
Code Block |
---|
Response
Code Block |
---|
|
Java Client Example
Code Block |
---|
...