How to cature creation date?

vikkivikki Member Posts: 28
Hi,

I just want to know is it possible to capture the creation date for a customer/vendor, unlike keeping a field in customer table entering the data while creating a customer
Thanks

Comments

  • ssinglassingla Member Posts: 2,973
    You can use the standard functionality of Change Log to keep a track of modification/insert/delete for the customer table.
    CA Sandeep Singla
    http://ssdynamics.co.in
  • SavatageSavatage Member Posts: 7,142
    Adding a "Creation Date" field is quite easy, in fact it still boggles my mind why this 1 simple field isn't standard for Vendor, Customer, Item, etc.

    For example on the customer table put on the
    No.-OnValidate() trigger
    "Creation Date" := WORKDATE;
    

    With "Creation Date" being a date type field that you add to the customer table. With this little code the date is automatically filled in, no manual entry needed.

    The same goes true for the other tables you might use it in.
Sign In or Register to comment.