DBA Data[Home] [Help]

APPS.PO_WF_PO_VARIANCE_ACC dependencies on MTL_PARAMETERS

Line 131: from mtl_parameters

127: ((x_item_id is null) and (x_destination_type='SHOP FLOOR')) -- condition for EAM
128: ) then
129: -- Bug 4008665 END
130: select invoice_price_var_account into x_account
131: from mtl_parameters
132: where organization_id = x_dest_org_id;
133: ELSE --treat like an expense item, directly copy the charge account here.
134: x_account:=po_wf_util_pkg.GetItemAttrNumber (
135: itemtype => itemtype,

Line 463: from mtl_parameters

459:
460: IF x_item_id IS NOT NULL THEN
461: BEGIN
462: select invoice_price_var_account into x_account
463: from mtl_parameters
464: where organization_id = x_dest_org_id;
465: EXCEPTION
466: WHEN no_data_found THEN
467: NULL;