Company Range Methods in AOT Reports

Override methods on the AOT report node to control the details of crosscompany behavior. For example, you can override the report's init method with the following X++ code.


public void init()
{
super();
this .query() .allowCrossCompany( true );
this .query() .addCompanyRange( "dat" );
this .query() .addCompanyRange( "dmo" );
}

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.