|  | 
		This is what i can see from dba_source
 trigger "APPS"."FND_PROFILE_OPTION_VALUES+" before insert or update or delete on "APPLSYS"."FND_PROFILE_OPTION_VALUES#" for each row  declare   l_current varchar2(30) := sys_context('userenv', 'current_edition_name');   l_default varchar2(30); begin    select property_value into l_default   from   database_properties where  property_name = 'DEFAULT_EDITION';   if l_current > l_default and l_current != 'V_20170921_1532' then     raise_application_error(-20002,'Seed Data Table FND_PROFILE_OPTION_VALUES has not been prepared for patching');   end if;   if INSERTING then      :new.zd_edition_name := 'V_20170921_1532';   end if; end;
 |