Wednesday, April 24, 2013

Inhalt des ersten Treffens der APEX UserGroup Düsseldorf

Am 06.05. (in 1,5 Wochen) findet das erste Treffen der APEX UserGroup Düsseldorf (AUGD) in Ratingen statt.
Folgende Themen stehen als ca. 20minütige Vorträge auf dem Programm:
  • APEX 4.2.1: was ist neu - Oliver Lemm
  • Komplexe Dialoge mittels FOEX realisieren - Niels des Bruijn
  • Ausgabe in Excel leicht gemacht mit dem Spreadsheet Publisher - Dietmar Aust
In der zweiten Stunde soll ein Austausch zwischen den Besuchern des Treffens möglich sein.

Es findet von 18-20Uhr auf der Balcke-Dürr-Allee 9 in 40882 Ratingen statt.
Innerhalb XING ist sowohl die Gruppe, als auch der Termin vorhanden:
Zusätzlich wird zu diesem Termin auch über die DOAG eingeladen, der Link zum Anmelden ist hier zu finden:
Danke an dieser Stelle an Stefan Kinnen für das Angebot den Termin auch über die DOAG public zu machen.

Eine von beiden Anmeldungen reicht vollkommen aus. Zur Vernetzung wäre es dennoch hilfreich über XING der Gruppe beizutreten.

Tuesday, April 16, 2013

The problem of strings with more than 4000 chars in different regions

When you create an object (item, process, validation, ...) in APEX with the application builder there are properties like messages, conditions and comments. These properties using a string with more than 4000 characters will encounter an error like that:

Even when you use an item Value like


 and the value of this item is longer than 4000 characters, it will result in runtime in this error:

In my case i had to print out a message for the user which could be longer than the 4000 characters.
One solution for my case was to use jQuery and Dynamic Actions to print out the content of an item.
I created the Dynamic Action on the Global Page (Page 0) with these attributes:
The JavaScript Code is:  $('.uMessageText').append($v('P0_TEST'));
Of course there are other ways like described in my oracle-forum thread, but i hope the next apex versions will solve these problems.