Oracle Application Express (Oracle APEX) is a software development environment based on the Oracle database. It allows a fast development cycle to be achieved to create web-based applications.

learn more… | top users | synonyms

0
votes
2answers
29 views

Keeping track of user ID with custom authentication

I am currently making an app on apex.oracle.com, and I've been trying to solve this for a couple hours now, but I have no idea how to. Alright, so basically my application has custom authentication ...
0
votes
0answers
22 views

Oracle APEX Shuttle Box Output

I am new to APEX, and I am having issues with displaying output. The shuttle box itself works fine, but below it I have a submit button. When this is pressed it should display the user's manager in ...
0
votes
1answer
33 views

Twitter-Bootstrap Login in Oracle Apex Template

I am having trouble working out how to implement the twitter bootstrap framework into Oracle Apex Themes. Currently I would love my Apex login page to look something like this: ...
-1
votes
1answer
28 views

how to display message on APEX page from database procedure?

I extremely need to know, how to display message on APEX page from database procedure? I create procedure on my oracle db and create button on my APEX page and define dynamic action for calling db ...
0
votes
2answers
38 views

PL/SQL trigger compilation errors are relative to the first BEGIN statement

I am trying to create a trigger that will record any deletion on a table in an audit table The trigger looks like this: create or replace TRIGGER cusdelete AFTER DELETE OR UPDATE ON CUSTOMER DECLARE ...
1
vote
1answer
37 views

Making a Row Read Only in a tabular form based on table value

I have a tabular form which is updated throughout the year and i wanted to prevent users from editing certain rows. Currently the 'row type' is hard coded however I want the application admin to ...
0
votes
0answers
15 views

Oracle Apex JSON non whitspace error

i'm stumbling over a json error while writing an item plugin. I'm trying to add some js code to the html code via *apex_javascript.add_onload_code*: e.g. apex_javascript.add_onload_code( p_code ...
0
votes
1answer
38 views

How to call applet from web to read excel file and insert data to oracle database?

I wrote a java class to read excel file and dump the data to Oracle Database. It needs to reference apache poi libraries( 8 jar files.) The program works fine in command line. Now I want to call ...
1
vote
2answers
37 views

Redirect to apex page and set error message to be displayed

I have a process that runs when a page is submitted. In the process I am catching an exception and if an exception occurs, I want to redirect to a different page and display the error message of the ...
0
votes
1answer
52 views

apex report page turning results

I am trying to utilise a page turning jQuery module called jQuery Booklet onto an Apex search report. Shown here: http://builtbywill.com/code/booklet/ My goal is to have one search result row ...
0
votes
1answer
41 views

How to export database from Oracle Application Express

Really would appreciate any help whatsoever on this one. How to generate DDL from Application Express... including the actual data. I can create a DDL; but one which contains none of the necessary ...
0
votes
0answers
33 views

How to get a Apex report (IR) column value in javascript function?

Using Apex 4.2.1 Actually I have a Apex (IR) report and want to create a javascript function where user can see message if two report columns date are not matched. for example, in report I have ...
0
votes
0answers
18 views

IIS 7.5 with ARR serving Glassfish escaped characters

I have IIS 7.5 running as a front end for a Glassfish 3 server and ARR is doing great for rewrites so far but one problem I have is that if Glassfish throws as response with escapes, IIS further ...
0
votes
0answers
32 views

Oracle Apex Flash Chart not displaying label

I am building stacked column 3d Flash chart in Oracle Apex. it is based on the PL/SQL returning SQL query. PL/sql is required to capture all types of properties and count number of instances in ...
2
votes
1answer
96 views

How to make drop-down menu within Oracle Application Express?

I would really appreciate if anybody could shed some light on this, as search engine results have been singularly unhelpful so far. I am attempting to build a GUI for an oracle database through ...
0
votes
0answers
40 views

Authorization Scheme in Oracle APEX [closed]

I want to create an authorization scheme such that the administrator clicks on Log in button on the homepage of a web app. Username and password should then be entered and the administrator can then ...
0
votes
1answer
33 views

Stacked column Flash chart counting all values

I am building stacked column flash chart on my query. I would like to split values in column for different locations. For argument sake I have 5 ids in location 41, 3 ids in location 21, 8 ids in ...
0
votes
0answers
35 views

Oracle APEX: Marquee a text that is stored in an oracle db table

Im developing an application in Oracle Application Express, Im told to create a marquee with the text stored in a table in Oracle db. Is it possible to achieve using Javascript??
0
votes
1answer
45 views

Report Region based on POP-LOV in Oracle APEX

Hi to all respected gurus. I have a POP-UP LOV in Oracle APEX Form. I want to have a report region to retrieve data from another table, against selected value in POP-UP LOV. Please guide me, how ...
0
votes
0answers
45 views

Call an apex logout procedure within pl/sql

is there any way to call an apex logout procedure within a pl/Sql block. This pl/sql block should be stored in the database. My goal is to write a log with logins and logouts. If the user logins I ...
0
votes
0answers
25 views

Outgoing connection from Oracle Cloud (external webservices)

I need your help with Oracle Cloud (https://cloud.oracle.com) outgoing connection. We are building a web app on Oracle Cloud (Apex) and need to connect our appex app to external webservice. The ...
1
vote
1answer
37 views

Colour report rows that contain the same product name

I have a list of products and I am trying to alternate the colour between each product (grey, white, grey, white, and so on). I understand how to use colour formatting based on a condition such as the ...
0
votes
0answers
21 views

Oracle Application Builder Adding Links

I've set up a home page for my application but it only has a link to the home page on it. I've got 3 other pages i want to have on the home page when i run it. I have a form and two reports that i ...
0
votes
2answers
69 views

PL SQL Function - How to call

I have a function in PL/SQL as follows (being used in Oracle APEX): create or replace FUNCTION User_Levels(result OUT VARCHAR2) RETURN VARCHAR2 IS v_user_types employee.user_type%TYPE; BEGIN ...
0
votes
1answer
59 views

Oracle password regular expression

I want to create a regular expression to verify user's new password for Oracle database. Conditions: - at least 8 characters long - it must begin with a lowercase letter - it must contain at least 2 ...
0
votes
1answer
73 views

Making a row read only in a tabular form

I have a tabular form which users will update on a yearly basis for their targets. Each product will have three rows: a row showing sales (last year), a row showing sales_target (sales man will enter) ...
2
votes
0answers
35 views

Declaring a table of type object where the object contains two nested tables

I am creating staff object who can teach on 1 or many modules. I have a nested table that contains refs to the module table. I was also going to create another to show the modules that the staff ...
0
votes
2answers
54 views

Accessing xml documents stored in Marklogic Server via Oracle APEX Restful Webservice

There is a setup done by our dba in Marklogic server, and he has uploaded several xml documents. I am trying to access those documents via oracle apex RESTFUL web service pl/sql code declare l_clob ...
1
vote
3answers
53 views

apex retrieve default item value

Is it possible to get default item value using plsql? I have a validation and in case it fails I want to reset item to its default value. I tried using apex_util.set_session_state('P_ITEM_NAME', null) ...
0
votes
1answer
43 views

APEX 4.2 application login

I have made a custom authentication routine in APEX 4.2 (package). The username I enter is converted to uppercase by APEX. How can I prevent this? How can customize the error messages i.e. "Invalid ...
0
votes
1answer
75 views

Apex 4.2 - Selecting multiple items for 1 record in a table

I have a table with a column that contains multiple, one or no values per row. Using Apex the only field I can think that can automatically define these values (which need to be dynamically populated ...
0
votes
1answer
34 views

Skillbuilders Save Before Exit

Hoping someone can assist. I am using the Skillsbuilders Save Before Exit Oracle ApEx plugin within one of my pages but for some reason, I do not want it to fire when the user presses the "Save" ...
0
votes
2answers
76 views

How to make a select list from a list of comma-separated values in a table cell in Oracle Apex?

I have a table called Products and it has the following 3 columns: ID, Name and Versions. For any given row, the Versions column may have a number of versions separated by commas. What I'm wondering ...
0
votes
1answer
142 views

How to use text field items to add a row to a table in Oracle Apex?

I'm looking to be able to add a new row to a table by having a few text field items to input the value for each column of the new row in the table. Example: If I have a table called Persons with the ...
0
votes
0answers
31 views

How to get APEX scheme by user name in PL/SQL?

guys: I am required to write a PL/SQL procedure, which can get apex user group (user scheme) which we defined in apex. I know I can get user account by refer to v(app_user), but I am not familiar ...
0
votes
2answers
106 views

Only display 'Edit' link on certain rows on apex report

I have the following report structure which shows sales targets and sales for products throughout the year. Each product will have two rows: a row showing sales and a row showing sales_target. ...
1
vote
1answer
61 views

what oracle apex url javascript utilities are provided?

I need to pass some query params from one apex app to another, so I am passing these as query params. The format of an Oracle APEX URL is something along the lines of: ...
0
votes
1answer
56 views

APEX Shuttle - get more values as selected

i working since some days with APEX and i added a Shuttle also a text field which contains after processing the selected values. for the shuttle i have made a LOV (contains stations) example: Be Fd ...
0
votes
1answer
74 views

Oracle Apex 4.1 Checkbox to update shuttle

I am fairly new to APEX and need some help please. I am running Apex 4.1 on 11g database. I have check box field P6_LOCATION, with list of locations and there is dynamic action assigned to field. ...
0
votes
1answer
73 views

Oracle multi-user application staging tables - in APEX

I'm developing an application which takes some raw input data and transforms it to calculate a final result in a series of steps. At each of these steps, there are possible user inputs (e.g., weights, ...
1
vote
1answer
175 views

Oracle Apex 4.2 interactive report with lookup tables

I have created a table Called NAMES inside that I have a column called Status. On STATUS, I created a lookup table and this created a new table called Status_lookup Which has 2 column (STATUS_ID ...
1
vote
3answers
183 views

PL/SQL Oracle Query With IF Statement

I want to implement a query that only returns the logged in user and displays there record only, which I have done as follows and it works: SELECT * FROM EMPLOYEE WHERE UPPER(username) = ...
0
votes
1answer
36 views

create oracle database and tables

I've succesfully installed Oracle Application Express and also created Workspaces using home page http://localhost:8080/apex. Now I want to create database and tables, but cannot find any instruction ...
0
votes
1answer
38 views

Prevent users accessing certain apex applications

We have 50 apex applications which currently any user can access any of the 50 applications by using the website links on our intranet page. How can you determine which users can access certain apex ...
0
votes
0answers
83 views

sqlplus command not working [closed]

I am trying to install Oracle Application Express on Windows 7, that is why I need SQL*plus . However SQL*Plus cannot be defined in cmd. I am new to Oracle. What can I do in order to run SQL*Plus ?
1
vote
1answer
73 views

apex always execute validation

Is it possible to execute validations on page load regardless if it is submitted or just loaded? I need to implement it for ordinary validations created in processing page section and for min max ...
0
votes
0answers
51 views

Refresh/Update a report page with checkboxes

I am using APex 4.2. I have a page with a shuttle list, (page 31), where a user can select some job categories (e, a, c, x, etc). The user can then click a button, (Generate Report), and it will take ...
0
votes
1answer
55 views

Capture values of a shuttle list

I am using APex 4.2 I have a page (page 31) with a shuttle list. The list contains several job categories (a, e, x, c, etc). I have a button on that page that generates a report based on the selected ...
0
votes
2answers
53 views

MultiRowUpdate in application Express (Oracle)

when you work with a tabular form in Apex (application express, Oracle) you have automatic process for a MULTI ROW UPDATE and MULTI ROW DELETE. I'm interested in seeing the code behind these ...
1
vote
2answers
76 views

Apex Web Service Authentication for .Net CF client

We are developing a barcode application to run on our mobile computers running Windows Mobile 5.0 Pocket PC and it needs to get it's data from our Oracle database. Apex is already set up but how can ...

1 2 3 4 5 13