DBA Data[Home] [Help]

APPS.CSE_UTIL_PKG dependencies on MTL_PARAMETERS

Line 391: FROM mtl_parameters

387: l_neg_code NUMBER := 0;
388:
389: cursor c_code (pc_org_id in NUMBER) is
390: SELECT negative_inv_receipt_Code
391: FROM mtl_parameters
392: WHERE organization_id = pc_org_id;
393:
394: r_code c_code%rowtype;
395:

Line 724: FROM mtl_parameters

720: e_procedure_error EXCEPTION;
721:
722: CURSOR c_name is
723: SELECT organization_code
724: FROM mtl_parameters
725: WHERE organization_id = p_organization_id;
726:
727: r_name c_name%rowtype;
728:

Line 731: FROM mtl_parameters

727: r_name c_name%rowtype;
728:
729: CURSOR c_id IS
730: SELECT master_organization_id
731: FROM mtl_parameters
732: WHERE organization_id = p_organization_id;
733:
734: r_id c_id%rowtype;
735: