How to Create a Table using X++ Code
internal final class Class2
{
public static void main(Args _args)
{
TreeNode tn;
#AOT;
tn=TreeNode::findNode(#TablesPath);
tn.AOTadd("Fruits");
SqlDataDictionary::synchronize();
info("New Table Created");
}
}
internal final class Class2
{
public static void main(Args _args)
{
TreeNode tn;
#AOT;
tn=TreeNode::findNode(#TablesPath);
tn.AOTadd("Fruits");
SqlDataDictionary::synchronize();
info("New Table Created");
}
}
Comments
Post a Comment