Where to download The ADFdi add-in for Excel runs on Microsoft Windows inside Microsoft Excel
https://<hostname>:<portnumber> /fscmUI/adfdiRemoteServlet?excel-addin-installer-all-users
How Express Can You Go ?
Where to download The ADFdi add-in for Excel runs on Microsoft Windows inside Microsoft Excel
https://<hostname>:<portnumber> /fscmUI/adfdiRemoteServlet?excel-addin-installer-all-users
_B - base table. It holds the main details of the object in question and it implies that there is also a _TL table for it. You'd never find a _B table without a _TL table. the primary key is the id column.
_TL - translatable table. Holds the translated names/descriptions for base objects. will have one row per installed language. linked to the base table by the _id column. Doesn't always imply that there is a _B as its base data could also be in a _F table or a table without postfix. The primary key is the id column plus the language column.
_F - date effective table. Tends to exist only in HR and it holds objects that are date effective. It means the primary key is the combination of the ID column, effective start date and effective end date. there is only 1 row per ID for any date, but you can have multiple rows for the same id over time. Some _F columns come with a matching _TL column, too.
_VL - translatable view. It's not a table, but the view that represents the join of the base table and the TL table using the user's session language. You can assume that almost all _TL tables come paired with a _VL view.
_M - multiple changes per date table. Like a _F table, but it allows rows to start and end on the same day. There is only one such table per_all_assignments_m, and it has additionally the effective_sequence in the primary key.
_DN - denormalised table: usually just a simplification of another table that holds hierarchies or trees of some kind. The denormalised tables are populated by ESS processes and hold the flattened hierarchy that has direct links between all nodes and their distance. Those are used e.g. for security profiles based on the manager hierarchy.
source: oracle
Use: APEX_JSON.write('P_INVOICE_TRACKING', '', true);
Result: "P_INVOICE_TRACKING":null
Use: APEX_JSON.write_raw('P_INVOICE_NUMBER', '"'||r_header.sppd_code||'"');
Result: "P_INVOICE_NUMBER":"0134/XYZ/084/RS/2021"
Here how to get SOURCE SYSTEM OWNER on HDL process
SELECT * FROM fnd_lookup_values WHERE lookup_type = 'HRC_SOURCE_SYSTEM_OWNER'
procedure send_email_test( p_from varchar2 default 'info@yourdomain.com' , p_to varchar2 , p_subject varchar2 default 'Email test' ) as l_body clob; begin l_body := 'Thank you for your interest in the APEX_MAIL package.'||utl_tcp.crlf; l_body := l_body ||' Sincerely,'||utl_tcp.crlf; l_body := l_body ||' The APEX Dev Team'||utl_tcp.crlf; apex_mail.send( p_to => p_to, -- change to your email address p_from => p_from, -- change to a real senders email address p_body => l_body, p_subj => p_subject ); APEX_MAIL.PUSH_QUEUE; end send_email_test;
unzip apex_18.1_en.zip mv /home/oracle/tmp/apex/ /u01/app/oracle/product/apex/18.1.0.00.45/
sqlplus /nolog SQL> CONNECT ORDS_PUBLIC_USER Password: Connected. SQL>
ALTER SESSION SET CONTAINER=PDB1; @dbcsins.sql SYSAUX SYSAUX TEMP /i/18.1.0.00.45/ <ORDS_PUBLIC_USER_PASSWORD>
SELECT VERSION, STATUS, SCHEMA FROM DBA_REGISTRY WHERE COMP_ID = 'APEX';
ln -sfn /u01/app/oracle/product/apex/18.1.0.00.45/images/ /u01/app/oracle/product/ords/conf/ords/standalone/doc_root/i/18.1.0.00.45
$ sudo -s
# cd /var/opt/oracle/ocde/assistants/ords
# ./ords -out="/var/opt/oracle/ocde/res/ords.out" -ords_action="configure_apex"
# /etc/init.d/ords restart
declare r_data EMP_PDF%rowtype; BEGIN select * into r_data from emp_pdf where empno = :P4_EMPNO; sys.htp.init; sys.owa_util.mime_header( r_data.mimetype, FALSE); sys.htp.p('Content-length: ' || sys.dbms_lob.getlength( r_data.pdf_data )); sys.htp.p('Content-Disposition: inline; filename='||r_data.filename ); -- tell the browser to cache for one hour, adjust as necessary sys.htp.p('Cache-Control: max-age=3600'); sys.owa_util.http_header_close; sys.wpg_docload.download_file(r_data.pdf_data); apex_application.stop_apex_engine; exception when others then sys.htp.prn('error: '||sqlerrm); apex_application.stop_apex_engine; END;