...
eLandings allows users to save a landing report in one of three states. These report status types are: *
- 1 = NOT SUBMITTED
...
- 8 = FINAL REPORT SUBMITTED
...
- 16 = REPORT DELETED
If a landing report is saved with a ReportStatus = 1 (NOT SUBMITTED), the data is stored in a clob in the database. This allows users to save unsubmitted reports in an incomplete or incorrect state. All other report status will trigger the report to be saved in the traditional report tables and columns.
The submitProductionReport() takes four arguments: 1.
- String Userid – i.e "amarx"
...
- String password – i.e. "A_marx"
...
- String schemaVersionNumber – i.e. "2.1"
...
- String productionReportInXmlDataFormat – see below for example of long string
In the web service client we might auto generate a data structure by providing the web service url. In eLandings we use Java – JAX-WS and generated a structure called ReportManager.
ReportManagement ws;
"
"
String xml = ws. submitProductionReport(userid, password, schemaVersionNumber, productionReportInXmlDataFormat);
Or
...