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

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Finance | Project Operations, Human Resources, ...
Answered

Access customized global variable through COC

(0) ShareShare
ReportReport
Posted on by 672

Hi Folks,

I want to declare a customized Global variable in form extension class and want to use in Other datasource field extension class of that form.

I declare Variable as per below code in Form extension class  

[ExtensionOf(formstr(XXX))]
final class XXXFrm_Extension
{
    
    public       NumberSeq              numberSeq;

    void init()
    {
        if (! numberSeq)
        {
            XXX
        }
       
        next init();
    }

And want to use NumberSeq  variable in other extension class like Data field. But I'm getting error as "NumberSeq is not declared"

[ExtensionOf(formDataFieldStr(XXX,ProjTable,ProjId))]
final class XXXFrm_ProjIdFieldCtrl_Extension
{
    public void modified()
    {
        next modified(); 

       

        if(projTable.projid)
        {
            projTable.XXX = rProjIdnew;
         }
         
    }
}    
         

Please help me out this.

I have the same question (0)
  • Verified answer
    GirishS Profile Picture
    27,843 Moderator on at

    Hi D365FO Avatar,

    Try to use element keyword to get the global variables in the form like below.

    element.numberSeq;

    If it doesn't work create one parm method in the form extension and simply return the buffer.

    [ExtensionOf(formstr(XXX))]
    final class XXXFrm_Extension
    {
        
        public       NumberSeq              numberSeq;
    
        void init()
        {
            if (! numberSeq)
            {
                XXX
            }
           
            next init();
        }
        
        public NumberSeq getNumSeq()
        {
            //return the buffer
            return numberSeq;
        }
    }

    Now you can call the above method in any of your extension class using element keyword or form run object.

    [ExtensionOf(formDataFieldStr(XXX,ProjTable,ProjId))]
    final class XXXFrm_ProjIdFieldCtrl_Extension
    {
        public void modified()
        {
            next modified(); 
            NumbeSeq numSeq = element.getNumSeq();
            if(projTable.projid)
            {
                projTable.XXX = rProjIdnew;
             }
             
        }
    }    

    Thanks,

    Girish S.

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Meet the Microsoft Dynamics 365 Contact Center Champions

We are thrilled to have these Champions in our Community!

Congratulations to the March Top 10 Community Leaders

These are the community rock stars!

Leaderboard > Finance | Project Operations, Human Resources, AX, GP, SL

#1
Giorgio Bonacorsi Profile Picture

Giorgio Bonacorsi 694

#2
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 646 Super User 2026 Season 1

#3
CP04-islander Profile Picture

CP04-islander 337

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans