从ABAP SAP中的表或结构中获取字段
如果需要标识结构中的字段和字段数,则应使用运行时类型服务。在这种情况下,使用运行时类型服务更有意义,就好像我们的环境中有一些数据一样,那么调用数据库来获取数据并不是理想的选择。
DATA(structure) = VALUE <your structure>( ) DATA(Descriptor) = CAST cl_abap_structdescr( cl_abap_datadescr=>describe_by_data (structure) ) DATA(Fields = LINES(Descriptor ->components )
这将为您提供表或结构的组件数。
如果您不想使用运行时类型服务,也可以尝试其他选项。下面的查询可以让你成为计数
SELECT COUNT(*) INTO @data(count) FROM DD03l (// this table stores the fields information of SAP tables) WHERE tabname = <Structure name> AND AS4LOCAL = 'A'