Learn about the new Oracle AI Agent Studio for Fusion Applications: Watch Now
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
To ensure that questions get required attention from community members and are NOT left unanswered, it’s important for the author to indicate (by selecting “Yes” or “No” when prompted) whether the question was answered. (newly added) Please note that it is also important to respond to EACH comment your question receives. Your Yes or No response ensures an accurate status for your question.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
How to get candidate attachment documents (photo) to RTF template
Summary:
I want to get the photo in candidate attachment and put in RTF Word Template. Currently having issues to get the content from attachment.
How can I get this content and put it in RTF Template?
Content:
I use the fnd_documents_tl table, which contains the DM_DOCUMENT_ID and file_name columns. Despite searching in the Universal Content Management (UCM) system, I have been unable to locate the desired content.
Version: 24B
Code Snippet:
select fad.document_id, dtl.file_name, fad.pk1_value
FROM fnd_attached_documents fad,
fnd_documents d,
fnd_documents_tl dtl
where fad.document_id= d.document_id
0