Search found 2062 matches

by admin
Tue Aug 22, 2023 4:04 pm
Forum: Oracle Cloud Services Tips & Tricks
Topic: How to create Free Oracle Cloud Account?
Replies: 1
Views: 39548

Re: How to create Free Oracle Cloud Account?

Problem 1; Challenge: I realized that on my laptop, I had installed a number of VPNs because my work requires me to connect remotely to execute tasks on client servers. Solution: I uninstalled/disconnected from all VPNs. ------- Problem 2; Challenge: I don't really know if the country originator of ...
by admin
Mon Jul 31, 2023 5:49 am
Forum: Oracle APEX
Topic: IG-Interactive Grid and JavaScript
Replies: 5
Views: 56348

Re: IG-Interactive Grid and JavaScript

Dear please join out community whatsapp group, using below link.

https://chat.whatsapp.com/CbT3HKqAwo69vVQ2a64717
by admin
Thu Jul 27, 2023 6:58 am
Forum: IT Jobs
Topic: Oracle APEX Project in Muscat, Oman Jobs
Replies: 0
Views: 115000

Oracle APEX Project in Muscat, Oman Jobs

Oracle APEX related Project Profiles required for Muscat, Oman for a project to bid so kindly provide your expected salary in USD or OMR with expected time to join even if only English still you can apply. The CV must be as word format and position name should be in the subject and send to info@erps...
by admin
Tue Jul 25, 2023 6:32 am
Forum: Oracle APEX
Topic: Debugging in Oracle APEX
Replies: 0
Views: 117309

Debugging in Oracle APEX

BEGIN IF :P1_PURGE = 'Y' THEN APEX_DEBUG.REMOVE_DEBUG_BY_APP(P_APPLICATION_ID => TO_NUMBER(:APP_ID) ); END IF; IF :P1_ENABLE = 'Y' THEN APEX_DEBUG.ENABLE(P_LEVEL => :P1_LEVEL); -- APEX_DEBUG.ENABLE(APEX_DEBUG.C_LOG_LEVEL_INFO); APEX_DEBUG.LOG_MESSAGE(P_MESSAGE => 'APEX_DEBUG.LOG_MESSAGE : ' || :P1_...
by admin
Sun Jul 09, 2023 9:28 am
Forum: Oracle APEX
Topic: Oracle Apex 19.1 , have SSO enabled for Workspace logins- does not work
Replies: 1
Views: 8735

Re: Oracle Apex 19.1 , have SSO enabled for Workspace logins- does not work

Hi,
What do you mean by WS user, OS user and APP users? Are you talking about LDAP or something else? tks
by admin
Sun Jun 25, 2023 4:09 pm
Forum: Oracle APEX
Topic: Suspend ENQUEUED background process
Replies: 0
Views: 85331

Suspend ENQUEUED background process

BEGIN
apex_application_install.suspend_background_execs(
p_application_id => 100 );
END;
by admin
Sat Jun 03, 2023 4:26 pm
Forum: Oracle APEX
Topic: ORDS 22.X Installation on Windows 2010 and Tomcat 9
Replies: 0
Views: 88991

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...
by admin
Wed May 24, 2023 4:12 pm
Forum: Oracle APEX
Topic: Ords 22.2 commands
Replies: 0
Views: 88862

Ords 22.2 commands

C:\OracleDB19c\ords>ords -–config /etc/ords/config install

C:\OracleDB19c\ords>ords --config C:\OracleDB19c\ords\config serve
by admin
Tue May 09, 2023 9:20 am
Forum: Oracle APEX
Topic: List of columns of a table?
Replies: 0
Views: 88305

List of columns of a table?

select column_name||',' from user_tab_columns where table_name = 'JS_B2B_HEADER' order by COLUMN_ID
by admin
Fri Apr 21, 2023 5:12 am
Forum: Oracle APEX
Topic: TinyMCE code for demo and Video
Replies: 0
Views: 91091

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...
by admin
Thu Apr 20, 2023 1:11 am
Forum: IT Jobs
Topic: Oracle Utilities Project Resources Required.
Replies: 0
Views: 90481

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...
by admin
Wed Apr 19, 2023 1:51 am
Forum: Oracle APEX
Topic: Push Notification Oracle APEX 23.1
Replies: 0
Views: 89969

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;

by admin
Wed Apr 19, 2023 12:38 am
Forum: Oracle APEX
Topic: Execution Chains Page Processing new Feature 23.1
Replies: 0
Views: 89642

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...
by admin
Tue Apr 04, 2023 8:43 am
Forum: Oracle APEX
Topic: Oracle APEX for EBS Question and Answers
Replies: 0
Views: 88662

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...
by admin
Fri Mar 10, 2023 2:37 pm
Forum: Oracle APEX
Topic: Authorization Schemes Script & Video Demo
Replies: 0
Views: 86336

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 ...