Skip to main content
Solved

contracts

  • December 7, 2021
  • 1 reply
  • 80 views

Forum|alt.badge.img+9

What field is used to define a “customer contract” or a “time and material contract” in Astea v15.3 ?

We want to check and report which kind of contract is on a customer support or a service order.

Best answer by Phil Seifert

Piet,

Reviewing the SQL executed in the time and materials module, it seems that it is keying on the cconth.is_default field to determine if it is a Time and Materials contract.

There is only one in the DB copy we have from you for IMAC and it is pulled up with the following query criteria:

AND (cconth.is_default = 'Y')

When I look at the query for the Customer Contracts module, the criteria is looking for:

Where (cconth.is_default <> 'Y') 

 

1 reply

Phil Seifert
Ultimate Hero (Employee)
Forum|alt.badge.img+24
  • Ultimate Hero (Employee)
  • Answer
  • December 7, 2021

Piet,

Reviewing the SQL executed in the time and materials module, it seems that it is keying on the cconth.is_default field to determine if it is a Time and Materials contract.

There is only one in the DB copy we have from you for IMAC and it is pulled up with the following query criteria:

AND (cconth.is_default = 'Y')

When I look at the query for the Customer Contracts module, the criteria is looking for:

Where (cconth.is_default <> 'Y')