Can't order a page by one of the fields

I have a page, it works fine but I can't order it by one of the fields. I can arrange the list by the other fields only the "Customer Name" field not working. What should I do to solve this?
I click on the title but nothing happens...
of7ccd2a0678.png

Thanks.

Best Answer

Answers

  • finifini Member Posts: 17
    In the dataset a function creates the value (getcustname)
    LOCAL getcustname() : Text[50]
    IF cust.GET("Customer No.") THEN EXIT (cust.Name)
    ELSE EXIT('');

    So maybe this cause it, but how to resolve this?
Sign In or Register to comment.