Hello All,
I have requriement to copy the content of type "A" object to Type "B" .
I am planning to usef following.
ByteArrayInputStream ContentObj = Type A object.getContent()
Type B Object.set Content(ContentObj)
Is this OK, or any other best approach ?
Note: This I have to use for Million of object to be created from Type A object to Type B object for migration work.
Thanks in advance!