Best Practice for LastModifiedUser and LastModifiedDate fields in a BO


Best Practice for LastModifiedUser and LastModifiedDate fields in a BO...
Author
Message
Edhy Rijo
E
StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
Hi,

For some tables it is very useful to have a fields that will tell the user when was the record changed and by who. 

  • Is there anything in SF logic to auto update this kind of fields?
  • If these fields should be updated manually what would be the correct event to use to have these fields updated?

Thansk!

Edhy Rijo

Replies
Trent Taylor
Trent Taylor
StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
Here is an example if you have a file saved to disk.  In the auditing sample, the byte array will be given back to you through the delegate, so you would skip the part of loading the byte array.

Dim formatter As New System.Runtime.Serialization.Formatters.Binary.BinaryFormatter()
Dim inStream As New System.IO.MemoryStream()
Dim inBytes As Byte() = System.IO.File.ReadAllBytes("c:\MySerializedFil.bin")
Dim MyBO As MyBoType

'-- Move the byte array into a stream
inStream.Write(inBytes, 0, inBytes.Length)

'-- Deserialize the object
MyBO = CType(formatter.Deserialize(inStream), MyBOType)

Greg McGuffey
Greg McGuffey
Strategic Support Team Member (4.8K reputation)
Group: Forum Members
Posts: 2K, Visits: 6.6K
Thanks! I'm not too familiar with the IO class and streams. I was having trouble getting the byte array into the stream. Again not too hard once you understand it! BigGrin
Greg McGuffey
Greg McGuffey
Strategic Support Team Member (4.8K reputation)
Group: Forum Members
Posts: 2K, Visits: 6.6K
Thanks for the help I got it working. However I had to wrap the deserialize call in a try/catch as it always threw an serializationexceptions:

'-- Function to return the appropriate object from an array of bytes.

Private Function GetItem(data As Byte()) As TestSerializableItem

Dim formatter As New System.Runtime.Serialization.Formatters.Binary.BinaryFormatter()

using inStream As New System.IO.MemoryStream()



'-- used a test class that had the Serializable attribute set

Dim myItem As TestSerializableItem



'-- Move the byte array into a stream

inStream.Write(data, 0, data.Length)



'-- Deserialize the object. This always

Try

myItem = CType(formatter.Deserialize(inStream), TestSerializableItem)

Catch ex As Exception

End Try

End Using



Return myItem

End Function

GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Threaded View
Threaded View
Edhy Rijo - 17 Years Ago
Bill Cunnien - 17 Years Ago
Edhy Rijo - 17 Years Ago
Bill Cunnien - 17 Years Ago
                     Thanks again Bill, a base BO makes sense, will try that path.
Edhy Rijo - 17 Years Ago
                         We actually take a similar approach within our medical application on...
Trent L. Taylor - 17 Years Ago
                             [quote]We also have some classes that are actually in the framework to...
Edhy Rijo - 17 Years Ago
                                 SF auditing requires that you have RBS. All of this is done through...
Trent L. Taylor - 17 Years Ago
                                     I've been messing around with this and have run into a problem, born...
Greg McGuffey - 17 Years Ago
                                         Since it is a byte array, you can put anything you want into it. You...
Trent L. Taylor - 17 Years Ago
                                             Way too easy...

Now, how do I get byte array back into the...
Greg McGuffey - 17 Years Ago
                                                 Here is an example if you have a file saved to disk. In the auditing...
Trent L. Taylor - 17 Years Ago
                                                     Thanks! I'm not too familiar with the IO class and streams. I was...
Greg McGuffey - 17 Years Ago
                                                     Thanks for the help I got it working. However I had to wrap the...
Greg McGuffey - 17 Years Ago

Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search