Apply dashboard parameters in LDM query

Within a User LDM collection, "Condition for linking" and "Query for linking" can now specify dynamic values which can be modified in the Dashboard, Report or API call in which the relevant collection is used.

Example: 
A collection of Sales Invoice lines where a can be selected by Invoice Date and Article Query for linking: 

Query:
FOR EACH fcth WHERE
fcth.admi_num = [Administration] and
fcth.bdrf_code = '' and
fcth.fcth_dat_factuur >= [?van] and
fcth.fcth_dat_factuur <= [?tot],

EACH fctr WHERE
fctr.admi_num = fcth.admi_num and
fctr.bdrf_code = fcth.bdrf_code and
fctr.fcth_num = fcth.fcth_num and
fctr.arti_code = [?]

Dashboard
-Parameter met naam: _van
-Parameter met naam: _tot
-Parameter met naam: _arti_code

Rapport
-Parameter met naam: _van
-Parameter met naam: _tot
-Parameter met naam: _arti_code
-Tag: Parameters=_van,_tot,_arti_code

API call:
-&Parameters=van=01-01-2023;tot=31-12-2023;arti_code=artikel-abc123

Explaining parameters:
[?] --> Parameter name is equal to the field name, there is no default value
[?:01-01-2023] --> Parameter name is equal to the field name, the default value is 01-01-2023
[?van] --> Parameter name is "van", there is no default value
[?from:01-01-2023] --> Parameter name is "from", the default value is 01-01-2023