DBA Data[Home] [Help]

APPS.OTA_TPL_BUS dependencies on OTA_GENERAL

Line 187: ota_general.check_domain_value ('TRAINING_UNIT',p_tu_type);

183: end if;
184: if p_tu_type is null then
185: constraint_error2('training_unit_type_should_be_populated');
186: end if;
187: ota_general.check_domain_value ('TRAINING_UNIT',p_tu_type);
188: elsif p_type = 'M' then
189: if p_price is not null then
190: constraint_error2('single_unit_price_should_be_null');
191: end if;

Line 211: ota_general.check_currency_is_valid(p_currency_code => p_currency);

207: --
208: if p_currency is null then
209: constraint_error2('currency_must_be_populated');
210: else
211: ota_general.check_currency_is_valid(p_currency_code => p_currency);
212: end if;
213: --
214: end check_currency;
215: --==============================================================================