B
Bo Haslund
Guest
Hi guys, I'm often looking to find where a specific pfile object is created, deleted etc. That is a filtered "where use" report. In the GUI version I create a "Where used" report, copy it to a text file and execute some simple code like (in case of D elete): DEFINE VARIABLE ich AS CHARACTER NO-UNDO. INPUT FROM c:\temp\xref_i.txt. OUTPUT TO c:\temp\xref_o.txt. REPEAT: IMPORT UNFORMATTED ich. IF INDEX(SUBSTRING(ich,81)," D ") > 0 THEN PUT UNFORMATTED ich SKIP. END. INPUT CLOSE. OUTPUT CLOSE. Is there a more simple way that I have overlooked? Regards, Bo
Continue reading...
Continue reading...