Does anyone know where can I find the signed date in the documentation table?
It wont be found in the Document table, but rather in the Document Contributed table. Code is below, just add the SDID of your document.
SELECT CONTB_TIME, USERNAME, NOTES
FROM DOCCONTB
WHERE CONTB_ACTION IN (6,7,8) AND SDID = [INPUT DOCUMENT SDID HERE]
Thank you! What is the DOCCONTB table? How do I use this in Crystal reports?
the DOCCONTB table is the document contribute table, stores all the who made changes data. Nothing specific, but basic info. You can create a view in sql linking the SDID's together with the Document table the Document Contribute table and then in Crystal point it to your view, and filter as needed.
You can link the DOCCONTB table to the DOCUMENT table via the SDID in crystal as well - might be easier if you are not comfortable with SQL/creating views as ACantu suggests above (but that would work the same way effectively).