DBA Data[Home] [Help]

APPS.IBU_SR_UTIL dependencies on DUAL

Line 41: select lengthb(p_string(i)) into l_length from dual;

37: For i in p_string.FIRST..p_string.LAST Loop
38: l_out_array(i) := 'S';
39: l_length := 0;
40: If p_string(i) Is Not Null Then
41: select lengthb(p_string(i)) into l_length from dual;
42:
43: If l_length > p_max_byte(i) Then
44: l_out_array(i) := 'F';
45: End If;