DBA Data[Home] [Help]

APPS.BEN_MANAGE_DEFAULT_ENRT dependencies on DUAL

Line 1042: from sys.dual;

1038: -- Get Primary Key value
1039: --
1040: select ben_person_actions_s.nextval
1041: into l_person_action_id(l_num_rows)
1042: from sys.dual;
1043: --
1044: -- Extend person_id type
1045: --
1046: l_person_id.extend(1);

Line 1076: from sys.dual;

1072: -- Select next sequence number for the range
1073: --
1074: select ben_batch_ranges_s.nextval
1075: into l_range_id
1076: from sys.dual;
1077: --
1078: -- Calculate start and end points of the range
1079: --
1080: l_start_person_action_id := l_person_action_id(1);

Line 1142: from sys.dual;

1138: -- Get next sequence for the range
1139: --
1140: select ben_batch_ranges_s.nextval
1141: into l_range_id
1142: from sys.dual;
1143: --
1144: l_start_person_action_id := l_person_action_id(1);
1145: l_end_person_action_id := l_person_action_id(l_num_rows);
1146: --