[solved]Easy question on xRec
massimopasquali
Member Posts: 82
Hello boys,
I have alway a little mistake : you considerate xRec the result of previous istruction or the previours record before the update?
For example :
IF "No." <> xRec."No." THEN BEGIN
....
How do you interpreter that? Previous record or previous istruction?
I have alway a little mistake : you considerate xRec the result of previous istruction or the previours record before the update?
For example :
IF "No." <> xRec."No." THEN BEGIN
....
How do you interpreter that? Previous record or previous istruction?
0
Answers
-
technically xrec is the record that is currently in the database, and rec is what it is being changed to. So if you change the Name of a customer, let's say "ACME" is the name now, and you want to change it to "ACME, Inc.", then the "IF Name <> xRec.Name" statement would be in the OnValidate of the Name field. This trigger is executed as soon as you leave the field, but before the new value is written to the database, so it is technically not a record yet.
Basically, the "IF rec.Field <> xrec.field" statement means "if the field value has changed", and you would normally use this in the field validation code. I've also used "IF rec.field = xrec.field THEN EXIT;", and this means "if the field has not changed then skip the validation logic"0 -
grazie0
-
We use it on the item description field like this..
IF (Rec.Description <> xRec.Description) THEN IF NOT CONFIRM('Do you want to change the value from "%1" to "%2" in field "%3"?',FALSE, xRec.Description,Rec.Description,FIELDCAPTION(Description)) THEN ERROR('Press ESC to exit the field'); END;
Sometimes users type in the field and accidentally change it, so at least they have to confirm the change instead of it happening automatically by mistake.0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.7K Microsoft Dynamics NAV
- 18.8K 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
- 328 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
