Size: a a a

2018 July 07

AV

Alexey Vihristyk in Oracle APEX
источник

VN

Vadim Navrotsky in Oracle APEX
cool
источник

AV

Alexey Vihristyk in Oracle APEX
in https://apex.world new features !
источник
2018 July 09

DS

Denis Savenko in Oracle APEX
Alexey Vihristyk
Hello. We are looking for documentation on the latest version of the Interactive Grid API. I'm interested in saving IG through JScript commands
That's a good question. Me personally have never looked deeply into IG yet, but there're some useful sources:
- https://github.com/mgoricki/orclapex-ig-cheat-sheet
- https://apex.oracle.com/pls/apex/apex_pm/r/520052/files/static/v56/jsdoc/grid.html (as far as I understand, grid widget is the JavaScript part of the IG region, but I could be mistaken, because again - I've never had a chance and time to seriously use the IG)
источник

AV

Alexey Vihristyk in Oracle APEX
The difference between  THEME_IMAGES and  THEME_DB_IMAGES in 18.1
источник
2018 July 10

AP

Anton Petrusevich in Oracle APEX
guys, what do you use for printing?
источник

DP

Daniel Pingusoft in Oracle APEX
Anton Petrusevich
guys, what do you use for printing?
Pdf ?
источник

AK

Alexander Krasilnikov in Oracle APEX
Printer? 😁
источник

AP

Anton Petrusevich in Oracle APEX
Daniel Pingusoft
Pdf ?
yes
источник

DP

Daniel Pingusoft in Oracle APEX
We use PL-jrxml2pdf , i create reports in  Ireport  and  call in Apex
источник

DP

Daniel Pingusoft in Oracle APEX
источник

AP

Anton Petrusevich in Oracle APEX
thanks
источник

DP

Daniel Pingusoft in Oracle APEX
👍
источник
2018 July 11

AD

Alex D in Oracle APEX
Hi
Sorry for bad English - I use an interpreter.
To form a PDF file, we do the following:
1. Create a BLOB file in RTF format (using PL/SQL package)
2. save the BLOB file in the ORACLE DIRECTORY
3. Call PL/SQL (JAVA function) function, which starts the file (convert_rtf2pdf.sh), which is stored in the operating system
Sample convert_rtf2pdf.sh:
#!/bin/bash
source=$1
PATH=/usr/bin
FOLDER_CONVERT='/home/oracle/convert/tmp'
/usr/bin/libreoffice --headless --convert-to pdf --outdir $FOLDER_CONVERT $FOLDER_CONVERT/$source
In ORACLE DIRECTORY we get a PDF file that we load into the database and send it to the user

If I want to get a JPG file, then after executing convert_rtf2pdf.sh, run convert_pdf2jpg.sh
Sample convert_pdf2jpg.sh:
#!/bin/bash
source=$1
dest=$2
PATH=/usr/bin
FOLDER_CONVERT='/home/oracle/convert/tmp'
/usr/bin/convert -density 500 $FOLDER_CONVERT/$source -quality 90 $FOLDER_CONVERT/$dest
In ORACLE DIRECTORY we get a JPG file that we load into the database and send it to the user
источник

AP

Anton Petrusevich in Oracle APEX
is this ok that PL-jrxml2pdf was not updated since 2016?
источник

AP

Anton Petrusevich in Oracle APEX
Alex D
Hi
Sorry for bad English - I use an interpreter.
To form a PDF file, we do the following:
1. Create a BLOB file in RTF format (using PL/SQL package)
2. save the BLOB file in the ORACLE DIRECTORY
3. Call PL/SQL (JAVA function) function, which starts the file (convert_rtf2pdf.sh), which is stored in the operating system
Sample convert_rtf2pdf.sh:
#!/bin/bash
source=$1
PATH=/usr/bin
FOLDER_CONVERT='/home/oracle/convert/tmp'
/usr/bin/libreoffice --headless --convert-to pdf --outdir $FOLDER_CONVERT $FOLDER_CONVERT/$source
In ORACLE DIRECTORY we get a PDF file that we load into the database and send it to the user

If I want to get a JPG file, then after executing convert_rtf2pdf.sh, run convert_pdf2jpg.sh
Sample convert_pdf2jpg.sh:
#!/bin/bash
source=$1
dest=$2
PATH=/usr/bin
FOLDER_CONVERT='/home/oracle/convert/tmp'
/usr/bin/convert -density 500 $FOLDER_CONVERT/$source -quality 90 $FOLDER_CONVERT/$dest
In ORACLE DIRECTORY we get a JPG file that we load into the database and send it to the user
do u use oracle bi publisher?
источник

AD

Alex D in Oracle APEX
No. For what purposes?
источник

AP

Anton Petrusevich in Oracle APEX
Alex D
No. For what purposes?
I don't know. Just asked.
источник

AP

Anton Petrusevich in Oracle APEX
can you a little more explain on this:
1. Create a BLOB file in RTF format (using PL/SQL package)
источник

AD

Alex D in Oracle APEX
We use Ora11g, APEX5.1 JS, KendoUI components (grid, menu, button, and etc.)
источник