on 2025 Mar 20 10:10 PM
HI
i createt one smartform in to FSM , this smartform have or cotains images of services techinicas,
How can I access the images in into SmartForms from the FSM API?
how is example of query in this API?
Request clarification before answering.
Hello, all pictures are "saved" in object Attachment which is connected to object ChecklistInstanceElement. I will send my approach from business rule:
1. array "attachment"
SELECT a.id as id, a.type as type FROM ChecklistInstance ci JOIN ChecklistInstanceElement cie ON cie.checklistInstance = ci.id JOIN Attachment a ON a = cie.object WHERE ci.object.objectId = ${activity.id} AND cie.elementId = 'attachment1' AND (a.type = 'JPG' OR a.type='JPEG' OR a.type='PNG')
2. action to GET Attachment
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 12 | |
| 11 | |
| 8 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.