DBA Data[Home] [Help]

APPS.GCS_DATA_PREP_PKG dependencies on FND_FILE

Line 33: fnd_file.put_line(fnd_file.log,

29: p_repeat_flag VARCHAR2) RETURN VARCHAR2 IS
30: l_index_column_name VARCHAR2(30);
31: l_dim_text VARCHAR2(5000);
32: BEGIN
33: fnd_file.put_line(fnd_file.log,
34: '============================================');
35: fnd_file.put_line(fnd_file.log,
36: 'GCS_DATA_PREP_PKG::get_dimension_text -- Enter');
37: fnd_file.put_line(fnd_file.log, 'p_prefix := ' || p_prefix);

Line 35: fnd_file.put_line(fnd_file.log,

31: l_dim_text VARCHAR2(5000);
32: BEGIN
33: fnd_file.put_line(fnd_file.log,
34: '============================================');
35: fnd_file.put_line(fnd_file.log,
36: 'GCS_DATA_PREP_PKG::get_dimension_text -- Enter');
37: fnd_file.put_line(fnd_file.log, 'p_prefix := ' || p_prefix);
38: fnd_file.put_line(fnd_file.log, 'p_suffix := ' || p_suffix);
39: fnd_file.put_line(fnd_file.log, 'p_repeat_flag := ' || p_repeat_flag);

Line 37: fnd_file.put_line(fnd_file.log, 'p_prefix := ' || p_prefix);

33: fnd_file.put_line(fnd_file.log,
34: '============================================');
35: fnd_file.put_line(fnd_file.log,
36: 'GCS_DATA_PREP_PKG::get_dimension_text -- Enter');
37: fnd_file.put_line(fnd_file.log, 'p_prefix := ' || p_prefix);
38: fnd_file.put_line(fnd_file.log, 'p_suffix := ' || p_suffix);
39: fnd_file.put_line(fnd_file.log, 'p_repeat_flag := ' || p_repeat_flag);
40: fnd_file.put_line(fnd_file.log, 'Beginning of parameters ');
41: fnd_file.put_line(fnd_file.log, 'End of parameters ');

Line 38: fnd_file.put_line(fnd_file.log, 'p_suffix := ' || p_suffix);

34: '============================================');
35: fnd_file.put_line(fnd_file.log,
36: 'GCS_DATA_PREP_PKG::get_dimension_text -- Enter');
37: fnd_file.put_line(fnd_file.log, 'p_prefix := ' || p_prefix);
38: fnd_file.put_line(fnd_file.log, 'p_suffix := ' || p_suffix);
39: fnd_file.put_line(fnd_file.log, 'p_repeat_flag := ' || p_repeat_flag);
40: fnd_file.put_line(fnd_file.log, 'Beginning of parameters ');
41: fnd_file.put_line(fnd_file.log, 'End of parameters ');
42: l_index_column_name := gcs_utility_pkg.g_gcs_dimension_info.FIRST;

Line 39: fnd_file.put_line(fnd_file.log, 'p_repeat_flag := ' || p_repeat_flag);

35: fnd_file.put_line(fnd_file.log,
36: 'GCS_DATA_PREP_PKG::get_dimension_text -- Enter');
37: fnd_file.put_line(fnd_file.log, 'p_prefix := ' || p_prefix);
38: fnd_file.put_line(fnd_file.log, 'p_suffix := ' || p_suffix);
39: fnd_file.put_line(fnd_file.log, 'p_repeat_flag := ' || p_repeat_flag);
40: fnd_file.put_line(fnd_file.log, 'Beginning of parameters ');
41: fnd_file.put_line(fnd_file.log, 'End of parameters ');
42: l_index_column_name := gcs_utility_pkg.g_gcs_dimension_info.FIRST;
43: WHILE (l_index_column_name <= gcs_utility_pkg.g_gcs_dimension_info.LAST) LOOP

Line 40: fnd_file.put_line(fnd_file.log, 'Beginning of parameters ');

36: 'GCS_DATA_PREP_PKG::get_dimension_text -- Enter');
37: fnd_file.put_line(fnd_file.log, 'p_prefix := ' || p_prefix);
38: fnd_file.put_line(fnd_file.log, 'p_suffix := ' || p_suffix);
39: fnd_file.put_line(fnd_file.log, 'p_repeat_flag := ' || p_repeat_flag);
40: fnd_file.put_line(fnd_file.log, 'Beginning of parameters ');
41: fnd_file.put_line(fnd_file.log, 'End of parameters ');
42: l_index_column_name := gcs_utility_pkg.g_gcs_dimension_info.FIRST;
43: WHILE (l_index_column_name <= gcs_utility_pkg.g_gcs_dimension_info.LAST) LOOP
44: IF (l_index_column_name <> 'ENTITY_ID' AND

Line 41: fnd_file.put_line(fnd_file.log, 'End of parameters ');

37: fnd_file.put_line(fnd_file.log, 'p_prefix := ' || p_prefix);
38: fnd_file.put_line(fnd_file.log, 'p_suffix := ' || p_suffix);
39: fnd_file.put_line(fnd_file.log, 'p_repeat_flag := ' || p_repeat_flag);
40: fnd_file.put_line(fnd_file.log, 'Beginning of parameters ');
41: fnd_file.put_line(fnd_file.log, 'End of parameters ');
42: l_index_column_name := gcs_utility_pkg.g_gcs_dimension_info.FIRST;
43: WHILE (l_index_column_name <= gcs_utility_pkg.g_gcs_dimension_info.LAST) LOOP
44: IF (l_index_column_name <> 'ENTITY_ID' AND
45: gcs_utility_pkg.g_gcs_dimension_info(l_index_column_name)

Line 67: fnd_file.put_line(fnd_file.log, 'l_dim_text := ' || l_dim_text);

63: END IF;
64: END IF;
65: l_index_column_name := gcs_utility_pkg.g_gcs_dimension_info.NEXT(l_index_column_name);
66: END LOOP;
67: fnd_file.put_line(fnd_file.log, 'l_dim_text := ' || l_dim_text);
68: fnd_file.put_line(fnd_file.log,
69: 'GCS_DATA_PREP_PKG::get_dimension_text -- Exit');
70: fnd_file.put_line(fnd_file.log,
71: '============================================');

Line 68: fnd_file.put_line(fnd_file.log,

64: END IF;
65: l_index_column_name := gcs_utility_pkg.g_gcs_dimension_info.NEXT(l_index_column_name);
66: END LOOP;
67: fnd_file.put_line(fnd_file.log, 'l_dim_text := ' || l_dim_text);
68: fnd_file.put_line(fnd_file.log,
69: 'GCS_DATA_PREP_PKG::get_dimension_text -- Exit');
70: fnd_file.put_line(fnd_file.log,
71: '============================================');
72: RETURN l_dim_text;

Line 70: fnd_file.put_line(fnd_file.log,

66: END LOOP;
67: fnd_file.put_line(fnd_file.log, 'l_dim_text := ' || l_dim_text);
68: fnd_file.put_line(fnd_file.log,
69: 'GCS_DATA_PREP_PKG::get_dimension_text -- Exit');
70: fnd_file.put_line(fnd_file.log,
71: '============================================');
72: RETURN l_dim_text;
73: END get_dimension_text;
74:

Line 332: fnd_file.put_line(fnd_file.log,

328: p_cal_period_record.cal_period_year - 1);
329:
330: SELECT count(*) INTO l_cnt FROM gcs_cal_period_maps_gt;
331: IF (l_cnt = 0) THEN
332: fnd_file.put_line(fnd_file.log,
333: 'Calendar Period Mapping does not exist');
334: p_prior_cal_period_id := p_cal_period_record.prev_cal_period_id;
335: p_year_end_values_match := 'Y';
336: ELSE

Line 1239: fnd_file.put_line(fnd_file.log,

1235: l_curr_vs_map_where_clause VARCHAR2(250);
1236:
1237: BEGIN
1238: SAVEPOINT create_process_start;
1239: fnd_file.put_line(fnd_file.log,
1240: '============================================');
1241: fnd_file.put_line(fnd_file.log,
1242: 'GCS_DATA_PREP_PKG::create_process -- Enter');
1243: --Bugfix 5329620: Determine Currency Clause Based on Status of Financial Element

Line 1241: fnd_file.put_line(fnd_file.log,

1237: BEGIN
1238: SAVEPOINT create_process_start;
1239: fnd_file.put_line(fnd_file.log,
1240: '============================================');
1241: fnd_file.put_line(fnd_file.log,
1242: 'GCS_DATA_PREP_PKG::create_process -- Enter');
1243: --Bugfix 5329620: Determine Currency Clause Based on Status of Financial Element
1244: IF (gcs_utility_pkg.get_dimension_required('FINANCIAL_ELEM_ID') = 'Y') THEN
1245: l_curr_where_clause := '

Line 1506: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 1');

1502: lines := lines + 1;
1503: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
1504: curr_index := curr_index + 200;
1505: END LOOP;
1506: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 1');
1507: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
1508: --
1509: -- create procedure init_local_to_master_maps
1510: --

Line 1507: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);

1503: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
1504: curr_index := curr_index + 200;
1505: END LOOP;
1506: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 1');
1507: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
1508: --
1509: -- create procedure init_local_to_master_maps
1510: --
1511: l_proc_body := '

Line 1761: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 2');

1757: lines := lines + 1;
1758: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
1759: curr_index := curr_index + 200;
1760: END LOOP;
1761: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 2');
1762: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
1763: --
1764: -- create procedure init_local_to_master_maps
1765: --

Line 1762: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);

1758: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
1759: curr_index := curr_index + 200;
1760: END LOOP;
1761: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 2');
1762: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
1763: --
1764: -- create procedure init_local_to_master_maps
1765: --
1766: l_proc_body := '

Line 1898: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 3');

1894: lines := lines + 1;
1895: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
1896: curr_index := curr_index + 200;
1897: END LOOP;
1898: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 3');
1899: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
1900: l_insert_statement := l_insert_gt_clause ||
1901: ' SELECT decode(fb.currency_code, ''STAT'', l_stat_entry_id, l_entry_id), ' ||
1902: ' fb.cal_period_id, ' || l_fb_dims ||

Line 1899: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);

1895: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
1896: curr_index := curr_index + 200;
1897: END LOOP;
1898: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 3');
1899: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
1900: l_insert_statement := l_insert_gt_clause ||
1901: ' SELECT decode(fb.currency_code, ''STAT'', l_stat_entry_id, l_entry_id), ' ||
1902: ' fb.cal_period_id, ' || l_fb_dims ||
1903: l_select_gt_clause || l_from_gt_clause ||

Line 2139: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 4');

2135: lines := lines + 1;
2136: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
2137: curr_index := curr_index + 200;
2138: END LOOP;
2139: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 4');
2140: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
2141:
2142: l_proc_body := '---------------------------------------
2143: -- this is the mapping required case --

Line 2140: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);

2136: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
2137: curr_index := curr_index + 200;
2138: END LOOP;
2139: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 4');
2140: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
2141:
2142: l_proc_body := '---------------------------------------
2143: -- this is the mapping required case --
2144: ---------------------------------------

Line 2342: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 5');

2338: lines := lines + 1;
2339: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
2340: curr_index := curr_index + 200;
2341: END LOOP;
2342: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 5');
2343: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
2344: l_proc_body := '
2345:
2346: COMMIT;

Line 2343: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);

2339: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
2340: curr_index := curr_index + 200;
2341: END LOOP;
2342: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 5');
2343: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
2344: l_proc_body := '
2345:
2346: COMMIT;
2347:

Line 2527: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 6');

2523: lines := lines + 1;
2524: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
2525: curr_index := curr_index + 200;
2526: END LOOP;
2527: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 6');
2528: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
2529: --
2530: -- create procedure init_local_to_master_maps
2531: --

Line 2528: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);

2524: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
2525: curr_index := curr_index + 200;
2526: END LOOP;
2527: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 6');
2528: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
2529: --
2530: -- create procedure init_local_to_master_maps
2531: --
2532: l_proc_body := '

Line 2772: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 7');

2768: lines := lines + 1;
2769: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
2770: curr_index := curr_index + 200;
2771: END LOOP;
2772: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 7');
2773: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
2774: l_proc_body := '
2775: PROCEDURE process_inc_data (
2776: p_source_currency_code IN VARCHAR2,

Line 2773: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);

2769: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
2770: curr_index := curr_index + 200;
2771: END LOOP;
2772: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 7');
2773: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
2774: l_proc_body := '
2775: PROCEDURE process_inc_data (
2776: p_source_currency_code IN VARCHAR2,
2777: p_target_cal_period_id IN NUMBER,

Line 2976: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 8');

2972: lines := lines + 1;
2973: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
2974: curr_index := curr_index + 200;
2975: END LOOP;
2976: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 8');
2977: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
2978: --
2979: -- create procedure init_local_to_master_maps
2980: --

Line 2977: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);

2973: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
2974: curr_index := curr_index + 200;
2975: END LOOP;
2976: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 8');
2977: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
2978: --
2979: -- create procedure init_local_to_master_maps
2980: --
2981: l_proc_body := '

Line 3154: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 9');

3150: lines := lines + 1;
3151: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
3152: curr_index := curr_index + 200;
3153: END LOOP;
3154: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 9');
3155: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
3156: ---------------------------------------------------------------------------------------------
3157: -- Code inserted by Santosh Matam
3158: --Imapct of Intercompany Mappings

Line 3155: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);

3151: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
3152: curr_index := curr_index + 200;
3153: END LOOP;
3154: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 9');
3155: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
3156: ---------------------------------------------------------------------------------------------
3157: -- Code inserted by Santosh Matam
3158: --Imapct of Intercompany Mappings
3159: ---------------------------------------------------------------------------------------------

Line 3267: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 10');

3263: lines := lines + 1;
3264: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
3265: curr_index := curr_index + 200;
3266: END LOOP;
3267: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 10');
3268: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
3269: fnd_file.put_line(fnd_file.log,
3270: 'GCS_DATA_PREP_PKG::create_process -- Before ad_ddl.create_plsql_object API Call');
3271: ad_ddl.create_plsql_object(GCS_DYNAMIC_UTIL_PKG.g_applsys_username,

Line 3268: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);

3264: ad_ddl.build_statement(SUBSTR(l_proc_body, curr_index, 200), lines);
3265: curr_index := curr_index + 200;
3266: END LOOP;
3267: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 10');
3268: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
3269: fnd_file.put_line(fnd_file.log,
3270: 'GCS_DATA_PREP_PKG::create_process -- Before ad_ddl.create_plsql_object API Call');
3271: ad_ddl.create_plsql_object(GCS_DYNAMIC_UTIL_PKG.g_applsys_username,
3272: 'GCS',

Line 3269: fnd_file.put_line(fnd_file.log,

3265: curr_index := curr_index + 200;
3266: END LOOP;
3267: fnd_file.put_line(fnd_file.log, '@ad_ddl.build_statement --- 10');
3268: fnd_file.put_line(fnd_file.log, 'Body Length :=' || body_len);
3269: fnd_file.put_line(fnd_file.log,
3270: 'GCS_DATA_PREP_PKG::create_process -- Before ad_ddl.create_plsql_object API Call');
3271: ad_ddl.create_plsql_object(GCS_DYNAMIC_UTIL_PKG.g_applsys_username,
3272: 'GCS',
3273: 'GCS_DP_DYNAMIC_PKG',

Line 3278: fnd_file.put_line(fnd_file.log,

3274: 1,
3275: lines,
3276: 'FALSE',
3277: err);
3278: fnd_file.put_line(fnd_file.log,
3279: 'GCS_DATA_PREP_PKG::create_process -- After ad_ddl.create_plsql_object API Call');
3280: fnd_file.put_line(fnd_file.log,
3281: 'GCS_DATA_PREP_PKG::create_process -- End');
3282: fnd_file.put_line(fnd_file.log,

Line 3280: fnd_file.put_line(fnd_file.log,

3276: 'FALSE',
3277: err);
3278: fnd_file.put_line(fnd_file.log,
3279: 'GCS_DATA_PREP_PKG::create_process -- After ad_ddl.create_plsql_object API Call');
3280: fnd_file.put_line(fnd_file.log,
3281: 'GCS_DATA_PREP_PKG::create_process -- End');
3282: fnd_file.put_line(fnd_file.log,
3283: '=========================================');
3284: EXCEPTION

Line 3282: fnd_file.put_line(fnd_file.log,

3278: fnd_file.put_line(fnd_file.log,
3279: 'GCS_DATA_PREP_PKG::create_process -- After ad_ddl.create_plsql_object API Call');
3280: fnd_file.put_line(fnd_file.log,
3281: 'GCS_DATA_PREP_PKG::create_process -- End');
3282: fnd_file.put_line(fnd_file.log,
3283: '=========================================');
3284: EXCEPTION
3285: -- no required dimension found
3286: -- this shouldn't happen because we know for sure at least line_item is required

Line 3296: fnd_file.put_line(fnd_file.log,

3292: g_pkg_name || '.' || l_api_name,
3293: gcs_utility_pkg.g_module_failure || ' ' ||
3294: TO_CHAR(SYSDATE, 'DD-MON-YYYY HH:MI:SS'));
3295: END IF;
3296: fnd_file.put_line(fnd_file.log,
3297: 'GCS_DATA_PREP_PKG::create_process -- NO_DATA_FOUND Exception');
3298: fnd_file.put_line(fnd_file.log,
3299: 'GCS_DATA_PREP_PKG::create_process -- End');
3300: fnd_file.put_line(fnd_file.log,

Line 3298: fnd_file.put_line(fnd_file.log,

3294: TO_CHAR(SYSDATE, 'DD-MON-YYYY HH:MI:SS'));
3295: END IF;
3296: fnd_file.put_line(fnd_file.log,
3297: 'GCS_DATA_PREP_PKG::create_process -- NO_DATA_FOUND Exception');
3298: fnd_file.put_line(fnd_file.log,
3299: 'GCS_DATA_PREP_PKG::create_process -- End');
3300: fnd_file.put_line(fnd_file.log,
3301: '=========================================');
3302: WHEN OTHERS THEN

Line 3300: fnd_file.put_line(fnd_file.log,

3296: fnd_file.put_line(fnd_file.log,
3297: 'GCS_DATA_PREP_PKG::create_process -- NO_DATA_FOUND Exception');
3298: fnd_file.put_line(fnd_file.log,
3299: 'GCS_DATA_PREP_PKG::create_process -- End');
3300: fnd_file.put_line(fnd_file.log,
3301: '=========================================');
3302: WHEN OTHERS THEN
3303: ROLLBACK TO create_process_start;
3304: x_errbuf := SQLERRM;

Line 3312: fnd_file.put_line(fnd_file.log,

3308: g_pkg_name || '.' || l_api_name,
3309: gcs_utility_pkg.g_module_failure || ' ' || x_errbuf || ' ' ||
3310: TO_CHAR(SYSDATE, 'DD-MON-YYYY HH:MI:SS'));
3311: END IF;
3312: fnd_file.put_line(fnd_file.log,
3313: 'GCS_DATA_PREP_PKG::create_process -- OTHERS Exception := ' ||
3314: x_errbuf);
3315: fnd_file.put_line(fnd_file.log,
3316: 'GCS_DATA_PREP_PKG::create_process -- End');

Line 3315: fnd_file.put_line(fnd_file.log,

3311: END IF;
3312: fnd_file.put_line(fnd_file.log,
3313: 'GCS_DATA_PREP_PKG::create_process -- OTHERS Exception := ' ||
3314: x_errbuf);
3315: fnd_file.put_line(fnd_file.log,
3316: 'GCS_DATA_PREP_PKG::create_process -- End');
3317: fnd_file.put_line(fnd_file.log,
3318: '=========================================');
3319: END create_process;

Line 3317: fnd_file.put_line(fnd_file.log,

3313: 'GCS_DATA_PREP_PKG::create_process -- OTHERS Exception := ' ||
3314: x_errbuf);
3315: fnd_file.put_line(fnd_file.log,
3316: 'GCS_DATA_PREP_PKG::create_process -- End');
3317: fnd_file.put_line(fnd_file.log,
3318: '=========================================');
3319: END create_process;
3320: ---------------------------------------------------------------------------
3321: --