Skip to main content

Creating Master Table for Company Identities

Master table for company identities is related to company data. It is not about a company image related with its vision, tagline, or some kind like that. Instead, the company identities consist of company name, address, website, phone number, etc. One of the functions is for exchange letters or correspondence purposes. Usually, the identities are placed on the header and caption of a report or form.


We create the table to store company identities and save as tblCompanyIdentities. Following are the field names and their related properties.
  1. Field Name= coyName
    1. Data Type= Text
    2. Description= Company name
    3. Field Properties - General Tab:
      1. Field Size= 100
      2. Caption= Company name
  2. Field Name= coyAddress
    1. Data Type= Text
    2. Description= Company address
    3. Field Properties - General Tab:
      1. Field Size= 100
      2. Caption= Company Address
  3. Field Name= coyCity
    1. Data Type= Text
    2. Description= City where the company is located
    3. Field Properties - General Tab:
      1. Field Size= 50
      2. Caption= City
  4. Field Name= coyZipCode
    1. Data Type= Text
    2. Description= Zip code
    3. Field Properties - General Tab:
      1. Field Size= 5
      2. Caption= Zip Code
      3. Input Mask= 00000
  5. Field Name= coyCountry
    1. Data Type= Text
    2. Description= Country where the company is located
    3. Field Properties - General Tab:
      1. Field Size= 50
      2. Caption= Country
  6. Field Name= coyTelp
    1. Data Type= Text
    2. Description= Telephone number
    3. Field Properties - General Tab:
      1. Field Size= 30
      2. Caption= Telephone Number
      3. Input Mask= !\(999") "000\-0000
  7. Field Name= coyFax
    1. Data Type= Text
    2. Description= Fax number
    3. Field Properties - General Tab:
      1. Field Size= 30
      2. Caption= Fax Number
      3. Input Mask= !\(999") "000\-0000
  8. Field Name= coyWebsite
    1. Data Type= Text
    2. Description= Website or URL
    3. Field Properties - General Tab:
      1. Field Size= 100
      2. Caption= Website
  9. Field Name= coyEmail
    1. Data Type= Text
    2. Description= Email address, if any
    3. Field Properties - General Tab:
      1. Field Size= 100
      2. Caption= Email
  10. Field Name= coyTaxId
    1. Data Type= Text
    2. Description= Tax identity
    3. Field Properties - General Tab:
      1. Field Size= 30
      2. Caption= Tax Id

Comments

Popular posts from this blog

Functions to Open and Close DAO Database

This post describes how to create functions to open and close MS Access database. The functions involve two common methods provided by MS Access, they are OpenDatabase and Close. Opening a database, especially  used in connecting to tables and queries is the first process in accessing database. Meanwhile, closing a database is the last process in accessing database.

Function to Retrieve the Precision and Scale Property for Decimal Data Type

The uniqueness of decimal data type in Access are the existing properties named Precision and Scale. Precision property refers to the maximum number of digits in a number. Meanwhile, Scale property is the number of digits to the right of the decimal point in a number. Say for example, 123.45 has a precision of 5 and a scale of 2.

Function to Check If a Table Exists in Access Database

We can create a function to check whether a specific table exist in MS Access Database. There are at least two functions we can create to evaluate the existence of a table in Access, one for external database and the other for current database. Let's name isTableExist function for checking the existence of a table in external database and isTableExistCurrentDbs function for checking the existence of a table in current database.