How do i retrieve the content of the ET_DATA parameter into Excel using RFC_READ_TABLEprior code used func = fns.add("RFC_READ_TABLE")
end retrieved the rows data from func.Tables("DATA").Columns("WA").Value(n)
This is now Blank.I can see the f...
7.53 netweaver uses the parameter.you only see the parm when you have data returned.**** Trace file opened at 2022-03-11 08:29:26.910113 UTC-06:00 (Central Standard Time), Encoding UTF-8NW RFC Library: Kernel variant, Release 750 Patch Level 5, Compi...
data returned as text with delimiter in rows heading “WA”Use VBA ”Split” command to target specific columns of output. For n = 1 to rows on object table returned from call. array(n) = split(func.tables(“DATA”).columns(“WA”).value(n) , delim)
I’ve had success by allowing VBA to provide structure through return fro SAP.Function call. Use listobject type variable to hold the range table inputs. where list object is established similar to how you used cell addresses. Just define that cell ra...