.
Featured
Von Tobias Arnhold → 11.08.2008

Mein Name ist Tobias Arnhold. Ich möchte Ihnen meine Fähigkeiten und Aktivitäten in der Community in diesem Post kurz aufzeigen. Weitere...

Browsing "Older Posts"

APEX-AT-WORK no image

APEX 5.0 - Statement Of Direction

Von Tobias Arnhold → 12.04.2012

A new statement of direction is available for APEX 5.0: http://www.oracle.com/technetwork/developer-tools/apex/application-express/apex-sod-087560.h...

Pivot Beispielapplikation ist Online

Pivot Beispielapplikation ist Online

Von Tobias Arnhold → 10.25.2012

Ich habe endlich etwas Zeit gefunden die Anwendung online zu bringen. Hier ist der Link: http://apex.oracle.com/pls/apex/f?p=65580 Aktuell arbeite...

APEX-AT-WORK no image

Pivot Beispielapplikation

Von Tobias Arnhold → 10.17.2012

Hallo Zusammen, im Zuge der letzten APEX SIG habe ich meine Pivot Anwendung als Packaged App fertiggestellt. Wer noch Interesse an einer Kopie hat, der...

Hide Interactive Report Column with jQuery

Hide Interactive Report Column with jQuery

Von Tobias Arnhold → 10.17.2012

$(".apexir_WORKSHEET_DATA").find("[headers='COLUMN_NAME']").hide(); $('#COLUMN_NAME').hide(); Why would you need this? In case the end user wants to...

APEX SIG Event am 26.09

APEX SIG Event am 26.09

Von Tobias Arnhold → 9.18.2012

Nicht vergessen am 26.09 findet ein SIG Development Day zum Thema APEX statt. Mein Thema befasst sich mit APEX und Pivot Reports: Aktuell arbeite...

Check-box bug in tabular form

Check-box bug in tabular form

Von Tobias Arnhold → 9.17.2012

I don't know if this is a environment problem or a general one. Anyway it is mad and took me a long while to find out what it is. Here we go:  -...

HowTo: Dynamisch berechnete Werte setzen

HowTo: Dynamisch berechnete Werte setzen

Von Tobias Arnhold → 9.16.2012

Wie berechne ich während der Laufzeit neue Werte und aktualisierte anschließend meine APEX Items. Die Lösung für diese Fragestellung ist recht einfach,...

PDF Creation with direct print dialog

PDF Creation with direct print dialog

Von Tobias Arnhold → 9.12.2012

This solution is based on the usage of Jasper Reports to create PDF reports inside APEX. You may had the requirement to create a PDF document with...

Balken Chart (Progress Bar) - Hidden Feature

Balken Chart (Progress Bar) - Hidden Feature

Von Tobias Arnhold → 8.28.2012

Viele von euch kennen bestimmt die Balken-Grafik die Ihr innerhalb eines APEX Reports erstellen könnt: Zu diesem Thema gibt es einige sehr gute Anleitungen: EN: http://www.inside-oracle-apex.com/more-undocumented-new-features-in-oracle-apex-31/#high_2...

APEX-AT-WORK no image

APEX Tabular Forms mit Before Insert Trigger

Von Tobias Arnhold → 8.20.2012

In vielen meiner Projekte nutze ich Tabular Forms. Bei Standardspalten wie "geändert am" oder "geändert von" ist es leider nicht ohne weiteres möglich...

APEX-AT-WORK no image

Neue Version des SQL Developers (3.2)

Von Tobias Arnhold → 8.20.2012

Es gibt eine neue Version des Oracle SQL Developers: http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/index.html Neben vielen...

IR Bug after import of an application with new id

IR Bug after import of an application with new id

Von Tobias Arnhold → 8.07.2012

Today I discovered a really cruel bug in APEX. We migrated an APEX 4.0 application into a new workspace with APEX 4.1. The application got a new application...

APEX-AT-WORK no image

Getting APEX views

Von Tobias Arnhold → 7.03.2012

There is a easy way getting all APEX views just with a simple select: select apex_view_name, comments from apex_dictionary where column_id = 0 order...

First release of the PL-jrxml2pdf - Generate iReport PDFs with PL/SQL only

First release of the PL-jrxml2pdf - Generate iReport PDFs with PL/SQL only

Von Tobias Arnhold → 6.29.2012

A while ago I wrote about and development idea creating iReport (Jasper Report) PDF-files directly inside APEX (PL/SQL). Andreas Weiden the brain and...

APEX-AT-WORK no image

Tabular Form - Validation issue

Von Tobias Arnhold → 6.28.2012

I'm currently have some questions about TABULAR FORM validations. I my questions inside the APEX forum: https://forums.oracle.com/forums/thread.jspa?threadID=2407939 Questions: 1....

Easy table export to XLS (based on HTML)

Easy table export to XLS (based on HTML)

Von Tobias Arnhold → 6.22.2012

There is a quite easy way to generate nice looking Excel files based on your APEX reports. It doesn't require any special printing engine and should...

Select table and column comments (Oracle SQL)

Select table and column comments (Oracle SQL)

Von Tobias Arnhold → 6.07.2012

My default development client is the Oracle SQL Developer. If I compare it with TOAD it is slim, free to use and includes a table modeling area. One...

APEX IR - Date Filter usage like String columns

APEX IR - Date Filter usage like String columns

Von Tobias Arnhold → 5.25.2012

If you want to filter date values like this: Then extend the code to your date columns (inside the region source) like this:   My date column...

APEX-AT-WORK no image

The IN operator trap

Von Tobias Arnhold → 5.23.2012

If you look for workarounds when you reach the edge of the IN operator functionality then take a look here: http://www.williamrobertson.net/documents/comma-separated.html A...

APEX-AT-WORK no image

Shift Left example with Oracle SQL

Von Tobias Arnhold → 5.13.2012

I'm currently working on a integration of the jQuery Real Person (Captcha) plugin into APEX. On the server side I had to execute a shift left. Which...

APEX-AT-WORK no image

Cloud Plugin Plugin Extension

Von Tobias Arnhold → 5.10.2012

I really like the Label Cloud Plugin by Carsten Czarski but a customer complained that there are not so much visual differences by words when the occurences...

APEX-AT-WORK no image

APEX simple cookie example

Von Tobias Arnhold → 5.09.2012

This is an example for the use of a simple cookie which gets created after submit when click on a button. Afterwards a region inside my page shouldn't...

APEX-AT-WORK no image

APEX Competition Reminder

Von Tobias Arnhold → 5.08.2012

Less then one week is left and only 4 plugins has made there way to the competition: http://www.apex-plugin.com/oracle-apex-plugins/odtug-competition.html That...

APEX-AT-WORK no image

Using jQuery and Regular Expression to validate form fields

Von Tobias Arnhold → 5.03.2012

This is a simple example to validate an APEX item with regular expressions (on client side): v_text = $('#P1_MY_ITEM').val(); v_regex = /^[a-zA-Z0-9_...

APEX-AT-WORK no image

APEX report column with %-sign

Von Tobias Arnhold → 5.01.2012

If you want to beautify your number column inside an APEX report with a percent-sign then most of you would do like this:   select column_name...

APEX-AT-WORK no image

Customized APEX workspace login

Von Tobias Arnhold → 4.27.2012

There is a easy way to set up your APEX workspace login URL so that you reach a special page inside your application builder. The following URL example...

APEX-AT-WORK no image

Using IReport without the Jasper Report Server inside APEX

Von Tobias Arnhold → 4.17.2012

There is a nice development going on to include the created IReport (from Jasper Reports) templates with a PL/SQL PDF Generator. For more information...

APEX-AT-WORK no image

Client IP Adresse in APEX auslesen

Von Tobias Arnhold → 4.09.2012

Um die Client-IP-Adresse mit Hilfe von PL/SQL auszulesen, können Sie zwei unterschiedliche Prozeduren verwenden: select owa_util.get_cgi_env('REMOTE_ADDR') from...

Page 1 of 5112351Next »