Serial No. Information
gulamdastagir
Member Posts: 411
hello navies,
CASE 1.After Creating a Purchase Order Item Entry->Line->Item Tracking Lines->Functions->create Customized SN and after closing the form and Posting the purchase order these are posted to the Item Ledger Entry Table but the Serial Nos. Information table is not updated.
CASE 2.After Creating a Purchase Order Item Entry->Line->Item Tracking Lines->Functions->create Customized SN and then Going to each entry in the item tracking list->functions->Information->serial No. creates entry in the Serial Nos. information table and after closing the form posting updates the Item Ledger entry.But,this is a time consuming process.
Is there any easier and faster way to accomplish what "CASE 2" is doing.As i need a "complete" Serial Nos.Information table as a header table and the "item ledger entry" is going to be my lines table to create a Vendor-Item-Serial No. tracking Report
CASE 1.After Creating a Purchase Order Item Entry->Line->Item Tracking Lines->Functions->create Customized SN and after closing the form and Posting the purchase order these are posted to the Item Ledger Entry Table but the Serial Nos. Information table is not updated.
CASE 2.After Creating a Purchase Order Item Entry->Line->Item Tracking Lines->Functions->create Customized SN and then Going to each entry in the item tracking list->functions->Information->serial No. creates entry in the Serial Nos. information table and after closing the form posting updates the Item Ledger entry.But,this is a time consuming process.
Is there any easier and faster way to accomplish what "CASE 2" is doing.As i need a "complete" Serial Nos.Information table as a header table and the "item ledger entry" is going to be my lines table to create a Vendor-Item-Serial No. tracking Report
Regards,
GD
GD
0
Comments
-
From Item Ledger entry you can retrieve all information that you need0
-
Same case.
Any solution?
Thanks.0 -
We are adding Items in PO then click "Item Tracking Lines".
Adding the serial nos.
But I have to create "Serial No Information" for each serial no. by opening Serial No Informations form.
Is there any way to create serial no informations automatically for these serial nos?0 -
not without a mod. It's a simple mod.0
-
Thanks Araen.
Could you please help me about it?0 -
On the Item Tracking lines Form. The user clicks on function assign serial nos.
This calls a function called AssignSerialNoBatch
In this function
after
INSERT;
You can add your own code.
//Mod01 start
If Not SerialInfo.get("Item No.","Variant Code","Serial No.") then begin
clear(SerialInf);
SerialInfo."Item No." := "Item No.";
SerialInfo."Variant Code" := "Variant Code";
SerialInfo.."Serial No." := "serial No.";
SerialInfo.insert(true);
end;
//Mod01 end0 -
Thanks again for the quick reply Araen.
The scenario is like below;
User clicks "Funstions" then "Item Tracking Lines" in an order and type each serial nos for the selected item manualy. (dont use number series)
We want NAV to create the serial no informations for each typed manualy serial no automatically.
Where should I add the code?
Thanks again.0 -
ara3n wrote:On the Item Tracking lines Form. The user clicks on function assign serial nos.
This calls a function called AssignSerialNoBatch
In this function
after
INSERT;
You can add your own code.
//Mod01 start
If Not SerialInfo.get("Item No.","Variant Code","Serial No.") then begin
clear(SerialInf);
SerialInfo."Item No." := "Item No.";
SerialInfo."Variant Code" := "Variant Code";
SerialInfo.."Serial No." := "serial No.";
SerialInfo.insert(true);
end;
//Mod01 end
By the way;
clear(SerialInf);
Is this line correct?
If It should be "clear(SerialInf);" what does it mean?0 -
it should be clear(SerialInfo)
And I suggest you contact your solution center to do the mod, if you don't know how to program.
Thanks.0
Categories
- All Categories
- 75 General
- 75 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
- 610 NAV Courses, Exams & Certification
- 1.9K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 250 Dynamics CRM
- 102 Dynamics GP
- 6 Dynamics SL
- 1.5K Other
- 991 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 28 Design Patterns (General & Best Practices)
- Architectural Patterns
- 9 Design Patterns
- 4 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1K General Chat
- 1.6K Website
- 77 Testing
- 1.2K Download section
- 23 How Tos section
- 249 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions
