Hello guys,
We have created an embedded canvas app that is used in our Dynamics environment. In that app we have a combobox that shows records of the account entity. In our Dynamics environment we have 5000+ records. However, in the app only 500 are shown (app row limit). Also when searching only results are shown from that same batch of records.
I am aware of the process of delegation. No delegation warning is shown. CDS is a delegable datasource and we made sure that our formulas are delegable as well. Below formula was used to get the items for the combobox:
If(
cmbTypeRolTRS.Selected.'ZK type' in [
"95276FEF-C9FA-E711-80F7-3863BB35FF48";
"0A156558-2A6E-E811-8111-3863BB34CDB0"
];
Filter(
Accounts;
'Accounts(Views)'.'Active(exl. Aspirant) Accounts'
);
Filter(
Accounts;
'Accounts(Views)'.'Active accounts'
)
)
We also tried to remove the if and filter functions, but the same behaviour was observed. I have also tried this with the contact table, but it remains the same.
I am not sure why it is behaving like this. I would appreciate some help.