Is it possible to see when Customer Cards were created with

yuppicide
Member Posts: 410
Is it possible to see when Customer Cards were created with Navision 3.10?
Currently when we enter customer cards, for example the customers name is Cat Cay, we enter the Customer No as CAT001. If we get another such as Cats Pajamas
then we'd name is CAT002.
In their memo we might put a note that says when we created the customer card.
We want a way to look at everyone and see when the cards were created.
If this is not possible then we might switch the way we name our Customer No to indicate some type of year or season code.
Currently when we enter customer cards, for example the customers name is Cat Cay, we enter the Customer No as CAT001. If we get another such as Cats Pajamas
then we'd name is CAT002.
In their memo we might put a note that says when we created the customer card.
We want a way to look at everyone and see when the cards were created.
If this is not possible then we might switch the way we name our Customer No to indicate some type of year or season code.
0
Comments
-
1) Look for field "Last Date Modified" on the Customer Card (you can use Zoom functionality to look for it)
2) You can define Customer nos. series which will be different for each year etc as you wish (e.g. C080001, C090001...)0 -
The problem with "Last Date Modified" is it's just that. People modify the cards all the time to indicate new addresses, etc. For example we have a customer with us since maybe 2002, yet last date modify is 10/07/07.
As for customer number, we are considering something like you mentioned.0 -
Other than adding a new field called "Start Date" type date and adding to the customer table
OnInsert() "Start Date" := WORKDATE;
You can ballpark it by checking when the first ledger entry was created.
For example/ create a field called "First Activity Date" or something
type date. Make it a flowfield.
the calcformula would be something like
Min("Cust. Ledger Entry"."Posting Date" WHERE (Document Type=FILTER(Invoice),Customer No.=FIELD(No.)))
*here i'm looking for the first invoice
Note adding a start date to the customer, item & vendor cards was the first mod we ever did. It's strange that's not a standard field.0 -
Savatage wrote:
OnInsert() "Start Date" := WORKDATE;
This is a mod that I also do for just about every client, in Customers, Items and Vendors. Of course in 3.70 or later you can use change log, but seriously Change log is an over kill for this.
The actual code I normally add is:[u][b]OnInsert()[/b][/u] "Created By" := Userid; "Created On" := WORKDATE; [u][b]OnModify()[/b][/u] "Last Modified By" := Userid;
David Singleton0 -
>> You can ballpark it by checking when the first ledger entry was created.
>> For example/ create a field called "First Activity Date" or something
>> type date. Make it a flowfield.
>> the calcformula would be something like
>> Min("Cust. Ledger Entry"."Posting Date" WHERE (Document Type=FILTER(Invoice),Customer No.=FIELD(No.)))
I've went ahead and done this. I usedMin("Cust. Ledger Entry"."Posting Date" WHERE (Customer No.=FIELD(No.)))
And it works great. Would this work as well if I wanted to see the last transaction to see when a customer last did business with us? As such I could just insert Max?0 -
YES - Change it to max to get last transaction date. If you throw in the filter for INVOICE (for example) it will give you the last Invoice date, etc, etc.
If your licesnse allows you to use add the code OnInsert then I would do that.
You could use a report to transfer the date your getting with this flowfield into the new "start date" field.
then from that point on all future customers will have that field filled automatically. then you can remove the flowfield.
you know what I mean. If you can't do it with code then the flowfield solution will have to do.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
- 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