我需要在SAP中复制一个巨大的表。通常,我将表以模100拆分并逐步复制。仅当我将数字字段用作主字段时,此方法才有效。
示例:
method get_coep.
select * from coep using client @gv_client
where mod( cast( cast( belnr as numc( 10 ) ) as dec( 10, 0 ) ) , 100 ) = @iv_mod
into table @et_return
connection (gv_conn).
endmethod.
但是在表COSS中没有我可以使用的字段。有没有一种方法可以从sql中的字符串中生成数字,或者有另一种方法可以将表拆分成较小的部分?
谢谢