Hi All,
I know how to manipulate the values on the Request Form on a report, that I'm calling from a Codeunit. Here's an example of an InitializeRequest function, that sets values on the report Request Form.
InitializeRequest(NewPostMethod : Option;NewDocNo : Code[20];NewPost : Boolean)
PostMethod := NewPostMethod;
DocNo := NewDocNo;
Post := NewPost;
I'm wondering how to change my code so that I can manipulate the filter on the report. The table that my report is based on is the Sales Header table.
Comments
Is it this one what you want?
Regards,
Yukon