I created an invoice using plsql dynamic content in oracle apex where I used HTML CSS and javascript to design the invoice after that I converted the div (invoice div) into pdf using jspdf plugin. Now I want to save the pdf into my database blob column.
I tried to convert the pdf into base64 and placed that base64 into an item. But the length of base64 is around 300000 and when I tried to send it using ajax callback in the plsql process it could not capture the item value and shows null.
What could be the easiest solution in this aspect?
Thanks.