Fetch file of of attachment thorough sdk
Hi Raju,
For a given part number, you can load the attachment table and iterate through the attached items. However that won’t give you file_id as far as i tried, it gives you filename
You can get file id for a given attachment using the below query.
Select fin.file_id “File ID”, fil.filename “File Name”,fil.file_type,fil.file_size,fin.ifs_filepath
from file_info fin, files fil
where fin.file_id=fil.id
and fil.filename= ‘YOUR INPUT FILE NAME’
Regards,
Arif