Book a Demo

Author Topic: Ripping ('%') of the Initial Code field  (Read 3275 times)

Jan Holub

  • EA Novice
  • *
  • Posts: 6
  • Karma: +0/-0
    • View Profile
Ripping ('%') of the Initial Code field
« on: July 15, 2009, 11:48:28 pm »
Dear friends,
I have serious issue with writing Oracle trigger code in the Initial Code field. After saving and re-opening the entire code there is percentage character ('%') always ripped of!
Try type something like this in the Initial Code field:

CREATE OR REPLACE TRIGGER MY_TRIGGER
 BEFORE INSERT
 ON MY_TABLE
 FOR EACH ROW
DECLARE
  some_declared_variable db.MY_OTHER_TABLE%rowtype;
BEGIN
  --some code doing something
  if something then
    doig somethig...
  end if;
END MY_TRIGGER;


...after saving and reopening the character % from part MY_OTHER_TABLE%rowtype will be missing. Does anybody know any workaround about this bug?
Thank you very much!
Jan.

Takeshi K

  • EA User
  • **
  • Posts: 632
  • Karma: +43/-1
    • View Profile
    • Sparx Systems Japan
Re: Ripping ('%') of the Initial Code field
« Reply #1 on: July 16, 2009, 05:52:39 am »
Maybe The issue was fixed yesterday, please try the latest build 846.

--
t-kouno