.
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

Vorsätze fürs neue Jahr

Von Tobias Arnhold → 12.31.2011

Neben den zahlreichen Softwareprojekten, werde ich mich auch weiterhin mit neuen Spezialgebieten auseinandersetzen. Ganz oben auf der Liste steht die...

APEX-AT-WORK no image

Kurze Info

Von Tobias Arnhold → 12.21.2011

Blog Update Wie ihr sicher schon gesehen habt, habe ich mein Blog Layout überarbeitet. Ziel war es, die Inhalte besser darzustellen und unnötigen Ballast...

Advanced ways using the Authorization Schemes inside APEX

Advanced ways using the Authorization Schemes inside APEX

Von Tobias Arnhold → 12.05.2011

The standard way to check the authorization is to select the correct scheme inside the security area: What are authorization schemes and how do you...

APEX-AT-WORK no image

Plug-in Bookmark

Von Tobias Arnhold → 12.04.2011

A couple of days ago I released a new simple plug-in. A dynamic action plug-in which allows you to bookmark the current or any other page by running...

Freier Community Zugang für Die Plugin App

Freier Community Zugang für Die Plugin App

Von Tobias Arnhold → 11.30.2011

Nachdem die erste Präsentation sehr erfolgreich verlaufen ist und das Feedback sehr positiv war. Möchte ich nun die Anwendung für den Rest der APEX Community...

APEX-AT-WORK no image

Simple generic SQL solutions

Von Tobias Arnhold → 11.27.2011

Just saw this nice script to generate INSERT statements by a function call: PL/SQL code to generate Oracle insert statements from existing table data Another...

Disable CKEditor 3 (Rich Text Editor) inside APEX

Disable CKEditor 3 (Rich Text Editor) inside APEX

Von Tobias Arnhold → 11.09.2011

If you want to disable the "Richt Text Editor" inside APEX and still show everything in the right HTML format. Just add this code snippet inside the...

Eigene URLs und Bilder im APEX Report abbilden

Eigene URLs und Bilder im APEX Report abbilden

Von Tobias Arnhold → 10.18.2011

Wie bereits Gestern erwähnt, bin ich in den letzten Zügen der Entwicklung für die "Plugin App". Heute wollte ich aus ein paar hässlichen Buttons ein...

Erinnerung: APEX Workshop vom 24.10. bis 26.10.2011

Erinnerung: APEX Workshop vom 24.10. bis 26.10.2011

Von Tobias Arnhold → 10.17.2011

Nochmal die Erinnerung: Vom 24. bis zum 26.10.2011 findet der "Oracle APEX: Knowhow aus der Praxis" Workshop in Bensheim statt. Ich halte am Montag...

Looking for UILayout plug-in beta tester (APEX 4.1 only)

Looking for UILayout plug-in beta tester (APEX 4.1 only)

Von Tobias Arnhold → 10.17.2011

I added some fixes to the UILayout plug-in in combination with APEX 4.1 and the Interactive Report appearance. I'm quite busy with the Plugin App and...

Die nächsten Plugins für "Die Pugin App"

Von Tobias Arnhold → 9.25.2011

Die Plugin App hat einen schon recht hohen Reifegrad erreicht. Da ich aber noch bis Ende Oktober Zeit habe, werde ich noch versuchen ein paar weitere...

Oracle APEX: Knowhow aus der Praxis

Oracle APEX: Knowhow aus der Praxis

Von Tobias Arnhold → 9.21.2011

Es ist wieder soweit, zwischen dem 24. und dem 26.10.2011 findet der "Oracle APEX: Knowhow aus der Praxis" Workshop in Bensheim statt: Diesmal mit...

What happens in 4 years

What happens in 4 years

Von Tobias Arnhold → 9.14.2011

Since 2008 I write about APEX, Javascript and PL/SQL and still like it a lot. It seems that people think that I do right:If people around the world like...

Logbuch mit neuem Plugin

Logbuch mit neuem Plugin

Von Tobias Arnhold → 9.14.2011

Bei der Entwicklung der Logbuchanwendung habe ich auch gleich ein kleines aber feines Plugin mit integriert, dass es so nicht als Download zu haben gibt.Es...

Logbuch - Die Plugin App

Logbuch - Die Plugin App

Von Tobias Arnhold → 9.11.2011

Ich arbeite mit ein paar Freunden derzeit an einer Applikation die sich Logbuch nennt und das Ziel hat, möglichst viele APEX Plugins in einer Business...

IRR: Remove single rule

IRR: Remove single rule

Von Tobias Arnhold → 8.09.2011

If you want to remove easily a single rule inside your interactive report then use this javascript code snippet: $('a:contains(Vorname ist Null)').parent().parent().remove(); Customized...

APEX-AT-WORK no image

Check if part of a string has only number values

Von Tobias Arnhold → 8.06.2011

I had the requirement to find out if a part of a string includes only number values:Table: My_Test_String_TableColumn: T_STRString 1: TIGER031STDString...

APEX-AT-WORK no image

How to find duplicate rows?

Von Tobias Arnhold → 6.08.2011

Basically with a single table you do like this:SELECT COLUMN_A, COLUMN_B, COUNT(*)FROM MY_TABLEGROUP BY COLUMN_A, COLUMN_BHAVING COUNT(*)>1;If you...

APEX-AT-WORK no image

Check ob Flash installiert ist

Von Tobias Arnhold → 6.06.2011

Ich habe vor ein paar Tagen ne interessante Frage gestellt bekommen:"Wie überprüft man in Apex, ob ein Flash Plugin installiert ist?"Antwort:Einen Standard-Check...

APEX-AT-WORK no image

Two ways using string to table in APEX selects

Von Tobias Arnhold → 5.03.2011

First wayThis example uses "REGULAR expressions" and the "connect by" clause. Perfect when you select on columns including lists.Forum entry: http://forums.oracle.com/forums/thread.jspa?messageID=9494074WITH...

APEX-AT-WORK no image

ORA-00001, WWV_FLOW_DATA_IDX1, ERR-1029

Von Tobias Arnhold → 4.13.2011

Troubleshooting the following APEX error:ORA-00001: unique constraint (APEX_040000.WWV_FLOW_DATA_IDX1) violatedERR-1029 Speichern von Sessioninformationen...

APEX-AT-WORK no image

Handling the 32k problem in APEX charts

Von Tobias Arnhold → 4.03.2011

How to handle more then 32k (32768) characters inside your APEX charts: AnyChart gantt with custom xml and more then 32kWorkaround: - Create your own...

Customize Interactive report header graphic

Customize Interactive report header graphic

Von Tobias Arnhold → 3.22.2011

Create a new image called report_bg_red.gif:Add this inside your page header to exchange the IRR default image:.apexir_WORKSHEET_DATA th { background:...

APEX-AT-WORK no image

APEX bug with APEX_ITEM and POPUPKEY_FROM_LOV

Von Tobias Arnhold → 3.17.2011

Try to set two POPUPKEY_FROM_LOVs beside each other with the column ids: 2,3selectAPEX_ITEM.CHECKBOX (1,ac.ac_id) as ac_id,APEX_ITEM.POPUPKEY_FROM_LOV(2,ac.application_key,'lov_apps',50)...

New plug-in "Add favorite"

Von Tobias Arnhold → 3.16.2011

Have you ever looked for a solution to create an "add favorite"-button which let the user bookmark your website. You probably found out that each browser...

APEX-AT-WORK no image

Nice button solutions

Von Tobias Arnhold → 3.15.2011

Just saw this nice compilation of HTML/CSS button solutions.speckyboy.com: http://speckyboy.com/2009/05/27/22-css-button-styling-tutorials-and-techn...

APEX-AT-WORK no image

How can we help Japan?

Von Tobias Arnhold → 3.12.2011

To help the suffering people of Japan my applications from now on "cost" a donation (no matter how small or big) via any aid organisation of Your own...

APEX-AT-WORK no image

Range Slider Plug-in for APEX?

Von Tobias Arnhold → 3.08.2011

I'm a bit surprised that there is no range slider plug-in for APEX yet. At least I couldn't find one.There are a couple of nice examples out there in...

Hide Interactive Report filter dynamically after page load

Hide Interactive Report filter dynamically after page load

Von Tobias Arnhold → 2.28.2011

To hide IRR filters always after the page load just use this little JS code inside a dynamic action (event: "Page Load")/* Hide IRR filter after page...

Interactive Report Header problem with multiple lines

Interactive Report Header problem with multiple lines

Von Tobias Arnhold → 2.28.2011

There is a bug/misbehavior inside the IRR column headers in APEX 4. When you create column names with linebreaks (using the <br> tag) inside then...

APEX-AT-WORK no image

ORA-20503 im APEX Application Builder

Von Tobias Arnhold → 2.25.2011

Falls Sie auf den Fehler ORA-20503 während der Arbeit im APEX Application Builder treffen, dann wird ihnen dieser Blogeintrag hoffentlich viel Ärger...

APEX-AT-WORK no image

Clear the page cache with PL/SQL

Von Tobias Arnhold → 2.24.2011

I just stumbled into a problem where I needed to clear the page cache inside an APEX PL/SQL process.It is quite easy if you know how:APEX_UTIL.CLEAR_PAGE_CACHE...

APEX-AT-WORK no image

Freeze panes example

Von Tobias Arnhold → 2.23.2011

Just saw the nice looking freeze panes example of Andy (ATD) in the Oracle APEX forum.It is to good to not being mentioned. Example:http://apex.oracle.com/pls/otn/f?p=267:47For...

APEX-AT-WORK no image

UILayout Plug-in update is online

Von Tobias Arnhold → 1.22.2011

A new version of the UILayout plug-in for APEX is online on www.apex-plugin.com: UILayout 1.1 - UpdateI added a couple of features. Like sizing, disabling...

UILayout Plugin Design Issues

UILayout Plugin Design Issues

Von Tobias Arnhold → 1.09.2011

I finished the first part of the UILayout Plug-in. For me it is the first plug-in as well. Any feedback is much appreciated.It handles the initialization...

Page 1 of 5112351Next »