我正在使用C#编写一些关于从SAP中提取表结构的代码,并且我有一个关于 RFC_READ_TABLE 的问题,当我定义一个表的名称并且 FIELDS 表返回 5 列时,例如 : 、、和,实际上我不能根据这 5 列不知道数字字段的小数位是多少,还有其他方法可以得到吗?请注意,我的SAP 帐户是公共帐户,因为其他人也在使用它,我不应该在SAP中创建新的功能模块。FIELDNAME
OFFSET
LENGTH
T
FIELDTEXT
以下信息是我从模块 RFC_READ_TABLE 的 FIELDS 表中得到的信息:
MANDT | 000000 | 000003 | C | Client**: length * 3**
BUKRS | 000003 | 000004 | C | Company Code: **length * 3**
ANLN1 | 000007 | 000012 | C | Main Asset Number: **length * 3**
ANLN2 | 000019 | 000004 | C | Asset Subnumber: **length * 3**
GJAHR | 000023 | 000004 | N | Fiscal Year: **numeric(4,0)**
LNRAN | 000027 | 000005 | N | Sequence Number of Asset Line Items in Fiscal Year: **numeric(5,0)**
AFABE | 000032 | 000002 | N | Real depreciation area: **numeric(2,0)**
ZUJHR | 000034 | 000004 | N | Asset acquisition year (currently not used): **numeric(4,0)**
ZUCOD | 000038 | 000004 | N | Sub-classification of asset acquisitions(currently not used): **numeric(4,0)**
AUFWV | 000042 | 000013 | P | Proportional cumulative revaluation on replacement value: **numeric(13,??=2)**
根据 DB,该字段的数据类型是 numeric(13,2),但我怎样才能得到这个线索?提前致谢!