Search found 2052 matches

by admin
Thu Sep 21, 2023 12:09 pm
Forum: Oracle APEX
Topic: Login Page Background Image
Replies: 0
Views: 11

Login Page Background Image

This video is to show steps and code to change login page background image of Oracle APEX. CODE: body{ background-image: url('#APP_FILES#technology.jpg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'); background-position: center; background-repeat: no-repeat; background-size: cover; } ...
by admin
Thu Sep 21, 2023 12:05 pm
Forum: Oracle APEX
Topic: Join ERPstuff Community
Replies: 0
Views: 11

Join ERPstuff Community

ERPstuff.jpg
by admin
Sat Sep 16, 2023 7:05 am
Forum: Oracle Forms & Reports
Topic: How to connect oracle 6i form with oracle 12c,19c Database ?
Replies: 0
Views: 84

How to connect oracle 6i form with oracle 12c,19c Database ?

Conn Sys As Sysdba alter profile DEFAULT limit PASSWORD_REUSE_TIME unlimited; alter profile DEFAULT limit PASSWORD_LIFE_TIME unlimited; ---------------Case Sensitive Login---------------------- alter system set sec_case_sensitive_logon=False; ---------------To Allow export of tables with no row-----...
by admin
Mon Sep 11, 2023 8:47 am
Forum: Oracle APEX
Topic: Javascript apex.item
Replies: 0
Views: 62

Javascript apex.item

$v( "P2_ENAME" ) apex.item( "P2_ENAME" ).getValue() $s( "P2_ENAME", "Sikandar" ) apex.item( "P2_ENAME" ).setValue("Sikandar") apex.item( "P2_ENAME" ).hide() apex.item( "P2_ENAME" ).show() apex.item( "P2_ENAME" ...
by admin
Wed Sep 06, 2023 5:34 am
Forum: Oracle Cloud Services Tips & Tricks
Topic: Oracle Integration Cloud (OIC) and Oracle Cloud Infrastructure (OCI) | Empowering Cloud Solutions
Replies: 0
Views: 69

Oracle Integration Cloud (OIC) and Oracle Cloud Infrastructure (OCI) | Empowering Cloud Solutions

OIC can refer to two different things, depending on the context: 1. **Oracle Integration Cloud (OIC):** **Oracle Integration Cloud (OIC)** is a cloud-based integration platform provided by Oracle Corporation. It is designed to facilitate the integration of various applications and services, whether ...
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: 2132

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: 1514

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: 431

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: 272

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: 630

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: 230

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: 1358

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: 905

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: 732

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: 882

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