Oracle Analytics Cloud and Server

Excel BIP Template - How to create a dynamic image placeholder

Received Response
231
Views
5
Comments

Summary

Need instructions for creating a dynamic logo within a BIP template

Content

We have many RTFs with dynamic logos on them, but we are now building a similar template using an Excel BIP template.  So, in our RTP - our alt-text field for the logo placeholder contains the following:

  url:{concat('${OA_MEDIA}','/',LOGO_PATH)}

Now, we need the same thing in the Excel template.  I followed the exact same steps and populated the alt text for the image with that same string, but it is still not pulling in any image onto the generated Excel document.  

Has anyone been able to make this work?

Version

5.6.3 (EBS 12.2.7)

Tagged:

Answers

  • Dir_Pal
    Dir_Pal ✭✭✭✭✭

    Where are the images in the Excel?
    * You need to set a couple of properties to allow use to access them and you need to be connected to the network to get the images.

     

    Base image URI html-image-baseuri Base URI which is inserted into the src attribute of the image tag before the image file name. This works only when the image is embedded in the template.
    Image file directory html-image-dir Enter the directory for XML Publisher to store the image files that are embedded in the template.

    With standalone 10.1.3.4 the Excel output is actually MHTML where we can embed the images directly in the HTML file so you don’t need the properties set.

    In the “Web” Tab of the the image properties.
    Paste an image in the template where you would like your image to be displayed in the output. Double click the image. In the “Web” Tab of the the image properties write this:

    url:{concat(CP_IMAGE_LOC,’/’,’logo.gif’)}

    where CP_IMAGE_LOC contains your unix directory path where my logo.gif file resides. CP_IMAGE_LOC is a placeholder in your rdf and hence is part of my XML output.
    OR you can set the like this:

    url:{‘${OA_MEDIA}/logo.gif’}

    Our Excel is not true Excel and it has a limited set of functionality but for many users its enough just to get the data out into Excel.

     

  • Dir_Pal
    Dir_Pal ✭✭✭✭✭

    Or best Solution is call it from subtemplate which resolves

  • Thanks Rithwik.  I don't have a "Web" tab for my image properties.  My Excel version is Excel 2013.  I've pasted an image in the Excel template as suggested.  When I double-click on the image, a "Format Picture" box opens on the right.  Under "Size & Properties", under "Alt Text", I've updated Description to the following:

    url:{'${OA_MEDIA}/wesco/wesco_running_man_wide_logo.jpg'}

    I've confirmed $OA_MEDIA is set properly, and the path / image is correct.

    When I run the concurrent program, the Excel is correctly generated, but the image is not pulled in, but the original image I pasted in the template is still there.

    Am I missing something?

  • Dir_Pal
    Dir_Pal ✭✭✭✭✭

    Did u tried running by the direct path and what does it shows? is it working.

    try this 

    url:{'{OA_MEDIA}/wesco/wesco_running_man_wide_logo.jpg'}

    url:{'${OA_MEDIA}/wesco_running_man_wide_logo.jpg'}

    url:{concat(wesco,’/’,’wesco_running_man_wide_logo.jpg’)}

     

    let me know how it went

  • Thanks for the idea.  I just tried putting the full path to the image in the "Alt Text" box as follows:

    url:{'/erp_a01_d/applmgr/erpdev/fs2/EBSapps/comn/java/classes/oracle/apps/media/wesco/wesco_running_man_wide_logo.jpg'}

     

    I then uploaded that template and tried again.  It still does not pull the image in - just leaves the blank image there.  Checking the bursted Excel document, it shows the same value still in the "Alt Text" box.  To confirm - I also did double-check to see if that is the correct path / file name and the file exists with proper permissions (which it should since the Word template is still pulling the logo image in correctly.