Skip to main content

Notifications

Announcements

No record found.

Finance | Project Operations, Human Resources, ...
Suggested answer

How to autofill site saved on customer , in custom form

(0) ShareShare
ReportReport
Posted on by
I have create a simple list page form with three fields serial no , site and customer , now for serial no i have set up a no sequence now when i choose customer site field in form should auto filled based on site saved on that customer . How to do that using x++. Please help !!
  • Suggested answer
    André Arnaud de Calavon Profile Picture
    André Arnaud de Cal... 291,883 Super User 2024 Season 2 on at
    How to autofill site saved on customer , in custom form
    Hi Sachin,
     
    You can use the modifiedField method. In case the Customer field is modified, you can find the customer record and retrieve the Site field from this customer. Example:
    public void modifiedField(FieldId _fieldId)
    {
        CustTable  custTable;
    
        super(_fieldId);
    
        switch (_fieldId)
        {
            case fieldNum(MyCustomTable, Customer) :
                this.SiteId = CustTable::find(this.Customer).SiteId;
                break;
        }
    }
     

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

Congratulations 2024 Spotlight Honorees

Kudos to all of our 2024 community stars! 🎉

Meet the Top 10 leaders for December

Congratulations to our December super stars! 🥳

Start Your Super User Journey Pt 2

Join the ranks of our community heros! 🦹

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,883 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,569 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Product updates

Dynamics 365 release plans