Enum Class EventType

Object
Enum<EventType>
EventType
All Implemented Interfaces:
Serializable, Comparable<EventType>, Constable

public enum EventType extends Enum<EventType>
All possible event type constants.
See Also:
  • Enum Constant Details Link icon

    • CALCULATION_COMPLETED_PL Link icon

      public static final EventType CALCULATION_COMPLETED_PL
      Price list calculation finished
    • CALCULATION_COMPLETED_SIM Link icon

      public static final EventType CALCULATION_COMPLETED_SIM
      Simulation calculation finished
    • CALCULATION_COMPLETED_CFS Link icon

      public static final EventType CALCULATION_COMPLETED_CFS
      Calculated fields set process finished
    • CALCULATION_COMPLETED_PG Link icon

      public static final EventType CALCULATION_COMPLETED_PG
      Price Grid (LPG) calculation finished
    • CALCULATION_COMPLETED_RC Link icon

      public static final EventType CALCULATION_COMPLETED_RC
      Rebate Records (RR) calculation finished
    • ITEM_APPROVED_CT Link icon

      public static final EventType ITEM_APPROVED_CT
      PromotionManager contract approved
    • ITEM_APPROVED_PGI Link icon

      public static final EventType ITEM_APPROVED_PGI
      Price Grid (LPG) line Item approved
    • ITEM_APPROVED_PL Link icon

      public static final EventType ITEM_APPROVED_PL
      Price list approved
    • ITEM_APPROVED_Q Link icon

      public static final EventType ITEM_APPROVED_Q
      Quote approved
    • ITEM_APPROVED_RR Link icon

      public static final EventType ITEM_APPROVED_RR
      Rebate Record approved
    • ITEM_APPROVED_DCR Link icon

      public static final EventType ITEM_APPROVED_DCR
      Data Change Request approved
    • ITEM_UPDATE_RR Link icon

      public static final EventType ITEM_UPDATE_RR
      Rebate Record updated
    • ITEM_UPDATE_PR Link icon

      public static final EventType ITEM_UPDATE_PR
      Price Record updated (add/update/delete)
    • ITEM_UPDATE_PGI Link icon

      public static final EventType ITEM_UPDATE_PGI
      Price grid line item updated (manual data change of the record)
    • ITEM_UPDATE_MPLI Link icon

      public static final EventType ITEM_UPDATE_MPLI
      Manual pricelist line item updated (add/update/delete – detailed info about the operation, contains the MPLI record detail)
    • CHANGE_NOTIFICATION_CA Link icon

      public static final EventType CHANGE_NOTIFICATION_CA
      Update of Customer Assignment (when Customer Assignment for price list or manual price list changes)
    • CHANGE_NOTIFICATION_MPL Link icon

      public static final EventType CHANGE_NOTIFICATION_MPL
      Update of an item of a manual price list (only informs that there is a change and in which manual price list)
    • WORKFLOW_MESSAGE Link icon

      public static final EventType WORKFLOW_MESSAGE
      Whenever an approver approves (or denies) an Approval Step
    • PADATALOAD_COMPLETED Link icon

      public static final EventType PADATALOAD_COMPLETED
      PriceAnalyzer Data Load process finished
    • CUSTOM Link icon

      public static final EventType CUSTOM
      Custom event created by a logic. This is used when you need to handle events which are not supported by Pricefx out of the box. Then you can generate your own events from the logic and let IntegrationManager do certain processing. To create a new custom event, use the function api.customEvent().
    • ITEM_UPDATE_PPV Link icon

      public static final EventType ITEM_UPDATE_PPV
      Any kind of Price Parameter value update (LTV or MLTVx) (add/update – the event contains the record itself)
    • CHANGE_NOTIFICATION_PP Link icon

      public static final EventType CHANGE_NOTIFICATION_PP
      Any kind or Price Parameter bulk update (delete/update), the event only informs that someone manipulated a certain table
    • WORKFLOW_SUBMIT Link icon

      public static final EventType WORKFLOW_SUBMIT
      When an approvable document is submitted
    • ITEM_DENIED_PGI Link icon

      public static final EventType ITEM_DENIED_PGI
      Price Grid (LPG) line Item denied
    • ITEM_UPDATE_Q Link icon

      public static final EventType ITEM_UPDATE_Q
      Quote updated (when the Status changes), the event contains complete Quote Header information
    • ITEM_UPDATE_CT Link icon

      public static final EventType ITEM_UPDATE_CT
      PromotionManager contract updated
    • ITEM_APPROVED_RBA Link icon

      public static final EventType ITEM_APPROVED_RBA
      Rebate Agreement approved
    • ITEM_APPROVED_CL Link icon

      public static final EventType ITEM_APPROVED_CL
      Claim approved
    • ITEM_UPDATE_CL Link icon

      public static final EventType ITEM_UPDATE_CL
      Claim Agreement updated
    • JOB_FAILED Link icon

      public static final EventType JOB_FAILED
      When any scheduled job failed (price list calculation, Data Load, CFS,… ), i.e. whatever you can find in the JST table with the status Error
    • ACTION_STATUS Link icon

      public static final EventType ACTION_STATUS
    • ITEM_APPROVED_COR Link icon

      public static final EventType ITEM_APPROVED_COR
      Compensation Record approved
    • ITEM_UPDATE_RBA Link icon

      public static final EventType ITEM_UPDATE_RBA
      Rebate agreement updated
    • ASYNC_LOADDATA_COMPLETED Link icon

      public static final EventType ASYNC_LOADDATA_COMPLETED
    • ITEM_UPDATE_CGI Link icon

      public static final EventType ITEM_UPDATE_CGI
      Calculation grid line item updated (manual data change of the record)
    • CALCULATION_COMPLETED_CG Link icon

      public static final EventType CALCULATION_COMPLETED_CG
      Calculation Grid (CG) calculation finished
    • ITEM_PL_REVOKED Link icon

      public static final EventType ITEM_PL_REVOKED
      Price list revoked
    • ITEM_UPDATE_CO Link icon

      public static final EventType ITEM_UPDATE_CO
      Compensation plan updated
    • ITEM_APPROVED_CGI Link icon

      public static final EventType ITEM_APPROVED_CGI
      Calculation Grid (CG) line Item approved
    • ITEM_DENIED_CGI Link icon

      public static final EventType ITEM_DENIED_CGI
      Calculation Grid (CG) line Item denied
    • ITEM_APPROVED_RRG Link icon

      public static final EventType ITEM_APPROVED_RRG
      Rebate Record Group approved
    • CALCULATION_COMPLETED_CT Link icon

      public static final EventType CALCULATION_COMPLETED_CT
      Contract (CT) calculation finished
    • ITEM_UPDATE_COR Link icon

      public static final EventType ITEM_UPDATE_COR
      Compensation Record updated
    • ITEM_APPROVED_CO Link icon

      public static final EventType ITEM_APPROVED_CO
      Compensation Plan approved
    • CONDITION_RECORD_CREATION_FINISHED Link icon

      public static final EventType CONDITION_RECORD_CREATION_FINISHED
      Condition records processing finished
  • Field Details Link icon

    • metricName Link icon

      public final String metricName
  • Method Details Link icon

    • values Link icon

      public static EventType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf Link icon

      public static EventType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null