Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

« Previous Version 3 Next »

Usage

Dev WSDL location: https://thea.adcom.uci.edu/WebServices/DWHServer?wsdl

Dev Endpoint: https://thea.adcom.uci.edu/WebServices/DWHServer

isValidKFSOrganizations(List of ())

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

ParameterDescriptionRequired?Data Type (max length)Example
kfsProjCodeKFS Project NumberYesString(10)'1234567890'

DB Query

select * FROM KFSINT.CA_ORG_T a " + "where a.org_cd='" + pKFSOrganizationCode + "' AND a.fin_coa_cd='" + pChartCode + "' " + "AND a.ORG_ACTIVE_CD <> 'N' "

Result Schema: A list of following elements (OrganizationValidation.java)

ParameterDescriptionData TypeExample
kfsCodeKFS CodeString (10)'1234567890'
isValidIs the KFS Project Code valid?booleantrue 

WS Example

Request
 
Response
 

Java Client Example

 

 

getAllKFSOrganizations()

DB Query

sql.append("SELECT ");
sql.append(" a.fin_coa_cd as \"Chart Code\", ");
sql.append(" a.org_cd as \"Organization Code \", ");
sql.append(" a.org_nm as \"Organization Name \", ");
sql.append(" a.RPTS_TO_FIN_COA_CD as \"Reports to Chart Code\", ");

Result Schema: A list of following elements (OrganizationDetails.java)

ParameterDescriptionData TypeExample
kfsCodeKFS CodeString (10)'1234567890'
isValidIs the KFS Project Code valid?booleantrue 

WS Example

Request
 
Response
 

Java Client Example

 
  • No labels