47: begin
48: -- User customized data
49: select user_name
50: into l_owner_name
51: from fnd_user
52: where user_id = p_id;
53:
54: exception
55: when no_data_found then
85: begin
86: -- User customized data
87: select user_id
88: into l_user_id
89: from fnd_user
90: where p_name = user_name;
91: return l_user_id;
92: exception
93: when no_data_found then