2008 Aug 04 7:13 PM
Hi All,
How to list out all blocked vendors(LFA1-SPERM = 'X' ) based on Block date. I know the date is stored in CDHDR table. But is it advisable to write queries on those tables ? Or is there any other ways to get that blocking date( LFA1-SPERM field checked date ) ??
Thanks in Advance !
Hi All,
How to list out all blocked vendors(LFA1-SPERM = 'X' ) based on Block date. I know the date is stored in CDHDR table. But is it advisable to write queries on those tables ? Or is there any other ways to get that blocking date( LFA1-SPERM field checked date ) ??
Thanks in Advance !
2008 Aug 04 10:27 PM
To my knowledge, CDHDR is the only table where this date could be found - you are correct.
It would be rather inefficient to query the table CDHDR, especially in an ad-hoc report, so you are right again. The possible ways to avoid this:
a) tell the customers that there is no such date and it's not feasible
b) add a custom (Z) field to EKKO, which will have to be filled in when blocking the vendor
c) run a program in background and gather information from CDHDR into a Z table and then in the report use Z table instead
None of the solutions is perfect, unfortunately. 'A' is my personal favorite.
Good luck!