Package | Description |
---|---|
com.deltek.enterprise.system.applicationinterface.integration |
Modifier and Type | Interface and Description |
---|---|
interface |
CommonInterface |
interface |
GOVWINIQImportInterface
HRsmart provides methods to allow Constpoint application to import data from GOVWINIQ system ;
use Application object getGOVWINIQImportInterface method to get GOVWINIQImportInterfaceImportInterface
Use createOutputRowSet method to convert GOVWINIQ IntRowSetRead into data structure we can pass to Costpoint application.
|
interface |
GOVWINIQInterface
provides methods to allow Constpoint application to interate with one of the Interfaces in the GOVWINIQ system ;
use Application object getHRsmartInterface method to get GOVWINIQInterface
|
interface |
HRsmartInterface
HRsmart provides methods to allow Constpoint application to interate with one of the Interfaces in the HRsmart system ;
use Application object getHRsmartInterface method to get HRsmartInterface
|
interface |
IntRowSet |
interface |
MESInterface
SoluminaInterface provides methods to allow Constpoint application to interate with one of the web service in Solumina system ;
use Application object getSoluminaInterface() method to get SoluminaInterface
|
interface |
NGRPInterface
NGRPInterface provides methods to allow Constpoint application to interate with one of the Interfaces in the Vision system ;
use Application object getNGRPInterface method to get NGRPInterface
|
interface |
SFTInterface
SFT provides methods to allow Constpoint application to interate with one of the Interfaces in the Automite system ;
use Application object getSFTInterface method to get SFTInterface
|
interface |
SilkroadInterface
Silkroad provides methods to allow Constpoint application to interate with one of the Interfaces in the Silkroad system ;
use Application object getSilkroadInterface method to get SilkroadInterface
|
interface |
VisionImportInterface
HRsmart provides methods to allow Constpoint application to import data from GOVWINIQ system ;
use Application object getGOVWINIQImportInterface method to get GOVWINIQImportInterfaceImportInterface
Use createOutputRowSet method to convert GOVWINIQ IntRowSetRead into data structure we can pass to Costpoint application.
|
interface |
VisionInterface
VisionInterface provides methods to allow Constpoint application to interate with one of the Interfaces in the Vision system ;
use Application object getVisionInterface method to get VisionInterface
|
Modifier and Type | Method and Description |
---|---|
IntRowWrite |
InvokeAppInterface.getRegularActionReportParams()
Use this method to get reference to the parameters row that you can populate with data
using set* methods and then pass as a parameter to one of the method that invokes action or report;
you only need to do it if you invoke action/report with regular parameters as opposed to the
saved parameter or archive report id
|
Modifier and Type | Method and Description |
---|---|
com.deltek.enterprise.system.serverapi.remoteapi.integration.MethodResponseInterface |
InvokeAppInterface.invokeAction(java.lang.String actionID,
java.lang.String rsID,
java.lang.String companyId,
IntRowWrite params,
java.lang.String savedParmId)
You this method to invoke action synchronously .
|
void |
InvokeAppInterface.invokeActionAsync(java.lang.String actionID,
java.lang.String rsID,
java.lang.String companyId,
IntRowWrite params,
java.lang.String savedParmId)
You this method to invoke action asynchronously ; it works same way as invokeAction() except
we submit invoke action request to the framework and immidiately return control back.
|
void |
InvokeAppInterface.invokeExcelReportAsync(java.lang.String reportID,
java.lang.String rsID,
java.lang.String companyId,
IntRowWrite params,
java.lang.String savedParmId,
int maxNumberOfPages) |
void |
InvokeAppInterface.invokeHTMLReportAsync(java.lang.String reportID,
java.lang.String rsID,
java.lang.String companyId,
IntRowWrite params,
java.lang.String savedParmId,
int maxNumberOfPages) |
void |
InvokeAppInterface.invokePDFReportAsync(java.lang.String reportID,
java.lang.String rsID,
java.lang.String companyId,
IntRowWrite params,
java.lang.String savedParmId,
int maxNumberOfPages)
method renerates report asynchronously ; it works same way as invokeReportPDF() except
we submit generate report request to the framework and immidiately return control back.
|
com.deltek.enterprise.system.serverapi.remoteapi.integration.ExcelReportResponse |
InvokeAppInterface.invokeReportExcel(java.lang.String reportID,
java.lang.String rsID,
java.lang.String companyId,
IntRowWrite params,
java.lang.String savedParmId,
java.lang.String archivedReportId,
int maxNumberOfPages)
Same as invokeReportPDF() but it returns back report in Excel format
|
com.deltek.enterprise.system.serverapi.remoteapi.integration.HTMLReportResponse |
InvokeAppInterface.invokeReportHTML(java.lang.String reportID,
java.lang.String rsID,
java.lang.String companyId,
IntRowWrite params,
java.lang.String savedParmId,
java.lang.String archivedReportId,
int maxNumberOfPages)
Same as invokeReportPDF() but it returns back report in PDF format
|
com.deltek.enterprise.system.serverapi.remoteapi.integration.PDFReportResponse |
InvokeAppInterface.invokeReportPDF(java.lang.String reportID,
java.lang.String rsID,
java.lang.String companyId,
IntRowWrite params,
java.lang.String savedParmId,
java.lang.String archivedReportId,
int maxNumberOfPages)
You this method to invoke report synchronously .
|