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 Concurrent Program along with Value Set details

SELECT fcpl1.user_concurrent_program_name       ,fdfcuv.end_user_column_name       ,ffvs.flex_value_set_name value_set_name       ,ffvt.appl...