DBA Data[Home] [Help]

APPS.FND_LOG_ADMIN dependencies on FND_LOG_ADMIN

Line 1: package body fnd_log_admin as

1: package body fnd_log_admin as
2: /* $Header: AFUTLGAB.pls 120.1.12000000.2 2007/07/27 13:42:23 rlandows ship $ */
3:
4: C_PKG_NAME CONSTANT VARCHAR2(30) := 'FND_FUNCTION';
5: C_LOG_HEAD CONSTANT VARCHAR2(30) := 'fnd.plsql.FND_LOG_ADMIN.';

Line 5: C_LOG_HEAD CONSTANT VARCHAR2(30) := 'fnd.plsql.FND_LOG_ADMIN.';

1: package body fnd_log_admin as
2: /* $Header: AFUTLGAB.pls 120.1.12000000.2 2007/07/27 13:42:23 rlandows ship $ */
3:
4: C_PKG_NAME CONSTANT VARCHAR2(30) := 'FND_FUNCTION';
5: C_LOG_HEAD CONSTANT VARCHAR2(30) := 'fnd.plsql.FND_LOG_ADMIN.';
6:
7:
8: /******************************************************************************/
9: /***Constants for Changes due to system Log ***********************************/

Line 1541: rows := fnd_log_admin.delete_by_user(62202999);

1537: ('fnd.src.dict.afdict.afdwarn.tom_test_module', 5,
1538: 'This is a test log message', 62202999, 62202999,
1539: to_date(test_date, test_mask), 62202999);
1540:
1541: rows := fnd_log_admin.delete_by_user(62202999);
1542: result := result || rows ;
1543:
1544:
1545:

Line 1556: rows := fnd_log_admin.delete_by_session(62202999);

1552: ('fnd.src.dict.afdict.afdwarn.tom_test_module', 5,
1553: 'This is a test log message', 62202999, 62202999,
1554: to_date(test_date, test_mask), 62202999);
1555:
1556: rows := fnd_log_admin.delete_by_session(62202999);
1557: result := result || rows ;
1558:
1559:
1560:

Line 1573: -- rows := fnd_log_admin.delete_by_date_range(SYSDATE+499,NULL);

1569: 'This is a test log message', 62202999, 62202999,
1570: to_date(SYSDATE+500, test_mask), 62202999);
1571:
1572: /* Dangerous so not doing this test */
1573: -- rows := fnd_log_admin.delete_by_date_range(SYSDATE+499,NULL);
1574: -- result := result || rows ;
1575:
1576:
1577:

Line 1589: rows := fnd_log_admin.delete_by_date_range(SYSDATE+499, SYSDATE+501);

1585: ('fnd.src.dict.afdict.afdwarn.tom_test_module', 5,
1586: 'This is a test log message', 62202999, 62202999,
1587: to_date(SYSDATE+500, test_mask), 62202999);
1588:
1589: rows := fnd_log_admin.delete_by_date_range(SYSDATE+499, SYSDATE+501);
1590: result := result || rows ;
1591:
1592:
1593:

Line 1606: -- rows := fnd_log_admin.delete_by_date_range(NULL,SYSDATE+501);

1602: 'This is a test log message', 62202999, 62202999,
1603: to_date(SYSDATE+500, test_mask), 62202999);
1604:
1605: /* Not doing this test because it's destructive */
1606: -- rows := fnd_log_admin.delete_by_date_range(NULL,SYSDATE+501);
1607: -- result := result || rows ;
1608:
1609:
1610:

Line 1623: -- rows := fnd_log_admin.delete_by_max_level(1);

1619: 'This is a test log message', 62202999, 62202999,
1620: to_date(test_date, test_mask), 62202999);
1621:
1622: /* Not doing this test because it's destructive */
1623: -- rows := fnd_log_admin.delete_by_max_level(1);
1624: -- result := result || rows ;
1625:
1626:
1627:

Line 1639: rows := fnd_log_admin.delete_by_user_session(62202999, 62202999);

1635: ('fnd.src.dict.afdict.afdwarn.tom_test_module', 5,
1636: 'This is a test log message', 62202999, 62202999,
1637: to_date(test_date, test_mask), 62202999);
1638:
1639: rows := fnd_log_admin.delete_by_user_session(62202999, 62202999);
1640: result := result || rows ;
1641:
1642:
1643:

Line 1653: rows := fnd_log_admin.delete_by_module(

1649: ('fnd.src.dict.afdict.afdwarn.tom_test_module', 5,
1650: 'This is a test log message', 62202999, 62202999,
1651: to_date(test_date, test_mask), 62202999);
1652:
1653: rows := fnd_log_admin.delete_by_module(
1654: 'fnd.src.dict.afdict.afdwarn.tom_test_module');
1655: result := result || rows;
1656:
1657:

Line 1662: end FND_LOG_ADMIN;

1658:
1659: return result;
1660: end SELF_TEST;
1661:
1662: end FND_LOG_ADMIN;