Hey
Im not exactly sure what im doing wrong but its something…
summary
Add a CreateDate to the Vendor table so we know when they were created.
CreateDate to be populate as a new record is created
Process
Add a UD table to the Vendor table
Add 1 new UD columns - CreatedDate, field = DateTime
Regen database
Supplier Form
Add new DateTime box to the form with a label
bind the box to VendorDetail.CreateDate_c field
Method Directive
Create new Pre-Processing BPM using the Vendor.Update
Start to Set Field
Set the ttVendor.CreatedDate_c field of the added row to the BpmFunc.Today()… expression
My assumption is that by using the Pre-Processing method, the field should populate but it doesnt. I also tried the same as a Data Directive but still no dice
So,
What is the correct method to pre-populate a field for a new record?
Thanks