oracle cloud 如何获取图片 url

以获取物料图片 url 作为例子

1
2
3
4
5
6
7
8
9
10
11
12
(SELECT (decode(datatype_code,
'FILE',
(:p_host || '/cs/idcplg?IdcService=GET_FILE&dID=') || dm_version_number,
'WEB_PAGE',
url)) AS image
FROM fnd_attached_documents d,
fnd_documents_vl dv
WHERE d.document_id = d.document_id
AND d.entity_name = 'ITEM_ENTITY'
AND d.pk1_value = to_char(esi.organization_id)
AND d.pk2_value = to_char(esi.inventory_item_id)
AND rownum = 1) AS item_photo

其中 p_hostcloud 的主域名

其他类型的图片 url 可以通过变换 d.entity_name = 'ITEM_ENTITY' 进行查找

显示 Gitment 评论
0%