Tuesday, October 24, 2017

How To Set WHO Column In Oracle Forms

Inorder to set WHO columns you need to have the following 5 columns with your custom tables.

,CREATED_BY                    NUMBER
,CREATION_DATE              DATE
,LAST_UPDATED_BY        NUMBER
,LAST_UPDATE_DATE      DATE
,LAST_UPDATE_LOGIN    NUMBER

With both pre-insert and pre-update Block level triggers call the below code.

begin
    fnd_standard.set_who;
end;

No comments:

Post a Comment

Query to get the list of contexts for each formula type in Oracle Fusion HCM

select t.base_formula_type_name ,      ttl.formula_type_name ,      ttl.description ,      c.base_context_name from   ff_formula_types_b t ,...