Marketo CO data access issue
We are loading more than 100 records per lead in CO since it is a business requirement.
Marketo application have a limitation, It only allows to access 100 records on UI and in velocity script.
Therefore, we want to load data in specific order so top 100 records as per their order amount can be accessible in velocity script and also displayed on UI.
We are retrieving data in descending order from database and then load it in Marketo.
We have custom field "Sequence" as a dedupe field and it get incremented for every record.
This is how we load records in Marketo via api.
Sequence Order Amount
1 130
2 120
3 110
4 100
....
120 10
However, we can only able to access records from sequence no. 21 to 120 in velocity script but we can retrieve all records from CO (from sequence no. 1 to 120 records) via api.
Any ideas why we can't access records with sequence no. from 1 to 20.