‎2010 Mar 11 4:14 AM
Dear all,
How can I declare a variable type Array in Excel Ole ABAP ??
Dim a As Variant
a = Array(11, 12)
How can I declare in ABAP ??
Thank you
‎2010 Sep 01 11:07 AM
Note 633105 - OLE automation: ABAP type for OLE array parameters
Symptom
If the method of an OLE object contains an array parameter, there is no suitable ABAP data type for the parameter.
Reason and Prerequisites
Array is not supported as a data type for OLE parameters in ABAP.
Solution
None
‎2010 Sep 01 11:15 AM
Arrays can be represented in ABAP by internal tables with some effort.
Whether you can pass internal table to OLE method with an array as parameter is different story though.
Regards,
Pawan.
‎2020 Jun 08 8:04 AM