Oracle Analytics Cloud and Server

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

Error!! Could not deliver the output for Delivery channel:null . Please check the Log for error deta

Received Response
101
Views
2
Comments

Summary

Bursting error on EBS 12.1.3

Content

Hi,

 

I hope somebody can help me, I have a test environment, and my bursting process is not working

I tried sending an email from unix and it worked

 

echo "THIS IS A TEST EMAIL" | mail -s "Test Subject Email" dpastrana@........com
 

I also logged in into EBS and executed a concurrent, putting a delivery options my email and I got the email but it seems that it doesn't work when I tried to burst it, would any have an idea why?

 

Thanks for help.

Daniel Pastrana

Version

12.1.3

Code Snippet

<?xml version="1.0" encoding="UTF-8"?>
<xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
  <xapi:globalData location="stream"/>
  <xapi:request select="/ARXSGPO_CPG/LIST_G_SETUP/G_SETUP/LIST_G_CUSTOMER_ID/G_CUSTOMER_ID">
    <xapi:delivery>
      <xapi:email server="mx-ebs-dev.touchtunes.com" port="25" from="dpastrana@touchtunes.com">
        <xapi:message id="email1"  to="dpastrana@touchtunes.com"  cc="${CC_EMAIL}" attachment="true" content-type="html/text" subject="Test">
Test
</xapi:message>
      </xapi:email>
      <!--xapi:print id="prn1" printer="ipp://localhost:631/printers/${SEND_TO_PRINTER}" copies="1"/-->
    </xapi:delivery>
    <xapi:document key="${CUSTOMER_ID}_1" output="TouchTunes_ARSTATEMENT-${STATEMENT_DATE}-${CUST_NUM}_${METHOD_ID}" output-type="pdf" delivery="email1">
      <xapi:template type="rtf" location="xdo://AR.XXTT_PNUS_ARXSGP.en.00/?getSource=true" filter="/ARXSGPO_CPG/LIST_G_SETUP/G_SETUP/LIST_G_CUSTOMER_ID/G_CUSTOMER_ID[COMMUNIC_MTHD='EMAIL_YES']"/>
    </xapi:document>
    <!--xapi:document key="${CUSTOMER_ID}_2" output="TouchTunes_ARSTATEMENT-${STATEMENT_DATE}-${CUST_NUM}_${METHOD_ID}" output-type="pdf" delivery="prn1">
      <xapi:template type="rtf" location="xdo://AR.XXTT_PNUS_ARXSGP.en.00/?getSource=true" filter="/ARXSGPO_CPG/LIST_G_SETUP/G_SETUP/LIST_G_CUSTOMER_ID/G_CUSTOMER_ID[COMMUNIC_MTHD='PRINT_YES']"/>
    </xapi:document-->
  </xapi:request>
</xapi:requestset>

Answers

  • User910243567
    User910243567 Rank 6 - Analytics Lead

    Do you still have this issue.? If you do;

          <xapi:template type="rtf" location="xdo://AR.XXTT_PNUS_ARXSGP.en.00/?getSource=true" filter="/ARXSGPO_CPG/LIST_G_SETUP/G_SETUP/LIST_G_CUSTOMER_ID/G_CUSTOMER_ID[COMMUNIC_MTHD='PRINT_YES']"/>

    Can you replace this as below, we are changing the highlighted section to point to rtf location. Make sure RTF template exists in that location.

          <xapi:template type="rtf" location="/ora/app/test/XXTT_PNUS_ARXSGP.rtf"/>

  • Daniel Pastrana
    Daniel Pastrana Rank 1 - Community Starter

    I just fixed it yesterday, I did a change from this

    <xapi:email server="mx-ebs-dev.touchtunes.com" port="25" from="dpastrana@touchtunes.com">

    to this

    <xapi:email server="localhost" port="25" from="dpastrana@touchtunes.com">

    and it worked,

     

    Thanks for you help Suresh.

    Daniel Pastrana