Latest

  • Chart of Accounts (COA)

    COA is a list of the accounts used by an organisation. The list can be numerical, alphabetic, or alpha-numeric. Each nominal ledger account is unique…

  • New User for KFS 3.0 / Rice 1.x

    Here is the list of table to create user in database & insert record on below tables. KRIM_ENTITY_T KRIM_PRNCPL_T KRIM_ENTITY_NM_T KRIM_ENTITY_ENT_TYPE_T KRIM_ENTITY_EMAIL_T

  • Start tomcat 6 with debug

    Pls follow the below steps to enable tomcat 6.x in debug Open catalina.bat, can be located at <TOMCAT_HOME>/bin Add below lines set JPDA_TRANSPORT=dt_socket set JPDA_ADDRESS=6666…

  • DROP all tables, views, stored procedures, & Sequences from Schema

    Below script will help to delete all tables, constrains from user Begin for c in (select table_name from user_tables) loop execute immediate (‘drop table ‘||c.table_name||’…