If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
si en tu Query no tienes "INTO CORRESPONDING FIELDS OF TABLE IT_STATUS" no necesitas que los campos utime y udate existan en la tabla IT_STATUS, el query deberia estar asi:
Select Max( udate ) MAX( utime )
INTO TABLE it_status
FROM zvps_stat_users
solo te falta el "TABLE"
En este caso tu tabla deberia de estar algo asi
data: BEGIN OF IT_STATUS OCCURS 0,
MAX_udate LIKE zvps_stat_users-UDATE,
MAX_UTIME LIKE zvps_stat_users-UTIME,
END OF IT_STATUS
En el caso de que los campos de tu tabla interna no esten en el orden del select, entonces tendras que usar INTO CORRESPOONDING FIELDS Y AHI SI LOS CAMPOS SE TENDRAN QUE LLAMAR IGUAL QUE EL NOMBRE QUE LE ESTAS DANDO EN EL SELECT "AS"
Comentario