Skip to main content
Solved

Filter Appointments that have been signed by a customer

  • 6 August 2024
  • 2 replies
  • 28 views

Is there a way to list the file names of attached documents that are under “Files”.? My ultimate goal is to be able to filter appointments that have signatures attached since the naming convention of signed appointments have the work “signed” in it. Or is there an easier way to achieve this?

@lewisad This is a common way you can retrieve attache files for any form by using the following tables/DACs in your inquiry.

  1. Main DAC for the form in this case FSAppointmentFSService Order
  2. NoteDoc - Which holds the link between the form records and Upload File
  3. UploadFile - which holds the name and info of attached file

DATA Srources:

Tables

RELATIONS:

  1. We need to link Main Form DAC using NoteId to NoteDoc to get the corresponding FileId
  1. We need to link the NoteDoc to UploadFile to get the file/s attached to the document

RESULTS GRID: RefNbr shows the Appointment ID and Name shows the attached file name

If you need to apply any filter like Name contains any keywords and that should provide you the list you require.


@hkabiri What is this table used for “FSAppointmentFSService Order”. Would this be the same as using the service order and appointments table separately?


Reply