Skip to main content

Notifications

Announcements

No record found.

Small and medium business | Business Central, N...
Unanswered

Token Generation

(0) ShareShare
ReportReport
Posted on by 23
Hi Everyone,
    I have a scenario,if I enter a mobile number from one form and click a button the details from one form have to insert in this form
 
 
//
but I got a blank value 
this is button clickd method coding 
 
 
   
[Form]
public class TokenMaster extends FormRun {
    [Control(/Button/)]
    class Enter {
        /// <summary>
        /// Method executed when the button is clicked.
        /// </summary>
        public void clicked() {
            super(); // Call the parent method
            TokenMaster TokenMasterEnter; // Master form
            EmployeeDetails EmployeeDetailsEnter; // Child Form
            // PositionDetails PositionDetailsEnter;
            select TokenMasterEnter
                where TokenMasterEnter.EmpMobNo == EmployeeDetailsEnter.MobNo1;
            // Check if there is a match and the employee is active
            if (EmployeeDetailsEnter.EmpStatus == EmployeeStatus::Active) {
                ttsbegin; // Start a transaction
                TokenMasterEnter.clear(); // Clear any existing data
                TokenMasterEnter.EmployeeId = EmployeeDetailsEnter.EmpId;
                TokenMasterEnter.Name = EmployeeDetailsEnter.EmpName;
                TokenMasterEnter.TknMobNo = EmployeeDetailsEnter.MobNo1;
                TokenMasterEnter.insert(); // Insert the data
                ttscommit; // Commit the transaction
            } else {
                Info(/There is no active data./); // Inform the user
            }
            TokenMaster_ds.refresh(); // Refresh the form data source
            TokenMaster_ds.reread();  // Reread the data source
            TokenMaster_ds.research(); // Research the data source
        }
    }
}
 for your reference Master form
 
//

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

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Tips for Writing Effective Verified Answers

Best practices for providing successful forum answers ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

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

#2
Martin Dráb Profile Picture

Martin Dráb 230,445 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans