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 :
Small and medium business | Business Central, N...
Suggested Answer

Access page field's value through Runmodal

(0) ShareShare
ReportReport
Posted on by 358

I am trying to ask a user for a password if it tries to enter unit price below a threshold. 

I do this through a StandardDialog page and trying to write the logic to tackle the Cancel and Ok Button. 

pageextension 50144 MyExtension extends "Sales Order Subform"
{
    layout
    {
        
        modify("Unit Price")
        {
            trigger OnAfterValidate()
            var
                rec_Item: Record Item;
                rec_SalesSetup: Record "Sales & Receivables Setup";
                rec_Set: Record "Sales & Receivables Setup";
                recSO: Record "Sales Line";
            begin
                rec_SalesSetup.Get();
                rec_Item.Get(Rec."No.");
                IF (Rec."Unit Price" < rec_Item."Unit Cost") AND (rec_SalesSetup."Allow Negative Unit Price" = true) then begin
                    Clear(myPage);
                    IF myPage.RunModal() = Action::Cancel then begin
                        rec_Item.Reset();
                        rec_Item.Get(Rec."No.");
                        recSO.SetFilter("Document No.", Rec."Document No.");
                        recso.SetRange("Line No.", Rec."Line No.");
                        recSO.SetFilter("No.", Rec."No.");
                        IF recSO.FindFirst() then begin
                            Rec."Unit Price" := rec_Item."Unit Cost";
                            CurrPage.Update();
                        end;
                    end
                    else
                        IF myPage.RunModal() = Action::Ok then begin
                            rec_Item.Reset();
                            IF Password = rec_Set.Password then
                                CurrPage.Close()

                        end;

                END;
            end;
        }

    var

        myPage: Page Password;

}

Here is the StandardDialog page which has 1) page field that is just a variable. We don't need to store this value hence it is to just check for the password against the Password field I created extending the Sales & Receivable Setup page and table.

page 50140 Password
{
    PageType = StandardDialog;
    ApplicationArea = All;
    UsageCategory = Administration;
    // SourceTable = ;

    layout
    {
        area(Content)
        {

            field(Password; Password)
            {
                ApplicationArea = All;

            }

        }
    }

  

    var
        Password: Text[10];
 
}

 The problem is in the 

  IF myPage.RunModal() Action::Ok then begin 
I can't access the Password page field. How do I access this field's value so my 
IF myPage.RunModal() = Action::Ok then begin
                            rec_Item.Reset();
                            IF Password = rec_Set.Password then
                            
                                CurrPage.Close()

                        end;
code works. Right now it doesn't recognize Password
I have the same question (0)
  • Suggested answer
    ArturV Profile Picture
    225 on at

    Hi Mesam,

    Create a global function in page password called GetPassword(var PasswordToGet : String) with the following code in it:

    PasswordToGet := Password;

    Then have the local variable password and code like this on the Unit Price trigger:

    If PasswordPage.RunModal = Action::LookupOk then

    PasswordPage.GetPassword(Password)

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 > Small and medium business | Business Central, NAV, RMS

#1
OussamaSabbouh Profile Picture

OussamaSabbouh 2,468

#2
YUN ZHU Profile Picture

YUN ZHU 923 Super User 2025 Season 2

#3
Sumit Singh Profile Picture

Sumit Singh 607

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans