Find characteristic of document in CV02N
I need find all documents of transaction CV02N that have a Certain characteristic.
I have seen the table KSSK but there I donīt have the value of characteristic.
Thanks
take a look at tables cabn, ausp.
thanks
amit
once you know the ATNAM from CABN, you can follow through to AUSP. Code the CABN ATNAM, ATINN, etc. retrieval; the actual ATINN values may be different from instance to instance.
in AUSP, look at ATWRT for some values, ATFLV and other fields for others. Dates may be in ATFLV, which we convert with:
example....other ways to handle, of course....
P_workdate = 0 + ausp-atflv. "ATFLV is a floating point number.
a_workdate = p_workdate. "described as Char 10, will have blank, then
"8-digit date.
shift a_workdate left deleting leading ' '.
concatenate a_workdate+4(2) '/' a_workdate+6(2) '/' a_workdate(4)
into displ_date. "C(10).
You may need to research the actual tables to discover the values you'll need for KLART, MAFID, ATZHL, etc....e-me if you need more information about looking up KLART, etc.
_________________
D.