Obtain data from form

lubost
Member Posts: 633
My problem is following:
1. I have Table no, Field no and Form no stored in record
2. I want to run a form Form No in lookup mode
3. I want to obtain a value of Field no from selected record
Prerequisitiy : Form's main table is Table no.
Is it way to code it? Thank you
1. I have Table no, Field no and Form no stored in record
2. I want to run a form Form No in lookup mode
3. I want to obtain a value of Field no from selected record
Prerequisitiy : Form's main table is Table no.
Is it way to code it? Thank you
0
Comments
-
I think if you want to do it without modifications of the forms you want to use, there is no way. Problem is that you can not use recordref when calling the form. Than you will need as many record variables as count of possible source tables of the forms.
But if you can change all the forms with one function, the solution can be done - if you will have one Singleinstance codeunit with functions:
SetFieldNo
GetFieldNo
SetFieldValue
GetFieldValue
Which will set global variables in this way:
SetFieldNo - store required Field no...
GetFieldNo - read this Field no...
SetFieldValue - store the value of required Field
GetFieldValue - read the value back
You can do something as (pseudo code):... FormMgt.SetFieldNo(Table1.FieldNo); FORM.RUNMODAL(Table1.FormNo); Value := FormMgt.GetFieldValue; ... In Form: OnClose FieldNo := FormMgt.GetFieldNo; <Read Value of Field with No. FieldNo (through RecordRef and FieldRef)> FormMgt.SetFieldValue(ValueOfTheField);
Where FormMgt is your new SingleINstance codeunit.
Think about it, it is not so hard. How to exchange data between objects is somewhere in HowTo section...0 -
kine wrote:Think about it, it is not so hard. How to exchange data between objects is somewhere in HowTo section...
http://www.mibuso.com/howto.asp0
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