why do delegates in acumatica get an c casting error when a view calls another method?

Change the reportVersions() method by this

    protected virtual IEnumerable reportVersions()
    {
        return GetVersions();
    }  

or

    protected virtual IEnumerable reportVersions()
    {
        foreach (var item in GetVersions())
        {
            yield return item;
        }
    }

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top