I have an application in Apex 4.2 that contains a page with a form to submit data to a table. This table has a trigger "BEFORE INSERT OR UPDATE ON MY_TABLE FOR EACH ROW" used to get user and date.
Now, for each record I add using that page and form the trigger is saving into :NEW.user_ins this value "APEX_PUBLIC_USER".
IF INSERTING THEN
:NEW.dt\_ins := SYSDATE;
IF :NEW.user\_ins IS NULL THEN
:NEW.user\_ins := nvl(wwv\_flow.g\_user,user);
END IF;
END IF;
Page is not public so I think there's not reason to use that value.

Does anyone know the reason of this?
Sergio