apex
Dynamically Branching To Pages and Passing Parameters in Application Express
dmann — Mon, 09/13/2010 - 12:51
I have a love/hate relationship with frameworks. Once you get proficient with a framework (like Application Express) you can get a lot done quickly. The framework can also stand in your way if you encounter a bug or maybe a gray area where the Framework wasn't fully fleshed out. Sometimes it takes some digging to find a workaround.
In this case I have a simple reporting application that I built in Application Express. I wanted the user to select a report, then continue to a Criteria screen, enter some date ranges and then hit 'Submit' to render the report. Read more »
Can't leave well enough alone...
dmann — Tue, 05/26/2009 - 12:55
The code is here:
CREATE OR REPLACE FUNCTION GetGraph (p_value IN NUMBER, p_total IN NUMBER DEFAULT 100)
RETURN VARCHAR2
IS
-- David Mann
-- 05/26/2009
-- Create HTML bar graph widget for use in Application Express reports.
-- Has thresholds for yellow and red.
-- Parameters: p_value - Top of ratio fraction or percentage as whole number (0-100)
Read more » Quickie bar graph widget for use in Apex Reports...
dmann — Fri, 05/22/2009 - 13:34
Here is a function that will return the HTML for the widget:
CREATE OR REPLACE FUNCTION GetGraph (p_value IN NUMBER, p_total IN NUMBER)
Read more » Using PL/SQL region in Oracle Application Express
dmann — Thu, 10/02/2008 - 13:05
Getting my feet wet in Apex...
dmann — Tue, 05/13/2008 - 10:37
So the new place I work has some small applications built in Apex. I'm getting ready to build some monitoring tools and wanted to integrate their functionality into the apps that are already available. Read more »
