
Hi,
I want to create a Job in AOT through .Net code.Is this possible. Can any one please help me on this.
Thanks
Lin
*This post is locked for comments
I have the same question (0)You can create a job this way:
#AOT
TreeNode jobNode = TreeNode::findNode(#JobsPath);
TreeNode newNode = jobsNode.AOTadd('JobName');
newNode.AOTsetSource(...);
newNode.AOTsave();
And you need to implement this code using the .NET Bussiness Connector.