Lookup Problem in Sales Line Table
IrishGiri
Member Posts: 61
Hi all,
I have a field showing a vendor no. as part of every Sales Line record. I have programmed code in its On_Lookup trigger to open a form in which I have a filtered subset of records from another table from which to choose a vendor.
The problem is that when I select a record here and "OK" it to update/modify the vendor in the Sales Line, nothing happens.
Also I have to change the Lookup property of this lookup form to Yes because if I don't the OK and Cancel buttons don't appear????
Please help!!
Best regards,
Paul.
I have a field showing a vendor no. as part of every Sales Line record. I have programmed code in its On_Lookup trigger to open a form in which I have a filtered subset of records from another table from which to choose a vendor.
The problem is that when I select a record here and "OK" it to update/modify the vendor in the Sales Line, nothing happens.
Also I have to change the Lookup property of this lookup form to Yes because if I don't the OK and Cancel buttons don't appear????
Please help!!
Best regards,
0
Answers
-
What have you written on the trigger?0
-
You don't have to set the Lookup property of the form to yes. You can do this through code as well:
SomeForm.LOOKUPMODE(TRUE); IF SomeForm.RUNMODAL IN [ACTION::Ok, ACTION::LookupOk] THEN BEGIN SomeForm.GETRECORD(SomeRecord); "Vendor No." := SomeRecord."No."; END;
0 -
Try:
SomeForm.LOOKUPMODE(TRUE); SomeForm.SETTABLEVIEW(SomeRecord); SomeForm.SETRECORD(SomeRecord); IF SomeForm.RUNMODAL IN [ACTION::Ok, ACTION::LookupOk] THEN BEGIN SomeForm.GETRECORD(SomeRecord); "Vendor No." := SomeRecord."No."; END;
0 -
Thanks very much guys!
The following code worked a treat
xItemCost.SETRANGE(xItemCost."No.","No."); xItemCostForm.LOOKUPMODE(TRUE); xItemCostForm.SETTABLEVIEW(xItemCost); xItemCostForm.EDITABLE := FALSE; IF xItemCostForm.RUNMODAL IN [ACTION::OK, ACTION::LookupOK] THEN BEGIN xItemCostForm.GETRECORD(xItemCost); "Cód Proveedor" := xItemCost."Vendor No."; END;
Best regards0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.7K 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
- 326 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