Hallo Tobias,
glaube nicht dass das mit einer Log.DB geht. Aber  evtl. kannst Du dir ein Zusatzfeld definieren und an
das Zusatzfeld entsprechendes Coding hängen. Beispiel:
  SELECT        * FROM  CDPOS
         WHERE  OBJECTCLAS  = 'MATERIAL'
         AND    OBJECTID    = tb-matnr
         and    FNAME       = 'DISGR'.
    if sy-subrc = 0.
      SELECT single * F
select single fROM  CDHDR
             WHERE  OBJECTCLAS  = 'MATERIAL'
             AND    OBJECTID    = matnr
             AND    CHANGENR    = cdpos-changenr.
      move-corresponding cdpos to ausd.
*      MOVE cdpos-TABKEY+3(10)  TO AUSd-VBELN.
*      MOVE cdpos-TABKEY+13(6)  TO AUSd-POSNR.
*      MOVE cdpos-TABKEY+19(4)  TO AUSd-ETENR.
      move cdpos-value_new to     ausd-f_new.
      move cdpos-value_old to     ausd-f_old.
      move cdhdr-udate     to     ausd-udate.
      move cdhdr-utime     to     ausd-utime.
      append ausd.
    endif.
 
Gruß Wolfgang