DBA Data[Home] [Help]

APPS.PO_ORGS_SV dependencies on MTL_INTERORG_PARAMETERS

Line 237: x_intransit_type mtl_interorg_parameters.intransit_type%type;

233: RETURN BOOLEAN IS
234:
235: X_progress varchar2(3) := '';
236: x_org_count NUMBER := 0;
237: x_intransit_type mtl_interorg_parameters.intransit_type%type;
238:
239: BEGIN
240:
241: /*

Line 322: ** mtl_interorg_parameters for the source

318:
319:
320: /*
321: ** Validate that there is a row in
322: ** mtl_interorg_parameters for the source
323: ** and destination organization combination.
324: */
325:
326: x_org_count := 0;

Line 331: FROM mtl_interorg_parameters mip

327: x_progress := '030';
328:
329: SELECT mip.intransit_type
330: INTO x_intransit_type
331: FROM mtl_interorg_parameters mip
332: WHERE mip.from_organization_id = x_src_org_id
333: AND mip.to_organization_id = x_dest_org_id;
334:
335: