DBA Data[Home] [Help]

APPS.GHR_HISTORY_API dependencies on GHR_API

Line 1429: -- Set ghr_api.g_api_dml to TRUE to bypass Position and Person EI validation

1425: Procedure Post_forms_commit_process( p_eff_date in date) is
1426: l_session_var g_session_var_type;
1427: Begin
1428:
1429: -- Set ghr_api.g_api_dml to TRUE to bypass Position and Person EI validation
1430: -- trigger to be fired. This must be set only before post_update_process and
1431: -- not in the form so that validation trigger gets fired for the first time
1432: -- but not at the time of cascacade.
1433: ghr_api.g_api_dml := TRUE;

Line 1433: ghr_api.g_api_dml := TRUE;

1429: -- Set ghr_api.g_api_dml to TRUE to bypass Position and Person EI validation
1430: -- trigger to be fired. This must be set only before post_update_process and
1431: -- not in the form so that validation trigger gets fired for the first time
1432: -- but not at the time of cascacade.
1433: ghr_api.g_api_dml := TRUE;
1434:
1435: Post_update_process;
1436: reinit_g_session_var;
1437:

Line 1438: ghr_api.g_api_dml := FALSE;

1434:
1435: Post_update_process;
1436: reinit_g_session_var;
1437:
1438: ghr_api.g_api_dml := FALSE;
1439: new_form_instance_process;
1440:
1441: end post_forms_commit_process;
1442: