document.body.ondragstart = "return false";document.body.onselectstart = "return false"; microsoft dynamics ax interview questions: 10. Explain the record level security on ListView, TreeView, or Table form control?

Sunday, December 5, 2010

10. Explain the record level security on ListView, TreeView, or Table form control?

The following code example illustrates the use of the same ListView with
record-level security enabled:
public void run
{
CustTable custTable;
;
super();
// Ensure that RLS is used.
custTable.recordLevelSecurity(true);
while select custTable
{
listView.add(custTable.name);
}
}

No comments:

Post a Comment