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

Search hierarchy for a match (TableALLGroup) X++

  Table1 ppt;  select firstonly ppt  order ItemCode, ItemRelation, AccountCode, AccountRelation where      (ppt.ItemCode == TableGroupAll::T...