DBA Data[Home] [Help]

APPS.IBY_BUILD_UTILS_PKG dependencies on DUAL

Line 288: | field created by appending multiple individual

284: | IN
285: | p_fieldName - The name of the input field (used for logging)
286: | p_fieldValue - The value of the input field
287: | p_isComposite - Indidicates that the field is a composite
288: | field created by appending multiple individual
289: | fields. For composite fields, the field value
290: | will not be printed in the error message.
291: | p_invalid_chars_list - List of invalid characters that
292: | should not be present in the field value

Line 394: FROM DUAL;

390: * Call translate() to filter out the invalid chars.
391: */
392: SELECT translate(p_fieldValue, p_validCharsList, l_val_mask)
393: INTO l_translated_value
394: FROM DUAL;
395:
396: /* strip spaces */
397: l_translated_value := LTRIM(l_translated_value);
398: l_translated_value := RTRIM(l_translated_value);

Line 448: FROM DUAL;

444: * the given string with dummy ones.
445: */
446: SELECT translate(p_fieldValue, p_invalidCharsList, l_inv_mask)
447: INTO l_translated_value
448: FROM DUAL;
449:
450: /*
451: * If the translated value is not equal to the original
452: * field value, it means that there were some invalid