Thursday, February 23, 2017

Table Data source Record marking in AX form

// Table Data source Record marking in AX form
myDataSource = myDataSource _DS.getFirst();
        while(myDataSource )
        {
            myDataSource _DS.findRecord(myDataSource );
            myDataSource _DS.mark(true);
            myDataSource  = myDataSource _DS.getNext();
        }

No comments:

Post a Comment

Replaces the value of the specified dimension attribute from source to target in D365FO

Replaces the value of the specified dimension attribute from source to target => LedgerDimensionDefaultFacade::serviceReplaceAttributeVal...