Skip to Content
-2
Jun 07, 2018 at 01:39 PM

adding records in range abap 740

171 Views

Hi, everybody I'm trying to create range adding records from table with news 740;

data tb_day_scd type TABLE OF CASDAYATTR WITH HEADER LINE .

tb_day_scd contains = '20180101' ...'20180102'......'20180103'

data(rg_auart) = VALUE TRGR_DATE( FOR I = 0 UNTIL i = lines( tb_day_scd )
( sign = 'I'
option = 'EQ'
low = tb_day_scd-date[ i ] ) ).

Givin'back error message ""TB_DAY_SCD-DATE" is not an internal table.

Thanks in advance !