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  >  Interview Questions  >  Oracle Apps  >  Apps Technical
Go To First  |  Previous Question  |  Next Question 
 Apps Technical  |  Question 19 of 124    Print  
How to register tables and columns in AOL?

  
Total Answers and Comments: 10 Last Update: June 19, 2008   
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
August 31, 2005 05:50:45   #1  
sandeep        

RE: How to register tables and columns in AOL?
To register the table and columns in AOL the navigation is: 
Open Appliaction Developer---> Appliaction--->Database--->table.(In table mention the table name(which you want to register), user table name,columns,user column name). 
 
The table & columns which you are going to register should be present in your module specific schema.

 
Is this answer useful? Yes | No
September 28, 2005 07:28:17   #2  
Nidhi Gupta        

RE: How to register tables and columns in AOL?

sandeep Wrote: To register the table and columns in AOL the navigation is: 
Open Appliaction Developer---> Appliaction--->Database--->table.(In table mention the table name(which you want to register), user table name,columns,user column name). 
 
The table & columns which you are going to register should be present in your module specific schema.

No Sandeep we cant register a table or its column like that. the window you hav mentioned doesnt allow us to enter nething. we can just see all the registered tables and their columns here.

one way which i know  to register a table and their columns is thru backend .

eg.SQL> EXEC AD_DD.REGISTER_TABLE (‘SQLGL’, ‘EXAM’,’T’)

where SQLGL is aplication short name and EXAM is the table name and T stands for Transaction Data

SQL> EXEC AD_DD.REGISTER_COLUMN (‘SQLGL’, ‘EXAM’,’SNO’, 1, ‘NUMBER’, 5, ‘N’, ‘Y’);

‘EXAM’ – Table Name

‘SNO’ – Column Name

1- Sequence one or column one

‘NUMBER’- Number Data type

5-Size

‘N’ – Null able

‘Y’ – Translate (Y/N)

 


 
Is this answer useful? Yes | No
October 03, 2005 12:41:40   #3  
savan        

RE: How to register tables and columns in AOL?
Is that right
 
Is this answer useful? Yes | No
October 04, 2005 09:28:20   #4  
kiran        

RE: How to register tables and columns in AOL?
ad_dd.register_table and ad_dd.register_column are the procedure used to register table
 
Is this answer useful? Yes | No
February 21, 2006 00:33:05   #5  
Prasant        

RE: How to register tables and columns in AOL?

To reg. table

AD_DD.Register table table name('fnd',tablename,type);

where type=T OR V  T=Table,V=View

Prasant


 
Is this answer useful? Yes | No
February 27, 2007 16:15:02   #6  
namita        

RE: How to register tables and columns in AOL?
Sandeep is right. When you are registering a table or view to AOl, it first be present in your module specific schema. And you should register those table from backened too using AD_DD package if you are using flexfield or alerts on youir tables.

After creating table and registering them from backend, you have to register those table and columns to AOL .
Go to application developer responsibility.
press CTRL+L
it will show all function under that responsibility.
Choose register table
Enter all information.

 
Is this answer useful? Yes | No
March 30, 2007 04:03:55   #7  
Amit        

RE: How to register tables and columns in AOL?

Namita, i think you are wrong.

After creating table and registering it through back-end using AD_DD package, we
are able to view the table defination from application developer responsibility. Navigation: Application>Database>Table.

However we are not allowed to register Table/View/Sequence from front-end screen using Application Developer responsibility.


 
Is this answer useful? Yes | No
July 17, 2007 02:26:53   #8  
t1.venki Member Since: May 2007   Contribution: 5    

RE: How to register tables and columns in AOL?
hi i am explaining the actual process?
 
  --i want  to register table
  --- first we have to decide which schema we have to register po-ap-ar
  login to any schema
       create table emp(empno number,ename varchar2);
  login to apps schema
     create synonym emps for emp;
  use api to register tableand each column

 
Is this answer useful? Yes | No
July 27, 2007 02:21:28   #9  
subrahmanyam        

RE: How to register tables and columns in AOL?
While register table and column in aol we can use ad.dd package.
First create a table and grants to apps and create synonyms that table after that
1.register table:

  ad.dd_register_table('po','item','T',10,10,90);

PO:application short name;
Item:table name;
T: table or view or synonym
10:size
10:unused space;
90:used space;

then register columns.
ad.dd_register_column('application_short_name','table_name','index of the column','column_name','size',n,y);

 
Is this answer useful? Yes | No
September 07, 2007 10:02:10   #10  
shrikantgarud        

RE: How to register tables and columns in AOL?
All I have seen is perfect it is called as registeration of table through API
You can register a table using inbuild packages like ad_dd.register_table
and ad_dd.register_column
ex.
ad_dd.register_table('appln short name','table name','transaction/seeded')
it would be
ad_dd.register_table('SQLGL','test_table','T')

ad_dd.register_column(‘SQLGL’, ‘test_table,’SNO’, 1, ‘NUMBER’, 5, ‘N’, ‘Y’);

‘EXAM’ – Table Name

‘SNO’ – Column Name

1- Sequence one or column one

‘NUMBER’- Number Data type

5-Size

‘N’ – Null able

‘Y’ – Translate (Y/N)


 
Is this answer useful? Yes | No


 
Go To Top


 Sponsored Links

 




About Us  |   Privacy Policy  |   Terms and Conditions  |   Contact  |   Site Map  |   Add Question  |   Propose Category  |   RSS Feeds  |   Articles Sitemap  |   Site Updates  |   Add Resource

Copyright © 2005 - 2008 GeekInterview.com. All Rights Reserved
Page copy protected against web site content infringement by Copyscape