DBA Data[Home] [Help]

APPS.OKL_AM_CUSTOM_RMK_ASSET_PVT dependencies on ORG_ORGANIZATION_DEFINITIONS

Line 54: FROM ORG_ORGANIZATION_DEFINITIONS

50:
51: -- This cursor is used to validate an organization Id against mtl_organization
52: CURSOR l_mtlorgcsr(cp_org_id NUMBER) IS
53: SELECT organization_name
54: FROM ORG_ORGANIZATION_DEFINITIONS
55: WHERE organization_id = cp_org_id;
56:
57:
58:

Line 622: FROM mtl_parameters a , ORG_ORGANIZATION_DEFINITIONS b

618: AND secondary_inventory_name = p_subinv_code;
619:
620: CURSOR l_mtlparam_csr(p_org_id NUMBER) IS
621: SELECT a.master_organization_id, b.organization_name master_org_name
622: FROM mtl_parameters a , ORG_ORGANIZATION_DEFINITIONS b
623: WHERE a.organization_id = p_org_id
624: AND a.master_organization_id = b.organization_id ;
625:
626:

Line 652: l_master_org_name ORG_ORGANIZATION_DEFINITIONS.organization_name%TYPE;

648: l_api_name CONSTANT VARCHAR2(30) := 'create_inv_item';
649: l_api_version CONSTANT NUMBER := 1;
650: ---
651: l_master_org_id NUMBER;
652: l_master_org_name ORG_ORGANIZATION_DEFINITIONS.organization_name%TYPE;
653: l_iterations NUMBER;
654: l_current_org NUMBER;
655: l_current_org_name ORG_ORGANIZATION_DEFINITIONS.organization_name%TYPE; -- SECHAWLA 08-DEC-04 4047159
656: l_item_id NUMBER;

Line 655: l_current_org_name ORG_ORGANIZATION_DEFINITIONS.organization_name%TYPE; -- SECHAWLA 08-DEC-04 4047159

651: l_master_org_id NUMBER;
652: l_master_org_name ORG_ORGANIZATION_DEFINITIONS.organization_name%TYPE;
653: l_iterations NUMBER;
654: l_current_org NUMBER;
655: l_current_org_name ORG_ORGANIZATION_DEFINITIONS.organization_name%TYPE; -- SECHAWLA 08-DEC-04 4047159
656: l_item_id NUMBER;
657: l_New_Item_Number VARCHAR2(2000);
658: l_New_Item_Id NUMBER;
659: l_temp VARCHAR2(25);