Skip to main content
Community site session details

Community site session details

Session Id :
Dynamics 365 Community / Blogs / Dynamics AX training / How to use select statement...

How to use select statements instead of query in data source

VolodymyrMy Profile Picture VolodymyrMy 686

Override FormDataSource method executeQuery:

    public void executeQuery()
    {
        SomeTable T = this.cursor();

        select * from T where …;
    }

But be aware that in this case grid will not support sorting and filtering.


This was originally posted here.

Comments

*This post is locked for comments