Passing a Var to a Codeunit

PJohn
Member Posts: 1
I am trying to pass a page variable from the page onqueryclose to the codeunit. I am running the code unit from an action, in the codeunit I run
IF PAGE.RUNMODAL(50324,T50037) = ACTION::LookupOK THEN
MESSAGE('%1',SEapprovalCommentField);
Pretty much opens a page with an extra box to type in and I want to send whatever you type to the codeunit as a global to use. Message was just for testing. Not sure why but the var passes but the second the page closes the debugger shows the variable blank.
On validate and onqueryclose from the open page runs codeunit function to set the global for the codeunit.
SEApprovalComment(Comment : Text)
SEapprovalCommentField:=Comment;
Why is the var showing blank?
IF PAGE.RUNMODAL(50324,T50037) = ACTION::LookupOK THEN
MESSAGE('%1',SEapprovalCommentField);
Pretty much opens a page with an extra box to type in and I want to send whatever you type to the codeunit as a global to use. Message was just for testing. Not sure why but the var passes but the second the page closes the debugger shows the variable blank.
On validate and onqueryclose from the open page runs codeunit function to set the global for the codeunit.
SEApprovalComment(Comment : Text)
SEapprovalCommentField:=Comment;
Why is the var showing blank?
0
Answers
-
You have mentioned you are running to a codeunit then mentioned , that you are running from an action. Please clarify what do you want to achieveUnited Kingdom0
-
My preferred method:
1. Add global function to page. Function should return data you want.
2. In codeunit define page variable with your page and call:
IF <Page variable>.RUNMODAL(T50037) = ACTION::LookupOK THEN
SEapprovalCommentField := <Page Variable>.<Point 1 function>();
0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions