how to call a field by fieldref

nightrod
Member Posts: 68
Hi,
How can you call a field by reference.
in a table there are 100 fields called
import01
import02
import03
..
import99
in a report i want to do as followes
i := 1
repeat
get the value of field(import + i);
Run a function;
write to field (import + i);
i = i+1;
until i = 99;
i try using the fieldref and recordref but cant figure out how to do it.
can someone help get started with this?
thanks!
How can you call a field by reference.
in a table there are 100 fields called
import01
import02
import03
..
import99
in a report i want to do as followes
i := 1
repeat
get the value of field(import + i);
Run a function;
write to field (import + i);
i = i+1;
until i = 99;
i try using the fieldref and recordref but cant figure out how to do it.
can someone help get started with this?
thanks!
0
Comments
-
Have you searched the forum? There are some excellent examples in other posts.0
-
yes i did but couldnt find what i need.0
-
I think its not possible.
I tried to do this thing for one report, I tried all options, but no luck.Rakesh Patel
Navision Developer0 -
Hi nightrod,
You can use the field table to get the fieldnumber and use this to retrieve the fieldref.YourTable.FINDFIRST; RecRef.GETTABLE(YourTable); REPEAT i += 1; Fld.SETRANGE(TableNo, DATABASE::"Your Table"); Fld.SETRANGE(Fld.FieldName, 'import' + FORMAT(i)); Fld.FINDFIRST; FldRef := RecRef.FIELD(Fld."No."); MESSAGE(Fld.FieldName + ': ' + FORMAT(FldRef.VALUE)); UNTIL i = 99;
Reijer Molenaar
Object Manager0 -
Hi Reijer,
This works great. \:D/
Thanks a lot =D>
Nightrod0 -
Thanks Reijer
This code can resolve my report problem also.Rakesh Patel
Navision Developer0 -
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