...
Index | Parameter | Description | Required? | Data Type (max length) | Example |
---|
0 | kfsChartCode | KFS Chart Code | Yes | String(2) | IR |
1 | kfsAcctNumber | KFS Account Number | Yes | String(7) | 1234567 |
2 | kfsSubAcctNumber | KFS SubAccount Number | Yes | String(7) | 1234567 |
DB Query
Result Schema: A list of following elements (
...
KFSSubAccountDetails.java)
Parameter | Description | Data Type | Example | fsLocationCode | The FS location code | String (2) | 9 |
---|
fsAccountCode | The FS accounts code | String (6) | 110001 |
fsFundCode | The FS fund code | String (5) | 111200 |
kfsChartCode | KFS Chart Code | String (2) | 'IR' |
kfsAcctNumber | KFS Account Number | String (7) | '1234567' |
...
Request
Response
Java Client Example
...
getAllKFSSubAccounts()
Input Specifications
Index | Parameter | Description | Required? | Data Type (max length) | Example |
---|
0 | kfsChartCode | KFS Chart Code | Yes | String(2) | IR |
1 | kfsAcctNumber | KFS Account Number | Yes | String(7) | 1234567 |
2 | kfsSubAcctNumber | KFS SubAccount Number | Yes | String(7) | 1234567 |
DB Query
WS Example
Request
Response
Java Client Example
Code Block |
---|
SELECT fin_coa_cd, account_nbr, account_nm, sub_acct_nbr, sub_acct_nm FROM ca_sub_acct_t WHERE SUB_ACCT_ACTV_CD <> 'N' |
...
getAllKFSSubAccounts()
No input parameter, ALL active KFS subaccount details will be returned in result set.
DB Query
Result Schema: A list of following elements (
...
KFSSubAccountDetails.java)
Parameter | Description | Data Type | Example |
---|
fsLocationCode | The FS location code | String (2) | 9 |
fsAccountCode | The FS accounts code | String (6) | 110001 |
fsFundCode | The FS fund code | String (5) | 111200 |
---|
kfsChartCode | KFS Chart Code | String (2) | 'IR' |
kfsAcctNumber | KFS Account Number | String (7) | '1234567' |
| | | |
WS Example
Request
Response
Java Client Example
...