debugger not recognizing my fields within a table!
Ok, what is wrong here:
REPORT ZBW_CHECK_DTGT_TEST . tables /BIC/PZINF_DTST. data: it_zinf_dtst like /BIC/PZINF_DTST occurs 0 with header line. *data: dsn(60) type c . data: flag_n(1) type c value '1'. data: flag_y(1) type c value '0'. data: dtst like /BIC/ZINF_DTST, roll like /BIC/ZTIV_ROLL, dtmt like /BIC/ZTIV_DTMT, sts like BIC/ZRPT_STS, con like /BIC/ZRPT_CON.
This is the error message I get:
The field "/BIC/ZINF_DTST" is unknown, but there is a field with the
similar name "/BIC/PZINF_DTST".
I already declared /bic/pzinf_dtst as a table and it is thinking it is a field???
Tags:
Former Member replied
Ok so you have to declare your field like this :
data dtst like /BIC/PZINF_DTST-ZINF_DTST
Nicolas.