BSSV value object question

Andrew2009

Well Known Member
I have 2 internal IBS classes, A,B and A is calling B.

B will return an array of a certain complex data type (NOT primitive data type like String or integer).

Where should I put this array to return to A

1) In the value object passed to B?
2) Or from the method. Right now by default it returns E1MessageList. If I go with #2, how do I pass E1MessageList back to A?

If you have other idea, please let me know

Thanks,

I'm using JDE 9 and JDeveloper 10g.
 
Andrew,
You will need a new VO which has all the elements of the array. After that define an arrary of this class and use it in other class. You will also need a method to load the values in the class for an instance of arrary element.

This is one of the complex development but not much once you understand it.

Chan
 
Back
Top Bottom