DBA Data[Home] [Help]

APPS.GMF_VALIDATIONS_PVT dependencies on XLE_ENTITY_PROFILES

Line 2041: * p_legal_entity_id IN xle_entity_profiles.legal_entity_id%TYPE *

2037: * DESCRIPTION *
2038: * This function validates that the Legal Entity Id exists *
2039: * *
2040: * PARAMETERS *
2041: * p_legal_entity_id IN xle_entity_profiles.legal_entity_id%TYPE *
2042: * *
2043: * RETURNS *
2044: * TRUE - If Legal Entity Exists *
2045: * FALSE - If Legal Entity Doesnt Exist *

Line 2052: p_legal_entity_id IN xle_entity_profiles.legal_entity_id%TYPE

2048: * 20-Oct-2005 Anand Thiyagarajan - Created *
2049: ***************************************************************************************/
2050: FUNCTION validate_legal_entity_id
2051: (
2052: p_legal_entity_id IN xle_entity_profiles.legal_entity_id%TYPE
2053: )
2054: RETURN BOOLEAN
2055: IS
2056:

Line 2064: FROM xle_entity_profiles

2060:
2061: CURSOR Cur_legal_entity
2062: IS
2063: SELECT legal_entity_id
2064: FROM xle_entity_profiles
2065: WHERE legal_entity_id = p_legal_entity_id;
2066:
2067: /******************
2068: * Local Variables *

Line 2071: l_legal_entity_id xle_entity_profiles.legal_entity_id%TYPE ;

2067: /******************
2068: * Local Variables *
2069: ******************/
2070:
2071: l_legal_entity_id xle_entity_profiles.legal_entity_id%TYPE ;
2072:
2073: BEGIN
2074: OPEN Cur_legal_entity;
2075: FETCH Cur_legal_entity INTO l_legal_entity_id;

Line 2946: * p_le_id IN xle_entity_profiles.legal_entity_id%TYPE *

2942: * This function gets the alloc id using alloc code and le id *
2943: * *
2944: * PARAMETERS *
2945: * p_Alloc_Code IN gl_aloc_mst.Alloc_Code%TYPE *
2946: * p_le_id IN xle_entity_profiles.legal_entity_id%TYPE *
2947: * *
2948: * RETURNS *
2949: * Alloc Id *
2950: * *

Line 2957: , p_le_id IN xle_entity_profiles.legal_entity_id%TYPE

2953: ***************************************************************************************/
2954: FUNCTION Fetch_Alloc_Id
2955: (
2956: p_Alloc_Code IN gl_aloc_mst.Alloc_Code%TYPE
2957: , p_le_id IN xle_entity_profiles.legal_entity_id%TYPE
2958: )
2959: RETURN NUMBER
2960: IS
2961: CURSOR Cur_Alloc_Id

Line 3006: * p_le_id IN xle_entity_profiles.legal_entity_id%TYPE *

3002: * This function returns the account id for teh account key *
3003: * *
3004: * PARAMETERS *
3005: * p_Basis_account_key IN gl_aloc_bas.Basis_account_key%TYPE *
3006: * p_le_id IN xle_entity_profiles.legal_entity_id%TYPE *
3007: * *
3008: * RETURNS *
3009: * Account Id *
3010: * *

Line 3019: , p_le_id IN xle_entity_profiles.legal_entity_id%TYPE

3015:
3016: FUNCTION Validate_Basis_account_key
3017: (
3018: p_Basis_account_key IN gl_aloc_bas.Basis_account_key%TYPE
3019: , p_le_id IN xle_entity_profiles.legal_entity_id%TYPE
3020: )
3021: RETURN NUMBER
3022: IS
3023:

Line 3074: * p_le_id IN xle_entity_profiles.legal_entity_id%TYPE *

3070: * Validates the account id *
3071: * *
3072: * PARAMETERS *
3073: * p_Basis_account_key IN gl_aloc_bas.Basis_account_key%TYPE *
3074: * p_le_id IN xle_entity_profiles.legal_entity_id%TYPE *
3075: * *
3076: * RETURNS *
3077: * TRUE/FALSE *
3078: * *

Line 3086: , p_le_id IN xle_entity_profiles.legal_entity_id%TYPE

3082:
3083: FUNCTION Validate_ACCOUNT_ID
3084: (
3085: p_Basis_account_id IN gl_aloc_bas.Basis_account_id%TYPE
3086: , p_le_id IN xle_entity_profiles.legal_entity_id%TYPE
3087: )
3088: RETURN BOOLEAN
3089: IS
3090: