Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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. However, the web service will not save xml objects that cannot be parsed into a landing report object. This is the minimum standard of a save event in an unsubmitted state. All other report status" ' will trigger the report to be saved in the traditional report tables and columns.

The saveLandingReport() takes four arguments: 1.

  1. String Userid – i.e "amarx"

...

  1. String password – i.e. "A_marx"

...

  1. String schemaVersionNumber – i.e. "2.1"

...

  1. String landingReportInXmlDataFormat – 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. saveLandingReport (userid, password, schemaVersionNumber, landingReportInXmlDataFormat);
    Or

saveLandingReport_method_call_example.txt

...