I was practicing with the bursting feature in BI Publisher, I scheduled it to send a pdf file by email. The scheduling was confirmed 'success' but when I checked, no pdf file was attached and sent to my folder. This was the query I used in my bursting:
SELECT DISTINCT 'RPT_ITEM_NUMBER' AS "KEY",
'RPT_ITEM_NUMBER' AS "DELIVER_BY",
'file' AS "DELIVERY_TYPE",
'/My Folder/Drafts' AS "PARAMETER1",
'G02344.pdf' AS "PARAMETER2",
'PDF' AS "PARAMETER3"
FROM DUAL
I tried to specify the directory in the line: '/My Folder/Drafts' AS "PARAMETER1" but it didn't work. So how do I make sure that there is a file to be sent by bursting?