web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics AX (Archived)

Dynamic object

(0) ShareShare
ReportReport
Posted on by 867

How to create object dynamically. I just want to pass class name as string to method and create instance of that class from string.Is this possible?if yes how?

*This post is locked for comments

I have the same question (0)
  • Verified answer
    Brandon Wiese Profile Picture
    17,788 on at

    If you have the ClassId, you can simply do this.

    SysDictClass dc = new SysDictclass(_classId);

    if (dc.allowMakeObject())  // skip abstract, etc.

    {

       ret = dc.makeObject();  // calls new()

    }

    You can also call the static construct method like this

    if (dc.hasStaticMethod(identifierStr(construct)))

    {

       new ExecutePermission().assert();  // required on server tier

       ret = dc.callStatic(identifierStr(construct));  // static construct()

    }

    Hope this helps.  Good luck!

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
Martin Dráb Profile Picture

Martin Dráb 4 Most Valuable Professional

#1
Priya_K Profile Picture

Priya_K 4

#3
MyDynamicsNAV Profile Picture

MyDynamicsNAV 2

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans