DBA Data[Home] [Help]

APPS.GHR_GROUPBOXES_AU dependencies on GHR_API

Line 5: ghr_api.ghr_gbx_index := ghr_api.ghr_gbx_index + 1;

1: trigger GHR_GROUPBOXES_AU
2: after update on ghr_groupboxes
3: for each row
4: begin
5: ghr_api.ghr_gbx_index := ghr_api.ghr_gbx_index + 1;
6: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).groupbox_id
7: := :new.groupbox_id;
8: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).name := :new.name;
9: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).display_name := :new.display_name;

Line 6: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).groupbox_id

2: after update on ghr_groupboxes
3: for each row
4: begin
5: ghr_api.ghr_gbx_index := ghr_api.ghr_gbx_index + 1;
6: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).groupbox_id
7: := :new.groupbox_id;
8: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).name := :new.name;
9: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).display_name := :new.display_name;
10: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).description := :new.description;

Line 8: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).name := :new.name;

4: begin
5: ghr_api.ghr_gbx_index := ghr_api.ghr_gbx_index + 1;
6: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).groupbox_id
7: := :new.groupbox_id;
8: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).name := :new.name;
9: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).display_name := :new.display_name;
10: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).description := :new.description;
11:
12: -- BUG # 14479249 added old details

Line 9: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).display_name := :new.display_name;

5: ghr_api.ghr_gbx_index := ghr_api.ghr_gbx_index + 1;
6: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).groupbox_id
7: := :new.groupbox_id;
8: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).name := :new.name;
9: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).display_name := :new.display_name;
10: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).description := :new.description;
11:
12: -- BUG # 14479249 added old details
13: ghr_api.ghr_gbx_old_tab(ghr_api.ghr_gbx_index).name := :old.name;

Line 10: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).description := :new.description;

6: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).groupbox_id
7: := :new.groupbox_id;
8: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).name := :new.name;
9: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).display_name := :new.display_name;
10: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).description := :new.description;
11:
12: -- BUG # 14479249 added old details
13: ghr_api.ghr_gbx_old_tab(ghr_api.ghr_gbx_index).name := :old.name;
14: ghr_api.ghr_gbx_old_tab(ghr_api.ghr_gbx_index).display_name := :old.display_name;

Line 13: ghr_api.ghr_gbx_old_tab(ghr_api.ghr_gbx_index).name := :old.name;

9: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).display_name := :new.display_name;
10: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).description := :new.description;
11:
12: -- BUG # 14479249 added old details
13: ghr_api.ghr_gbx_old_tab(ghr_api.ghr_gbx_index).name := :old.name;
14: ghr_api.ghr_gbx_old_tab(ghr_api.ghr_gbx_index).display_name := :old.display_name;
15: ghr_api.ghr_gbx_old_tab(ghr_api.ghr_gbx_index).description := :old.description;
16: end GHR_GROUPBOXES_AU;

Line 14: ghr_api.ghr_gbx_old_tab(ghr_api.ghr_gbx_index).display_name := :old.display_name;

10: ghr_api.ghr_gbx_tab(ghr_api.ghr_gbx_index).description := :new.description;
11:
12: -- BUG # 14479249 added old details
13: ghr_api.ghr_gbx_old_tab(ghr_api.ghr_gbx_index).name := :old.name;
14: ghr_api.ghr_gbx_old_tab(ghr_api.ghr_gbx_index).display_name := :old.display_name;
15: ghr_api.ghr_gbx_old_tab(ghr_api.ghr_gbx_index).description := :old.description;
16: end GHR_GROUPBOXES_AU;

Line 15: ghr_api.ghr_gbx_old_tab(ghr_api.ghr_gbx_index).description := :old.description;

11:
12: -- BUG # 14479249 added old details
13: ghr_api.ghr_gbx_old_tab(ghr_api.ghr_gbx_index).name := :old.name;
14: ghr_api.ghr_gbx_old_tab(ghr_api.ghr_gbx_index).display_name := :old.display_name;
15: ghr_api.ghr_gbx_old_tab(ghr_api.ghr_gbx_index).description := :old.description;
16: end GHR_GROUPBOXES_AU;