I am missing a table in the Simplicate database that I did find through an earlier report I made via their own API.
The table I am missing is: …..simplicate.nl/api/v2/projects/service?.....
In that table, you can find the planned revenue by date. In other words, the instalments. After modifications and removed columns, I end up with a table like the example below.
For me, it is important to be able to report the expected revenue. Can Invantive add this table?
The SQL tables used by the Invantive UniversalSQL driver for this purpose can be found with the query:
select type
, name
, odata_service_url_for_select
, odata_base_path
from SystemTables@DataDictionary
where odata_service_url_for_select like '/projects/service%'
order
by type
, name
resulting in the following tables and the source of the retrieved data:
TYPE
NAME
ODATA_SERVICE_URL_FOR_SELECT
ODATA_BASE_PATH
table
ProjectCostTypeServices
/projects/service
data[].cost_types[]
table
ProjectHourTypeServices
/projects/service
data[].hour_types[]
table
ProjectInstallmentServices
/projects/service
data[].installments[]
table
ProjectServices
/projects/service
data[*]
tablefunction
ProjectServiceById
/projects/service/{id}
data
tablefunction
ProjectsService_DataCost_typesById
/projects/service/{id}
data.cost_types[*]
tablefunction
ProjectsService_DataHour_typesById
/projects/service/{id}
data.hour_types[*]
tablefunction
ProjectsService_DataInstallmentsById
/projects/service/{id}
data.installments[*]
tablefunction
ServicePlanningBudgetById
/projects/service/{id}/planningBudget
data[*]
Is it possible to find the data through these tables, for example in ProjectInstallmentServices?