662: x_return_status OUT NOCOPY VARCHAR2 ) IS
663:
664: CURSOR c_currency_code IS
665: SELECT currency_code
666: FROM gl_sets_of_books a,
667: hr_operating_units b
668: WHERE a.NAME = b.NAME
669: AND b.organization_id = p_org_id;
670:
4616:
4617: begin
4618: select currency_code
4619: into l_from_currency
4620: from gl_sets_of_books
4621: where name = p_ou;
4622: exception
4623: when no_data_found then
4624: x_value := p_value;