FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Complex Type: FileQueryParameters

Derived By

Restricting anyType

Content Model

Contains elements as defined in the following table.

Component  Type  Occurs  Description 
    1..1   
FileID  SimpleQueryType  0..1 

A FileID element contains:

  • value—a string to match part or all of the file ID.

  • searchType—one of the following simpleSearchType values:

    • STARTS_WITH

    • CONTAINS

    • ENDS_WITH

    • EQUALS

Description  SimpleQueryType  0..1 

A Description element contains:

  • value—a string to match part or all of the description.

  • searchType—one of the following simpleSearchType values:

    • STARTS_WITH

    • CONTAINS

    • ENDS_WITH

    • EQUALS

FileName  SimpleQueryType  0..1 

A FileName element contains:

  • value—a string to match part or all of the file name.

  • searchType—one of the following simpleSearchType values:

    • STARTS_WITH

    • CONTAINS

    • ENDS_WITH

    • EQUALS

FileStatus  FileStatusType  0..1  See FileStatusType.
CreationDateStart  date  0..1  Date the file creation started.
CreationDateEnd  date  0..1  Date the file creation ended.
LastUploadedDateStart  date  0..1  Date the last upload started.
LastUploadedDateEnd  date  0..1  Date the last upload ended.
LastModifiedDateTime  DateTimeQueryType  0..1 

Enables producers to import data about periodic updates into their back office system and make this data available to their end customers.

In a request, the parameter has the following structure:

<LastModifiedDateTime>
   <value>2022-09-13T15:00:34+02:00</value>
   <searchType>AFTER</searchType>
</LastModifiedDateTime>

The LastModifiedDateType includes a value and searchType:

  • value—The date and time value is used to select items based on when they were last modified. If no time zone is provided in the request, the search is carried out in the time zone of the FlexNet Operations database (Pacific Standard Time (PST) or Pacific Daylight Time (PDT)). This can be overridden by specifying a time zone in the request. When including a time zone in the request, the time zone should be specified as offset from GMT (for example, 2022-09-13T15:00:34+02:00).

  • searchType—One of the following values: ON, AFTER, BEFORE.

The date and time in the response are provided in Greenwich Mean Time (GMT).

EXAMPLE

When a download package is created at 2022-08-11T07:10:39 - PST, it can be searched in following ways:

Central European Time (CET)

<LastModifiedDateTime>
   <value>2022-08-11T16:10:39+02:00</value>
   <searchType>ON</searchType>
</LastModifiedDateTime>


Greenwich Mean Time (GMT)

<LastModifiedDateTime>
   <value>2022-08-11T14:10:39.000Z</value>
   <searchType>ON</searchType>
</LastModifiedDateTime>


Pacific Standard Time (PST)

<LastModifiedDateTime>
   <value>2022-08-11T07:10:39</value>
   <searchType>ON</searchType>
</LastModifiedDateTime>

Also, the following parameter should be set to true:

<ReturnContainedObjects>true</ReturnContainedObjects>