Hello guys,
Does anyone know how can I get from isl code the weight of an item that exists in my check?
I have already tried all of the following but i can not find anywhere the weight or the description on the screen which contains the weight.
Does anyone know how can I get from isl code the weight of an item that exists in my check?
I have already tried all of the following but i can not find anywhere the weight or the description on the screen which contains the weight.
Code:
EVENT inq : 3
VAR DetailsRow : N2
VAR i : N2
DetailsRow = 1
WINDOW 11, 78, "TEST"
DISPLAY DetailsRow, 2, "CHECK ITEMS"
FOR i = 1 TO @NUMDTLT
DetailsRow = DetailsRow + 1
DISPLAY DetailsRow, 2, i, " ", @DTL_IS_VOID[i], " ", @DTL_NAME[i], " ", @DTL_OBJNUM[i], " ", @DTL_TYPE[i]," T:", @DTL_TTL[i], " S: ", @DTL_STATUS[i], " Q:", @DTL_QTY[i]
DetailsRow = DetailsRow + 1
DISPLAY DetailsRow, 2, i, " PRC SEQ:", @DTL_PRICESEQ[i]
DetailsRow = DetailsRow + 1
DISPLAY DetailsRow, 2, i, " PCLVL:", @DTL_PLVL[i]
DetailsRow = DetailsRow + 1
DISPLAY DetailsRow, 2, i, " TPDF:", mid(@DTL_TYPEDEF[i], 1,50)
ENDFOR
WAITFORENTER
ENDEVENT
