DBA Data[Home] [Help]

APPS.GMF_VALIDATE_ACCOUNT dependencies on GMF_GET_MAPPINGS

Line 108: l_of_segments GMF_GET_MAPPINGS.A_segment;

104: e_validation_error EXCEPTION;
105:
106: l_operation VARCHAR2(100);
107:
108: l_of_segments GMF_GET_MAPPINGS.A_segment;
109: BEGIN
110:
111: -- uncomment the call below to write to a local file
112: -- FND_FILE.PUT_NAMES('gmfactmx.log','gmfactmx.out','/sqlcom/log/opm115m');

Line 182: GMF_GET_MAPPINGS.parse_account(p_co_code, l_concat_segs, l_of_segments);

178: * v_no_of_seg => l_segment_count) -- # of segments
179: *;
180: */
181:
182: GMF_GET_MAPPINGS.parse_account(p_co_code, l_concat_segs, l_of_segments);
183:
184: for i in 1..l_of_segments.count loop
185: IF l_of_segments(i) IS NOT NULL THEN
186: l_Segment_array(i) := l_of_segments(i) ;

Line 433: l_opm_account GMF_GET_MAPPINGS.opm_account; -- pl/sql to hold accu and acct ids

429: l_ccid NUMBER; -- variable to hold Code Combination Id
430:
431: l_create_acct PLS_INTEGER;
432:
433: l_opm_account GMF_GET_MAPPINGS.opm_account; -- pl/sql to hold accu and acct ids
434:
435: e_validation_error EXCEPTION;
436: e_invalid_combination EXCEPTION; -- Bug xxx
437: e_invalid_parameters EXCEPTION; -- Bug xxx

Line 489: l_opm_account := GMF_GET_MAPPINGS.parse_ccid(

485: -- if p_create_acct = 'Y', then create accu and acct in OPM and
486: -- return ids.
487: --
488: IF (l_ccid > 0 and l_create_acct = 1) THEN -- Bug xxx
489: l_opm_account := GMF_GET_MAPPINGS.parse_ccid(
490: pi_co_code => p_co_code,
491: pi_code_combination_id => l_ccid,
492: pi_create_acct => l_create_acct
493: );