Hello community,
with the command line:
oTmpModel = oTmpGrp.CreateModel(Constants.MT_EEPC_TAB, sTmpModName, LOC)
I can create a new model for temporary use. That works fine. But after the usage I don't need this model anymore.
How can I delete this model?
I would be very happy if anyone can help me.
Best regards
Holger
Robert Goldenbaum on
Hi Holger,
Group.Delete(oModel)
or in your case:
oTmpModel.Group().Delete(oTmpModel)
BR Robert