66 Matching Annotations
  1. Oct 2025
  2. docs-staging.docs.admlabs.aws.swinfra.net docs-staging.docs.admlabs.aws.swinfra.net
  3. Sep 2025
  4. docs-staging.docs.admlabs.aws.swinfra.net docs-staging.docs.admlabs.aws.swinfra.net
    1. ))

      Please add another line below this one:

      isEqual(date1, date 2) DateUtils.isEqual(entity['done_date'], entity['last_modified']) Verifies if the values of 2 date fields are equal. '==' and '!=' are not supported for date fields.

    2. entiy[‘date_udf1’].Value!=entiy[‘date_udf2’].Value; entiy[‘date_udf’].Value==(new Date())

      Please replace the example with: Date.current() <= DateUtils.addWeeksToDate(entity['creation_time'], 2)

    3. 3)

      Please add before this line: DateUtils.addSecondsToDate(date, seconds) DateUtils.addSecondsToDate(entity['creation_time'],55) Adds the seconds to the date field value. Example and Description for this line: DateUtils.addMinutesToDate(entity['creation_time'], 30) Adds the minutes to the date field value.

    4. )

      Example and Description: DateUtils.subtractMinutes(entity['last_modified'],55) Subtracts a specified number of minutes from a date field value.

      Please add a line for DateUtils.subtractYears(date, years)

    5. subtractWorkDays(date,days)

      Replace the line with: subtractMonths(date, months) DateUtils.subtractMonths(entity['last_modified'],2) Subtracts a specified number of months from a date field value.

    6. DateUtils.addMinutesToDate(new Date(),2)

      Example and Description: DateUtils.subtractDays(entity['last_modified'],3) Subtracts a specified number of days from a date field value.

    7. Substracts

      Please add before this line: DateUtils.subtractSeconds(date, seconds) DateUtils.subtractSeconds(entity['last_modified'],55) Subtracts a specified number of seconds from a date field value.

    8. (entity[‘udf’] > entity[‘udf’].originalValue) ? entity[‘udf’] : entity[‘udf’].originalValue)

      originalValue is not implemented for Verve release. Let' replace with this one: (entity['story_points'] > entity['actual_story_points']) ? entity['story_points'] : entity['actual_story_points']

    9. count(enity.children

      CollectionUtils.count(entity.product_areas)

      we dont support yet children. But we support other fields that are Collections: application modules, multi value lists, teams, etc

    10. sum(collection) sum(entity.children.int_udf) Returns the sum of all entity's children's int value. avg(epression) avg(enity.children.story_points) Returns the average value calculated from all the entity’s children. count() count(enity.children)

      to be removed - all 3. Not implemented

    11. entity[‘story_points’],entity[‘actual_story_points’],entity[‘udf’],..

      Currently, we support also these annotations for calling the properties of the entities: entity.story_points; entity.actual_story_points. We should document both