How do I varify a field in subform
koalado
Member Posts: 70
When I submit a PO for approval, I want to check each purchase line if they meet our rules
for Item, Dimension Costcenter Must Not Inputed.
for G/L , Dimension Costcenter Must Inputed.
for others, Dimension Costcenter Must Not Inputed.
What should I do?
Thanks a lot
for Item, Dimension Costcenter Must Not Inputed.
for G/L , Dimension Costcenter Must Inputed.
for others, Dimension Costcenter Must Not Inputed.
What should I do?
Thanks a lot
0
Comments
-
What kind of transaction is a "aproval"?
You can write a function in the purchase header with a returnvalue boolean.
In the function you write some code for the checks, if it is correct you return TRUE, otherwise FALSE.0 -
How could I check field 'costcenter' value of table "purchase line" in table "purchase header"'s function?
Thanks0 -
-
Thanks for your reply. Yes. It's shortcut of Dimension0
-
In that case, you can define a local varable of type record 39.
Create some code likePurchLine.Setrange("Document No.", "No."); PurchLine.Setrange("Document Type", "Document Type"); IF PurchLine.Find('-') then repeat if (purchline.type = purchline.type::"G/L Account") and (purchline."Shortcut Dimension 1 Code" = '') then exit(FALSE); if (purchline.type <> purchline.type::"G/L Account") and (purchline."Shortcut Dimension 1 Code" <> '') then exit(FALSE); until purchline.next = 0; exit(TRUE);
You can also usePurchLine.Setrange("Document No.", "No."); PurchLine.Setrange("Document Type", "Document Type"); IF PurchLine.Find('-') then repeat if purchline.type = purchline.type::"G/L Account" then purchline.testfield("Shortcut Dimension 1 Code") else purchline.testfield("Shortcut Dimension 1 Code", '') until purchline.next = 0;
But this does not use the return value0 -
Thanks a lot !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
- 322 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
