Quantcast
Channel: SCN : Popular Discussions - ABAP和Java开发 (ABAP & Java Development)
Viewing all articles
Browse latest Browse all 4604

怎样用RFC_READ_TABLE获取所有字段的内容?

$
0
0

我尝试使用RFC_READ_TABLE的时候,可以使用FIELD这个TABLE来指定所要获取的字段,但是如果想获取所有的字段,应该怎么办呢?如果有100个字段,总不可能把100个字段都枚举出来吧?FIELD中又不能写u201C* u201D,而且FIELD这个表又不能为空。因为如果FIELD表为空,程序会报错,这该怎么办?

 

 

         

tblT = New TAB512Table        tblTField = New RFC_DB_FLDTable        tblTOption = New RFC_DB_OPTTable        Dim stuTFieldRow As New RFC_DB_FLD        Dim stuTOptionRow As New RFC_DB_OPT        Sapproxy.Rfc_Read_Table("", "", strTN, 0, 0, tblT, tblTField, tblTOption)

 


Viewing all articles
Browse latest Browse all 4604

Trending Articles