319: is
320: --
321: Cursor csr_organization is
322: Select null
323: From hr_organization_units
324: Where organization_id = p_organization_id;
325: --
326: --
327: -- The foll cursor checks if the passed organization is present in the passed
341: Begin
342: --
343: hr_utility.set_location('Entering :'||l_proc,5);
344: --
345: -- validate if the organization is in hr_organization_units
346: --
347: Open csr_organization;
348: Fetch csr_organization into l_dummy;
349: If csr_organization%notfound then