DBA Data[Home] [Help]

APPS.BEN_PTP_BUS dependencies on DT_API

Line 943: If (dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode)) then

939: p_argument_value => p_datetrack_mode);
940: --
941: -- Only perform the validation if the datetrack update mode is valid
942: --
943: If (dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode)) then
944: --
945: --
946: -- Ensure the arguments are not null
947: --

Line 1006: -- generic dt_api.rows_exist function then we must supply an error via

1002: -- Processing continues.
1003: --
1004: -- Post Failure:
1005: -- If a row exists by determining the returning Boolean value from the
1006: -- generic dt_api.rows_exist function then we must supply an error via
1007: -- the use of the local exception handler l_rows_exist.
1008: --
1009: -- Developer Implementation Notes:
1010: -- This procedure should not need maintenance unless the HR Schema model

Line 1062: If (dt_api.rows_exist

1058: (p_api_name => l_proc,
1059: p_argument => 'pl_typ_id',
1060: p_argument_value => p_pl_typ_id);
1061: --
1062: If (dt_api.rows_exist
1063: (p_base_table_name => 'ben_ptip_f',
1064: p_base_key_column => 'pl_typ_id',
1065: p_base_key_value => p_pl_typ_id,
1066: p_from_date => p_validation_start_date,

Line 1071: If (dt_api.rows_exist

1067: p_to_date => p_validation_end_date)) Then
1068: l_table_name := 'ben_ptip_f_1';
1069: Raise l_rows_exist;
1070: End If;
1071: If (dt_api.rows_exist
1072: (p_base_table_name => 'ben_pl_f',
1073: p_base_key_column => 'pl_typ_id',
1074: p_base_key_value => p_pl_typ_id,
1075: p_from_date => p_validation_start_date,

Line 1081: If (dt_api.rows_exist

1077: l_table_name := 'ben_pl_f';
1078: Raise l_rows_exist;
1079: End If;
1080: -- 4395957 check existence of rows in ben_pl_typ_opt_typ_f as well.
1081: If (dt_api.rows_exist
1082: (p_base_table_name => 'ben_pl_typ_opt_typ_f',
1083: p_base_key_column => 'pl_typ_id',
1084: p_base_key_value => p_pl_typ_id,
1085: p_from_date => p_validation_start_date,