DBA Data[Home] [Help]

APPS.INV_EBI_UTIL dependencies on INV_EBI_UTIL

Line 1: PACKAGE BODY INV_EBI_UTIL AS

1: PACKAGE BODY INV_EBI_UTIL AS
2: /* $Header: INVEIUTLB.pls 120.13.12010000.4 2009/02/13 09:49:23 prepatel ship $ */
3:
4: /************************************************************************************
5: -- API name : is_pim_installed

Line 370: x_msg_data := x_msg_data||' ->INV_EBI_UTIL.transform_uda ';

366: WHEN OTHERS THEN
367:
368: x_return_status := FND_API.g_ret_sts_unexp_error;
369: IF (x_msg_data IS NOT NULL) THEN
370: x_msg_data := x_msg_data||' ->INV_EBI_UTIL.transform_uda ';
371: ELSE
372: x_msg_data := SQLERRM||'INV_EBI_UTIL.transform_uda ';
373: END IF;
374: END transform_uda;

Line 372: x_msg_data := SQLERRM||'INV_EBI_UTIL.transform_uda ';

368: x_return_status := FND_API.g_ret_sts_unexp_error;
369: IF (x_msg_data IS NOT NULL) THEN
370: x_msg_data := x_msg_data||' ->INV_EBI_UTIL.transform_uda ';
371: ELSE
372: x_msg_data := SQLERRM||'INV_EBI_UTIL.transform_uda ';
373: END IF;
374: END transform_uda;
375:
376: /************************************************************************************

Line 463: x_msg_data := x_msg_data||' ->INV_EBI_UTIL.transform_attr_rowdata_uda ';

459: EXCEPTION
460: WHEN OTHERS THEN
461: x_return_status := FND_API.g_ret_sts_unexp_error;
462: IF (x_msg_data IS NOT NULL) THEN
463: x_msg_data := x_msg_data||' ->INV_EBI_UTIL.transform_attr_rowdata_uda ';
464: ELSE
465: x_msg_data := SQLERRM||'INV_EBI_UTIL.transform_attr_rowdata_uda ';
466: END IF;
467: END transform_attr_rowdata_uda;

Line 465: x_msg_data := SQLERRM||'INV_EBI_UTIL.transform_attr_rowdata_uda ';

461: x_return_status := FND_API.g_ret_sts_unexp_error;
462: IF (x_msg_data IS NOT NULL) THEN
463: x_msg_data := x_msg_data||' ->INV_EBI_UTIL.transform_attr_rowdata_uda ';
464: ELSE
465: x_msg_data := SQLERRM||'INV_EBI_UTIL.transform_attr_rowdata_uda ';
466: END IF;
467: END transform_attr_rowdata_uda;
468: -- ------------------------------------------------------------------
469: -- Name: put_names

Line 488: IF (INV_EBI_UTIL.g_debug) THEN

484: -- -----------------------------------------------------------------
485: PROCEDURE debug_line(
486: p_text VARCHAR2) IS
487: BEGIN
488: IF (INV_EBI_UTIL.g_debug) THEN
489: FND_FILE.PUT_LINE(FND_FILE.LOG,to_char(sysdate,'DD/MON/YYYY HH24:MI:SS')||': '||p_text);
490: END IF;
491: END debug_line;
492: -- ------------------------------------------------------------------

Line 518: INV_EBI_UTIL.g_debug := debug_status;

514: PROCEDURE setup(
515: p_filename VARCHAR2 Default NULL) IS
516: l_path varchar2(200) := FND_PROFILE.value('INV_EBI_DEBUG_DIRECTORY');
517: BEGIN
518: INV_EBI_UTIL.g_debug := debug_status;
519:
520: IF (INV_EBI_UTIL.g_debug) THEN
521:
522: INV_EBI_UTIL.put_names(nvl(p_filename,'EBS'||to_char(sysdate,'DDMMYYYYHH24MISS'))||'.log',nvl(p_filename,'EBS'||to_char(sysdate,'DDMMYYYYHH24MISS'))||'.out',l_path);

Line 520: IF (INV_EBI_UTIL.g_debug) THEN

516: l_path varchar2(200) := FND_PROFILE.value('INV_EBI_DEBUG_DIRECTORY');
517: BEGIN
518: INV_EBI_UTIL.g_debug := debug_status;
519:
520: IF (INV_EBI_UTIL.g_debug) THEN
521:
522: INV_EBI_UTIL.put_names(nvl(p_filename,'EBS'||to_char(sysdate,'DDMMYYYYHH24MISS'))||'.log',nvl(p_filename,'EBS'||to_char(sysdate,'DDMMYYYYHH24MISS'))||'.out',l_path);
523: INV_EBI_UTIL.debug_line('At the start of the Debug process is ');
524: END IF;

Line 522: INV_EBI_UTIL.put_names(nvl(p_filename,'EBS'||to_char(sysdate,'DDMMYYYYHH24MISS'))||'.log',nvl(p_filename,'EBS'||to_char(sysdate,'DDMMYYYYHH24MISS'))||'.out',l_path);

518: INV_EBI_UTIL.g_debug := debug_status;
519:
520: IF (INV_EBI_UTIL.g_debug) THEN
521:
522: INV_EBI_UTIL.put_names(nvl(p_filename,'EBS'||to_char(sysdate,'DDMMYYYYHH24MISS'))||'.log',nvl(p_filename,'EBS'||to_char(sysdate,'DDMMYYYYHH24MISS'))||'.out',l_path);
523: INV_EBI_UTIL.debug_line('At the start of the Debug process is ');
524: END IF;
525: END setup;
526: -- ------------------------------------------------------------------

Line 523: INV_EBI_UTIL.debug_line('At the start of the Debug process is ');

519:
520: IF (INV_EBI_UTIL.g_debug) THEN
521:
522: INV_EBI_UTIL.put_names(nvl(p_filename,'EBS'||to_char(sysdate,'DDMMYYYYHH24MISS'))||'.log',nvl(p_filename,'EBS'||to_char(sysdate,'DDMMYYYYHH24MISS'))||'.out',l_path);
523: INV_EBI_UTIL.debug_line('At the start of the Debug process is ');
524: END IF;
525: END setup;
526: -- ------------------------------------------------------------------
527: -- Name: wrapup

Line 533: IF (INV_EBI_UTIL.g_debug) THEN

529: -- -----------------------------------------------------------------
530:
531: PROCEDURE wrapup IS
532: BEGIN
533: IF (INV_EBI_UTIL.g_debug) THEN
534: INV_EBI_UTIL.debug_line('At the end of Debug Process');
535: FND_FILE.close;
536: END IF;
537: END wrapup;

Line 534: INV_EBI_UTIL.debug_line('At the end of Debug Process');

530:
531: PROCEDURE wrapup IS
532: BEGIN
533: IF (INV_EBI_UTIL.g_debug) THEN
534: INV_EBI_UTIL.debug_line('At the end of Debug Process');
535: FND_FILE.close;
536: END IF;
537: END wrapup;
538: END INV_EBI_UTIL;

Line 538: END INV_EBI_UTIL;

534: INV_EBI_UTIL.debug_line('At the end of Debug Process');
535: FND_FILE.close;
536: END IF;
537: END wrapup;
538: END INV_EBI_UTIL;