DBA Data[Home] [Help]

APPS.INVIDIT1 dependencies on HR_ORGANIZATION_UNITS

Line 329: from mtl_parameters mp, hr_organization_units hr

325: X_org_encumbrance_account,
326: X_org_sales_account,
327: X_org_expense_account,
328: X_master_org_name
329: from mtl_parameters mp, hr_organization_units hr
330: where mp.organization_id = master_org
331: and mp.organization_id = hr.organization_id;
332:
333: -- Get this info for the current org

Line 767: from hr_organization_units

763: if (X_default_shipping_org is not null) then
764: begin
765: select name
766: into X_default_shipping_org_dsp
767: from hr_organization_units
768: where organization_id = X_default_shipping_org;
769: exception
770: when NO_DATA_FOUND then
771: X_default_shipping_org_dsp := null;

Line 823: from hr_organization_units hou

819: if (X_source_organization_id is not null) then
820: begin
821: select mp.organization_code,hou.name
822: into X_source_organization, X_source_org_name
823: from hr_organization_units hou
824: ,mtl_parameters mp
825: where hou.organization_id = mp.organization_id
826: and mp.organization_id = X_source_organization_id;
827: exception