Search found 2041 matches
- Sat Jun 03, 2023 4:26 pm
- Forum: Oracle APEX
- Topic: ORDS 22.X Installation on Windows 2010 and Tomcat 9
- Replies: 0
- Views: 15
ORDS 22.X Installation on Windows 2010 and Tomcat 9
As you might know Oracle has changed the way it was installing ORDS so now instead of using java ords.war now syntax is changed. Here are steps to install ORDS for Oracle APEX in Wndows 2010 with deployment in Tomcat 9. 1. Download following softwares, a. JDK 11 or 17 b. ORDS 22.x r 23.1 c. Oracle A...
- Wed May 24, 2023 4:12 pm
- Forum: Oracle APEX
- Topic: Ords 22.2 commands
- Replies: 0
- Views: 30
Ords 22.2 commands
C:\OracleDB19c\ords>ords -–config /etc/ords/config install
C:\OracleDB19c\ords>ords --config C:\OracleDB19c\ords\config serve
C:\OracleDB19c\ords>ords --config C:\OracleDB19c\ords\config serve
- Tue May 09, 2023 9:20 am
- Forum: Oracle APEX
- Topic: List of columns of a table?
- Replies: 0
- Views: 33
List of columns of a table?
select column_name||',' from user_tab_columns where table_name = 'JS_B2B_HEADER' order by COLUMN_ID
- Fri Apr 21, 2023 5:12 am
- Forum: Oracle APEX
- Topic: TinyMCE code for demo and Video
- Replies: 0
- Views: 89
TinyMCE code for demo and Video
CREATE TABLE tinyMCE_tbl ( ID NUMBER(4,0) GENERATED BY DEFAULT ON NULL AS IDENTITY MINVALUE 1 MAXVALUE 90000 INCREMENT BY 1 START WITH 8000 NOCACHE, blog_text varchar2(4000), CONSTRAINT "tinyMCE_tbl_ID" PRIMARY KEY ("ID") USING INDEX ENABLE ) drop table tinyMCE_tbl select * from...
- Thu Apr 20, 2023 1:11 am
- Forum: IT Jobs
- Topic: Oracle Utilities Project Resources Required.
- Replies: 0
- Views: 145
Oracle Utilities Project Resources Required.
We are looking for onsite resources for 2 years in Muscat, Oman. Please share your cv with expectations and TTJ (time to join) if you have minimum of 5 years of experience. Share your CV as MS Word document at info@erpstuff.com (position no and name must be in the subject of your email. 1 Oracle Uti...
- Wed Apr 19, 2023 1:51 am
- Forum: Oracle APEX
- Topic: Push Notification Oracle APEX 23.1
- Replies: 0
- Views: 88
Push Notification Oracle APEX 23.1
Code: Select all
begin
apex_pwa.send_push_notification (
p_application_id => 123456,
p_user_name => 'SIKANDAR.AWAN@GMAIL.COM',
p_title => 'ERPstuff Push Notification',
p_body => 'This is my test push notification.' );
end;
- Wed Apr 19, 2023 12:38 am
- Forum: Oracle APEX
- Topic: Execution Chains Page Processing new Feature 23.1
- Replies: 0
- Views: 101
Execution Chains Page Processing new Feature 23.1
Page Processing Improvements Group a sequence of page processes to offload processing to the background or just simplify maintainability of conditional execution. Control Background Execution More control over processes executing in the background with the addition of monitoring to the Active Sessio...
- Tue Apr 04, 2023 8:43 am
- Forum: Oracle APEX
- Topic: Oracle APEX for EBS Question and Answers
- Replies: 0
- Views: 170
Oracle APEX for EBS Question and Answers
Our community member of Oracle APEX asked few questions and best of my knowledge here are responses to each of them, 1. Database or APEX License will be required for APEX separate installation? >> There is no APEX separate license and it is part of Oracle Database Standard and Enterprise License. Fo...
- Fri Mar 10, 2023 2:37 pm
- Forum: Oracle APEX
- Topic: Authorization Schemes Script & Video Demo
- Replies: 0
- Views: 132
Authorization Schemes Script & Video Demo
BEGIN EXECUTE IMMEDIATE 'DROP TABLE ERPSTUFF_EMPS'; EXECUTE IMMEDIATE 'DROP TABLE ERPSTUFF_DEPTS'; EXCEPTION WHEN OTHERS THEN NULL; END; / CREATE TABLE "ERPSTUFF_EMPS" ( "EMPNO" NUMBER(4,0) GENERATED BY DEFAULT ON NULL AS IDENTITY MINVALUE 1 MAXVALUE 90000 INCREMENT BY 10 START ...
- Tue Feb 28, 2023 9:17 am
- Forum: Oracle APEX
- Topic: Custom Authentication Function
- Replies: 0
- Views: 131
Custom Authentication Function
function js_authentication ( p_username in varchar2, p_password in varchar2 ) return boolean is l_user my_users.user_name%type := upper(p_username); l_id my_users.id%type; l_hash my_users.password_hash%type; begin begin select id , password_hash into l_id, l_hash from my_users where user_name = l_us...
- Thu Feb 16, 2023 4:16 am
- Forum: Oracle APEX
- Topic: Make field readonly using Custom Attributes
- Replies: 0
- Views: 142
Make field readonly using Custom Attributes
This way field will be readonly while stillyou can assign values using code etc.
readonly="true"
readonly="true"
- Mon Feb 13, 2023 10:32 am
- Forum: Oracle APEX
- Topic: Imange fixed size in Interactive/Classic Reports
- Replies: 0
- Views: 120
Imange fixed size in Interactive/Classic Reports
Pictures are always of different diminsions and if you need to display them in a fixed size in Interactive/Classic Reports then enter following code in the page Inline, td[headers="PHOTO"] img { display: block; width: 60px; } here "PHOTO" is your column name of reports query.
- Wed Feb 08, 2023 10:18 am
- Forum: Oracle APEX
- Topic: Oracle APEX - Commenting Tips & Tricks - VIDEO
- Replies: 0
- Views: 113
Oracle APEX - Commenting Tips & Tricks - VIDEO
Oracle APEX - Commenting Tips & Tricks The commenting feature in Oracle Application Express (APEX) allows developers to add notes or explanations to their code. This can be helpful for collaboration, debugging, or just keeping track of what different parts of the code do. Oracle PL/SQL Developer...
- Mon Feb 06, 2023 1:18 pm
- Forum: IT Jobs
- Topic: Oracle DBA, EBS Functional & DBA for Karachi
- Replies: 0
- Views: 218
Oracle DBA, EBS Functional & DBA for Karachi
1-3 Primary Oracle DBA Duties: Oracle 12/19c administration and support (on-prem or cloud) Oracle Patch Management Coordination and implementation Oracle backup and recovery planning/testing Provide infrastructure support at all levels and after hours support as needed Coordinate Oracle DB work wit...
- Sat Feb 04, 2023 8:32 am
- Forum: Oracle APEX
- Topic: IG Highlight color and Hide controls
- Replies: 0
- Views: 134
IG Highlight color and Hide controls
function(config) { config.reportSettingsArea = false; // may want to disable the highlights feature. Comment out this code to make initial highlight settings apex.util.getNestedObject(config, "views.grid.features").highlight = false; return config; } IG color.jpg IG color2.jpg