DBA Data[Home] [Help]

APPS.MTL_INV_VALIDATE_GRP dependencies on GL_CODE_COMBINATIONS

Line 331: -- the TABLE gl_code_combinations

327: -- TYPE : Private
328: -- Pre-reqs : None
329: -- FUNCTION :
330: -- Validates the adjust account information against
331: -- the TABLE gl_code_combinations
332: -- Parameters:
333: -- IN :
334: -- p_api_version IN NUMBER (required)
335: -- API Version of this procedure

Line 370: FROM gl_code_combinations

366: -- CURSOR FOR the adjustment_account_id
367: CURSOR L_AdjAccountID_Crs(ID IN NUMBER) IS
368: SELECT
369: code_combination_id
370: FROM gl_code_combinations
371: WHERE
372: code_combination_id = id;
373: --
374: -- curosr FOR the individual segments

Line 407: FROM gl_code_combinations

403: seg29 IN VARCHAR2,
404: seg30 IN VARCHAR2) IS
405: SELECT
406: code_combination_id
407: FROM gl_code_combinations
408: WHERE
409: NVL(segment1, '@') = NVL(seg1, '@')
410: AND NVL(segment2, '@') = NVL(seg2, '@')
411: AND NVL(segment3, '@') = NVL(seg3, '@')