DBA Data[Home] [Help]

APPS.IBY_BUILD_UTILS_PKG dependencies on DUAL

Line 317: | field created by appending multiple individual

313: | IN
314: | p_fieldName - The name of the input field (used for logging)
315: | p_fieldValue - The value of the input field
316: | p_isComposite - Indidicates that the field is a composite
317: | field created by appending multiple individual
318: | fields. For composite fields, the field value
319: | will not be printed in the error message.
320: | p_invalid_chars_list - List of invalid characters that
321: | should not be present in the field value

Line 431: FROM DUAL;

427: * Call translate() to filter out the invalid chars.
428: */
429: SELECT translate(p_fieldValue, p_validCharsList, l_val_mask)
430: INTO l_translated_value
431: FROM DUAL;
432:
433: /* strip spaces */
434: l_translated_value := LTRIM(l_translated_value);
435: l_translated_value := RTRIM(l_translated_value);

Line 489: FROM DUAL;

485: * the given string with dummy ones.
486: */
487: SELECT translate(p_fieldValue, p_invalidCharsList, l_inv_mask)
488: INTO l_translated_value
489: FROM DUAL;
490:
491: /*
492: * If the translated value is not equal to the original
493: * field value, it means that there were some invalid