Hey Guys,
There is not much documentation on this. Here is what I want to do.
I have an object A, which contains a refrence to object B (and B contains a refrence back to A). When B is loaded, I have to call a custom SQL function to decrypt one of the columns, kinda like this
select pkga.r1decrypt_sf( col1), col2 from B
1) Should I do this by implementing a custom load SQL?
If so, The custom load sql has to be called, in the difinition of object b, correct? In the query how is object a loaded?
or
2) Should I implement a postLoadListener for object B?
thanks,
|