In my last post I talked about how to register table in Oracle Application. The steps involved are too much and will take lot of time if we have to create multiple tables or a single table is having too many columns.
To Save time you can use below script which will do the job for you. I am considering the your table is already created.
DECLARE vc_appl_short_name CONSTANT VARCHAR2 (40) := 'C_APPS'; vc_tab_name CONSTANT VARCHAR2 (32) := 'C_FND_INTERFACES'; vc_tab_type CONSTANT VARCHAR2 (50) := 'T'; vc_next_extent CONSTANT NUMBER := 512; vc_pct_free CONSTANT NUMBER := 10; vc_pct_used CONSTANT NUMBER := 70; BEGIN