Reputation: 147
Let me explain my situation. Now I need to create a new APEX application. But I am not using the APEX SQL Workshop (Figure 1) as the database. The data is being retrieved through package. Please refer to the hierarchy design in Figure 2. From the hierarchy, the data are stored in Table_A in D1EDATA. D1EDATA has a package called Package_A. D1APEX is the application. It calls the package to select, update or delete the records stored in Table_A
Figure 1: Development Environment
Figure 2: Application Architecture Design
My questions as below:
Upvotes: 1
Views: 595
Reputation: 5565
Regions
label to create new region;Form
- Form on a procedure
Apex will create a form with fields for every procedure/function parameters and with buttons Run
(I don't remember exact name) and Cancel
.
UPD
You can define name of your user (regardless of current authentication scheme) in PL/SQL code with v
function: v('APP_USER')
. But remember, this function returns NULL
, if you call it not from APEX application. There is a universal way to call it (in UPDATE
statement):
update mt_table set username = nvl(v('APP_USER'), user);
Upvotes: 1