finding the database table name from the web client

Asked by Bushair

Hi,
IS there is anyway that i can find out the database table name corresponding to a field in the web client?

For example , navigate to MainMenu->PointOfSale->PointOfSale

We can see the The following fields in this window

1)Partner
2)PriceList
3)SalesMan

How can i find in which Database table these values are getting stored?
is there is anyway that i can find out the table name?

thanks

Question information

Language:
English Edit question
Status:
Solved
For:
Odoo Server (MOVED TO GITHUB) Edit question
Assignee:
No assignee Edit question
Solved by:
Vinay Rana (OpenERP)
Solved:
Last query:
Last reply:
Revision history for this message
Best Vinay Rana (OpenERP) (vra-openerp) said :
#1

Hello Bushair,

You can easily find the related object name from Administration/Customization/Database Structure/Objects menu.
With the help of object name you can easily find the table name, In maximum cases table name is similar like object name. You are needed to put ' _' instead of '.'. But some cases It is possible that the table name is not similar like object name(If programmer gave _table attribute or class name with different name string.).In this time you need to manually search the name of table name from the class with help of object name.

Hope this will help you.

Thanks.

Revision history for this message
Bushair (bushairka) said :
#2

Hi,
Thanks for the information