Question

pdf wtih payslip in db

  • 7 May 2024
  • 1 reply
  • 35 views

Userlevel 2
Badge +6

Hello, I am looking for a table in the db containing a pdf file with payslips. I need to know how to match it to the company and employee.


1 reply

Userlevel 6
Badge +8

Hi @PaulinaPi,

 

Please try the below query:

SELECT a.lu_name, a.doc_no, key_ref, file_data
FROM doc_reference_object_tab a, edm_file_storage_tab b
WHERE a.doc_class = b.doc_class
AND a.doc_no = b.doc_no
AND a.doc_rev = b.doc_rev
AND a.doc_sheet = b.doc_sheet;

 

Best Regards,

Charitha

Reply