EliJDonahue
7/11/2017 - 6:46 PM

Demonstrates the Aras Best Practice of using the doGetItem attribute when creating an item whose properties will not be utilized in the curr

Demonstrates the Aras Best Practice of using the doGetItem attribute when creating an item whose properties will not be utilized in the current method.

// ...
Item newWorkflow = inn.newItem("workflow", "add");
newWorkflow.setAttribute("doGetItem", "0");
// ...

// generates the following AML query
// will not return the new workflow after adding
// <AML>
//   <Item type="Workflow" action="add" doGetItem="0">
//     ...
//   </Item>
// </AML>