GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Tech FAQs  >  Oracle Apps

 Print  |  
Question:  Register Table

Answer: How to register table in Oracle Apps?


July 07, 2008 22:37:08 #1
 astaputra   Member Since: June 2008    Total Comments: 2 

RE: Register Table
 
you have to use AD_DD package for registering your tables and columns.

Here is the code

AD_DD.register_table(p_appl_short_name => ,p_tab_name => ,p_tab_type => )
AD_DD.register_column(p_appl_short_name => ,p_tab_name => ,p_col_name => ,p_col_seq => ,p_col_type => ,p_col_width => ,p_nullable => )

you have to fill your table details accordingly...

     

 

Back To Question