In our accounting database, we have two subaccounts that are part of the primary accounts. They are some sort of derivative accounts for the primary accounts. The two subaccounts may serve as profit center, cost center, organization unit, vendor, customer, tax, etc. The subaccounts are stored in two tables, one for subaccounts 1 and the other for subaccounts 2. Following are the explanation for both two tables.
Table name: tblSubAccounts1
The tblSubAccounts1 can serve as the table to store data related with vendors, costumers, divisions, or departments. In this case, the tblSubAccounts1 used to store division or department data. Fields in the table are as follows.- Field Name= subAccountCode1
- Data Type= Text
- Description= Type code for subaccount 1
- Field Properties - General Tab:
- Field Size= 3
- Caption= Subaccount Code
- Field Name= subAccountName1
- Data Type= Text
- Description= Type name for subaccount 1
- Field Properties - General Tab:
- Field Size= 100
- Caption= Subaccount Name
- Field Name= subAccountDescription1
- Data Type= Text
- Description= Type description for subaccount 1
- Field Properties - General Tab:
- Field Size= 150
- Caption= Description
- Primary key: subAccountCode1
Table name: tblSubAccounts2
The tblSubAccounts2 can serve as the table to store data related with products, projects, or services. In this case, the tblSubAccounts2 serve as the project data. Following are the required fields.- Field Name= subAccountCode2
- Data Type= Text
- Description= Type subaccount code 2
- Field Properties - General Tab:
- Field Size= 3
- Caption= Subaccount Code
- Field Name= subAccountName2
- Data Type= Text
- Description= Type name for subaccount 2
- Field Properties - General Tab:
- Field Size= 100
- Caption= Subaccount Name
- Field Name= subAccountDescription2
- Data Type= Text
- Description= Type description for subaccount 2
- Field Properties - General Tab:
- Field Size= 150
- Caption= Description
- Primary key: subAccountCode2
Comments
Post a Comment