Skip to main content

ApEx Home Page Facelift

Looks like the ApEx PMs have been busy, as the ApEx Home Page has been re-worked. There's not a ton of new content, but I do like the new organization of the page, especially the links to Oracle Magazine articles which feature ApEx. There's also some details on what's new in Release 2.2, which you could previously only see in an obscure corner of apex.oracle.com.

In talking with some of the folks at Oracle, there is a lot more in store, so check back every now and then to see the forthcoming changes.

Comments

Anonymous said…
I agree, it definitely looks a lot 'cleaner' and easier to navigate.
Anonymous said…
Hi Scott,

I'm trying to implement a simple Oracle Application Express (HTML_DB) page into Oracle Financials App. eBussines Suite 11.5.9
We want use APEX like way to replace Oracle Forms and Reports. But, we need can run the APEX pages integrating into Financials, not like other new applications w/new SSO (user_name and user_password).

I was following your explanations (eBusiness Suite Security Model), but surely I have some mistakes.

My implementation was:

A) on ApEX Developmet Appl.

A.1) I created a simple page based on Employees table into an existing DB schema (called NXC).
A.2) "NXC" schema is an existing schema into DB that are running Oracle Financials (like PA, or GL, etc) We have Custom Forms are running in Financials.
A.3) The Employees APEX is running fine form APEX Development. This page run w/address:http://bashpapa:7778/pls/htmldb/f?p=113:1 The page is working fine.

B) on Financials:

B1) created a Function
B2) created a Menu
B3) created a Responsibility
B4) created package (apps.apex_launcher.launcher_103) and done grant execute to Public.
B5) Assigned the responsibility to my user

It was not necessary create a new Application and register a Data Group because the schema was existing (NXC).

B6) When I run the page from Oracle Financials I have a message error "No se
encontró la página" (page not found).

Financials open a new browser
(http://baslije2.nex.com.ar:8005/OA_HTML/RF.jsp?function_id=20885&resp_id=539
41&resp_appl_id=20004&security_group_id=0&lang_code=US) w/ error and the message is " page not found ".


I'm not expert in servers or internet resources, bur I thinks that I have some problem like Financials called at APEX page.

I do not sure because Financials is running w/http://baslije2.nex.com.ar:8005/....
and APEX have reference at http://bashpapa:7778/pls/htmldb....

When Financials called APEX page have to replace // baslije2.nex.com.ar:8005 TO //bashpapa:7778/pls/htmldb ????

What part of the notes I have to follow?

I will appreciate your help if it is possible.

Rolando
Anonymous said…
Scott,

Do know if it is possible to store a sql script(containing sql commands and pl/sql blocks) on a server, and then use APEX to execute it by entering a URL in a browser( like we could do with isqlplus using dynamic)?

Thanks,
Marty Solomon
martysolom@aol.com
Scott said…
Do know if it is possible to store a sql script(containing sql commands and pl/sql blocks) on a server, and then use APEX to execute it by entering a URL in a browser( like we could do with isqlplus using dynamic)?

Sure - you would need to convert the script to a procedure, and then you could call it from either an APEX application (more secure) or just from the URL (less secure, don't even need APEX).

- Scott -

Popular posts from this blog

Custom Export to CSV

It's been a while since I've updated my blog. I've been quite busy lately, and just have not had the time that I used to. We're expecting our 1st child in just a few short weeks now, so most of my free time has been spent learning Lamaze breathing, making the weekly run to Babies R Us, and relocating my office from the larger room upstairs to the smaller one downstairs - which I do happen to like MUCH more than I had anticipated. I have everything I need within a short walk - a bathroom, beer fridge, and 52" HD TV. I only need to go upstairs to eat and sleep now, but alas, this will all change soon... Recently, I was asked if you could change the way Export to CSV in ApEx works. The short answer is, of course, no. But it's not too difficult to "roll your own" CSV export procedure. Why would you want to do this? Well, the customer's requirement was to manipulate some data when the Export link was clicked, and then export it to CSV in a forma

Refreshing PL/SQL Regions in APEX

If you've been using APEX long enough, you've probably used a PL/SQL Region to render some sort of HTML that the APEX built-in components simply can't handle. Perhaps a complex chart or region that has a lot of custom content and/or layout. While best practices may be to use an APEX component, or if not, build a plugin, we all know that sometimes reality doesn't give us that kind of time or flexibility. While the PL/SQL Region is quite powerful, it still lacks a key feature: the ability to be refreshed by a Dynamic Action. This is true even in APEX 5. Fortunately, there's a simple workaround that only requires a small change to your code: change your procedure to a function and call it from a Classic Report region. In changing your procedure to a function, you'll likely only need to make one type of change: converting and htp.prn calls to instead populate and return a variable at the end of the function. Most, if not all of the rest of the code can rem

Logging APEX Report Downloads

A customer recently asked how APEX could track who clicked “download” from an Interactive Grid.  After some quick searching of the logs, I realized that APEX simply does not record this type of activity, aside from a simple page view type of “AJAX” entry.  This was not specific enough, and of course, led to the next question - can we prevent users from downloading data from a grid entirely? I knew that any Javascript-based solution would fall short of their security requirements, since it is trivial to reconstruct the URL pattern required to initiate a download, even if the Javascript had removed the option from the menu.  Thus, I had to consider a PL/SQL-based approach - one that could not be bypassed by a malicious end user. To solve this problem, I turned to APEX’s Initialization PL/SQL Code parameter.  Any PL/SQL code entered in this region will be executed before any other APEX-related process.  Thus, it is literally the first place that a developer can interact with an APEX p