{"id":78252,"date":"2021-12-01T07:57:13","date_gmt":"2021-12-01T07:57:13","guid":{"rendered":"https:\/\/papersspot.com\/blog\/2021\/12\/01\/28-11-2021-expense-reporting-database-page-3-expense-reporting-database-tables-you-will\/"},"modified":"2021-12-01T07:57:13","modified_gmt":"2021-12-01T07:57:13","slug":"28-11-2021-expense-reporting-database-page-3-expense-reporting-database-tables-you-will","status":"publish","type":"post","link":"https:\/\/papersspot.com\/blog\/2021\/12\/01\/28-11-2021-expense-reporting-database-page-3-expense-reporting-database-tables-you-will\/","title":{"rendered":"28\/11\/2021 Expense Reporting Database Page 3 Expense Reporting Database Tables You will"},"content":{"rendered":"<p>28\/11\/2021 Expense Reporting Database Page 3<\/p>\n<p> Expense Reporting Database Tables<\/p>\n<p> You will use the Expense Reporting Database in assignments 1 to 4. This document describes the business process supported, database diagram with tables and relationships, columns, and populated tables with rows.<\/p>\n<p> Business Processes Supported<\/p>\n<p> The Expense Reporting Database contains tables to track users and expense reports (report summary and items) along with support tables for organizational units, expense categories, assets, and budget limits on expense category spending. Table 1 briefly summarizes the meaning of each table.<\/p>\n<p> Table 1: Tables in the Expense Reports Database<\/p>\n<p> Table Name<\/p>\n<p> Description<\/p>\n<p> Users<\/p>\n<p> Details about users who can submit expense reports<\/p>\n<p> ExpenseReport<\/p>\n<p> Details about summaries of reimbursable items<\/p>\n<p> ExpenseItem<\/p>\n<p> Details about individual items for reimbursement on expense reports<\/p>\n<p> ExpCat<\/p>\n<p> Details about expense categories in which expense items are associated<\/p>\n<p> Asset<\/p>\n<p> Details about company assets that are associated with some expense items<\/p>\n<p> OrgUnit<\/p>\n<p> Details about organizational units in which users are members<\/p>\n<p> BudgetItem<\/p>\n<p> Details about expense budgets by organizational unit and expense category<\/p>\n<p> The Expense Reporting Database supports two business processes, expense reporting and budgeting of expense categories for organizational units. For expense reporting (Figure 1), users provide documentation for expense items and then submit an expense report with all items for approval. Each expense item involves an expense category, an optional asset, and an expense amount. Each expense report has dates for submission and status (pending, approved, or denied) along with the identifiers of the submitting user and approving user. The status defaults to pending on submission but changes to approved or denied upon completion of the review process. The review of an expense report compares amounts of each expense item to limits for associated expense categories. <\/p>\n<p> Figure 1: Expense Reporting Workflow<\/p>\n<p> The expense reporting process involves inserts and updates of the ExpenseReport and ExpenseItem tables with references to the Asset, Users, and ExpCat tables. In the review of an expense report, updates to approved expense amounts (ExpApprAmt) in expense items can be reduced from actual expense amounts (ExpAmt) if limits of associated expense categories are exceeded. Approval of an expense report triggers updates to the BudgetItem table to increase actual amounts of expense categories used for expense items.<\/p>\n<p> For annual budgeting, an organizational unit estimates the amount for each expense category. Each approved expense report increases the actual amount for expense categories referenced in expense items of the expense report. Periodically, a budget analyst in an organizational unit compares the actual amounts to budgeted amounts for selected expense categories. Estimated amounts in a new year can be adjusted based on comparisons of estimated and actual amounts of the current and previous years. The annual budgeting process involves insertions and updates to the BudgetItem table with references to the ExpCat and OrgUnit, tables. <\/p>\n<p> Database Diagram<\/p>\n<p> Figure 2 shows an Oracle database diagram with notation indicating important parts of the database design. In Figure 2, P indicates a primary key, F indicates a foreign key, U\/UF indicates unique columns that are not primary keys, and the red dot indicates a required column. In the BudgetItem table, the combination of BIYear (U), OrgNo (UF), and ECNo (UF) is unique. Solid lines indicate required relationships in which foreign keys do not accept null values with Figure 2 showing six required relationships. Dashed lines indicate optional relationships in which the associated foreign keys allow null values with Figure 2 showing three optional relationships. Figure 2 indicates two relationships from Users to ExpenseReport, required SubmitUserNo and optional ApprUserNo. OrgUnit contains an optional self-referencing relationship represented by OrgParentNo indicating the hierarchical structure of organization units. The X by ExpenseItem in the 1-M relationship indicates the CASCADE DELETE for action on referenced rows.<\/p>\n<p> Columns<\/p>\n<p> Tables 2 to 7 describe the columns in each table. The Data Type column indicates the types of values in each column. The Comments column indicates restrictions on columns such as the maximum characters, nulls allowed, and foreign keys. Note that actions on referenced rows are the default RESTRICT except for CASCADE DELETE for ExpenseItem.ERNo.<\/p>\n<p> Figure 2: Oracle Database Diagram for the Expense Reporting Database<\/p>\n<p> Table 2: Columns in the Asset Table<\/p>\n<p> Column<\/p>\n<p> Data Type<\/p>\n<p> Comments<\/p>\n<p> AssetNo<\/p>\n<p> Positive whole number<\/p>\n<p> Primary key<\/p>\n<p> AssetDesc<\/p>\n<p> Variable length string<\/p>\n<p> Max of 255 characters; nulls not allowed<\/p>\n<p> Table 3: Columns in the Users Table<\/p>\n<p> Column Name<\/p>\n<p> Data Type<\/p>\n<p> Comments<\/p>\n<p> UserNo<\/p>\n<p> Whole number<\/p>\n<p> Primary key<\/p>\n<p> UserFirstName<\/p>\n<p> Variable length string<\/p>\n<p> Max of 50 characters; nulls not allowed<\/p>\n<p> UserLastName<\/p>\n<p> Variable length string<\/p>\n<p> Max of 50 characters; nulls not allowed<\/p>\n<p> UserPhone<\/p>\n<p> Variable length string<\/p>\n<p> Max of 20 characters; nulls allowed<\/p>\n<p> UserEmail<\/p>\n<p> Variable length string<\/p>\n<p> Max of 50 characters; unique; nulls not allowed<\/p>\n<p> OrgNo<\/p>\n<p> Positive whole number<\/p>\n<p> Foreign Key to the OrgUnit table; nulls not allowed <\/p>\n<p> Table 4: Columns in the ExpCat Table<\/p>\n<p> Column<\/p>\n<p> Data Type<\/p>\n<p> Comments<\/p>\n<p> ECNo<\/p>\n<p> Positive whole number<\/p>\n<p> Primary key<\/p>\n<p> ECName<\/p>\n<p> Variable length string<\/p>\n<p> Max of 255 characters; nulls not allowed<\/p>\n<p> ECLimit<\/p>\n<p> Dollar Amount<\/p>\n<p> Monetary amount allowed per expense category expanse item; default is 0 (zero); nulls not allowed<\/p>\n<p> Table 5: Columns in the OrgUnit Table<\/p>\n<p> Column<\/p>\n<p> Data Type<\/p>\n<p> Comments<\/p>\n<p> OrgNo<\/p>\n<p> Positive whole number<\/p>\n<p> Primary key<\/p>\n<p> OrgName<\/p>\n<p> Variable length string<\/p>\n<p> Maximum length of 50 characters; nulls not allowed<\/p>\n<p> OrgParentNo<\/p>\n<p> Whole number<\/p>\n<p> Refers to OrgNo; nulls allowed for root organizational units (organizations without a parent organization)<\/p>\n<p> Table 6: Columns in the BudgetItem Table<\/p>\n<p> Column<\/p>\n<p> Data Type<\/p>\n<p> Comments<\/p>\n<p> BINo<\/p>\n<p> Positive whole number<\/p>\n<p> Primary key<\/p>\n<p> BIYear<\/p>\n<p> Whole number<\/p>\n<p> 4-digit year. Must be greater than or equal to 2000; default should be current year; use a function to generate the default value; nulls not allowed<\/p>\n<p> BIAmt<\/p>\n<p> Dollar Amount<\/p>\n<p> The budgeted monetary amount for the year; nulls not allowed; default is 0 (zero)<\/p>\n<p> BIActual<\/p>\n<p> Dollar Amount<\/p>\n<p> An ongoing sum of the actual monetary amount of expenses approved for the category\/org unit combination in the year; default is 0 (zero)<\/p>\n<p> OrgNo<\/p>\n<p> Whole Number<\/p>\n<p> Foreign Key to the OrgUnit table; nulls not allowed<\/p>\n<p> ECNo<\/p>\n<p> Whole number<\/p>\n<p> Foreign Key to the ExpCat table; nulls not allowed<\/p>\n<p> Table 7: Columns in the ExpenseReport Table<\/p>\n<p> Column<\/p>\n<p> Data Type<\/p>\n<p> Comments<\/p>\n<p> ERNo<\/p>\n<p> Whole number<\/p>\n<p> Primary key<\/p>\n<p> ERDesc<\/p>\n<p> Variable length string<\/p>\n<p> Max of 255 characters; nulls not allowed<\/p>\n<p> ERSubmitDate<\/p>\n<p> Timestamp<\/p>\n<p> Date and time submitted; default should be the current timestamp (use a function to generate the default value); nulls not allowed<\/p>\n<p> ERStatusDate<\/p>\n<p> Timestamp<\/p>\n<p> Date and time when the status changed; defaults to the current timestamp; changes when the expense report is approved or denied; use a function to generate the default value; nulls not allowed<\/p>\n<p> ERStatus<\/p>\n<p> Variable length string<\/p>\n<p> Default value is \u201cPENDING\u201d meaning that the expense report is waiting for approval; this field should be limited to one of the following values \u201cPENDING\u201d, \u201cAPPROVED\u201d, or \u201cDENIED\u201d; nulls not allowed<\/p>\n<p> SubmitUserNo<\/p>\n<p> Whole number<\/p>\n<p> Foreign key to the Users table; identifies the user who submitted the expense report; nulls not allowed<\/p>\n<p> ApprUserNo<\/p>\n<p> Whole number<\/p>\n<p> Foreign key to the Users table; identifies the user who approves the expense report; nulls allowed<\/p>\n<p> Table 8: Columns in the ExpenseItem Table<\/p>\n<p> Column<\/p>\n<p> Data Type<\/p>\n<p> Comments<\/p>\n<p> EINo<\/p>\n<p> Whole number<\/p>\n<p> Primary key<\/p>\n<p> ExpDesc<\/p>\n<p> Variable length string<\/p>\n<p> Max of 255 characters; nulls not allowed<\/p>\n<p> ExpDate<\/p>\n<p> Date\/Time<\/p>\n<p> Date that the expense was incurred; default should be the current date (use a function to generate the default value)<\/p>\n<p> ExpAmt<\/p>\n<p> Dollar amount<\/p>\n<p> Monetary amount of the expense; nulls not allowed; default is 0 (zero)<\/p>\n<p> ExpApprAmt<\/p>\n<p> Dollar amount<\/p>\n<p> Monetary approved amount of the expense; default is 0 (zero)<\/p>\n<p> ERNo<\/p>\n<p> Positive whole number<\/p>\n<p> Foreign key to the ExpenseReport table; identifies the expense report that contains the item; nulls not allowed; CASCADE DELETE for action on referenced rows<\/p>\n<p> ECNo<\/p>\n<p> Whole number<\/p>\n<p> Foreign key to the ExpCat table; nulls not allowed<\/p>\n<p> AssetNo<\/p>\n<p> Whole number<\/p>\n<p> Foreign key to the Asset table; Nulls allowed<\/p>\n<p> Populated Tables with Rows<\/p>\n<p> Asset<\/p>\n<p> AssetNo<\/p>\n<p> AssetDesc<\/p>\n<p> 1<\/p>\n<p> Company Car<\/p>\n<p> 2<\/p>\n<p> Company Jet<\/p>\n<p> 3<\/p>\n<p> Company Van<\/p>\n<p> 4<\/p>\n<p> Company Truck<\/p>\n<p> 5<\/p>\n<p> Company Apartment<\/p>\n<p> ExpCat<\/p>\n<p> ECNo<\/p>\n<p> ECName<\/p>\n<p> ECLimit<\/p>\n<p> 1<\/p>\n<p> Meal<\/p>\n<p> 50.00 <\/p>\n<p> 2<\/p>\n<p> Car Rental<\/p>\n<p> 100.00 <\/p>\n<p> 3<\/p>\n<p> Snack<\/p>\n<p> 25.00 <\/p>\n<p> 4<\/p>\n<p> Local Transportation<\/p>\n<p> 100.00 <\/p>\n<p> 5<\/p>\n<p> Airfare<\/p>\n<p> 5,000.00 <\/p>\n<p> 6<\/p>\n<p> Entertainment<\/p>\n<p> 25.00 <\/p>\n<p> 7<\/p>\n<p> Lodging<\/p>\n<p> 300.00 <\/p>\n<p> 8<\/p>\n<p> Admission Fee<\/p>\n<p> 2,000.00 <\/p>\n<p> 9<\/p>\n<p> Gas<\/p>\n<p> 35.00 <\/p>\n<p> OrgUnit<\/p>\n<p> OrgNo<\/p>\n<p> OrgName<\/p>\n<p> OrgParentNo<\/p>\n<p> 1<\/p>\n<p> Accounting<\/p>\n<p> 2<\/p>\n<p> Sales<\/p>\n<p> 3<\/p>\n<p> IT<\/p>\n<p> 4<\/p>\n<p> IT Development<\/p>\n<p> 3<\/p>\n<p> 5<\/p>\n<p> Accounts Receivable<\/p>\n<p> 1<\/p>\n<p> 6<\/p>\n<p> IT Support<\/p>\n<p> 3<\/p>\n<p> 7<\/p>\n<p> Accounts Payable<\/p>\n<p> 1<\/p>\n<p> Users<\/p>\n<p> UserNo<\/p>\n<p> UserFirstName<\/p>\n<p> UserLastName<\/p>\n<p> UserPhone<\/p>\n<p> UserEmail<\/p>\n<p> OrgNo<\/p>\n<p> 1<\/p>\n<p> Sue<\/p>\n<p> Herdon<\/p>\n<p> (206)339-3312<\/p>\n<p> sherdon@org.com<\/p>\n<p> 3<\/p>\n<p> 2<\/p>\n<p> Bill<\/p>\n<p> Jones<\/p>\n<p> (303)205-8833<\/p>\n<p> bjones@org.com<\/p>\n<p> 6<\/p>\n<p> 3<\/p>\n<p> Joe<\/p>\n<p> Smith<\/p>\n<p> (303)443-9943<\/p>\n<p> jsmith@org.com<\/p>\n<p> 4<\/p>\n<p> 4<\/p>\n<p> William<\/p>\n<p> Freed<\/p>\n<p> (303)445-3355<\/p>\n<p> wfreed@org.com<\/p>\n<p> 1<\/p>\n<p> 5<\/p>\n<p> Sara<\/p>\n<p> Jonson<\/p>\n<p> (303)445-3321<\/p>\n<p> sjonson@org.com<\/p>\n<p> 7<\/p>\n<p> 6<\/p>\n<p> Tom<\/p>\n<p> Sanchez<\/p>\n<p> (303)445-3322<\/p>\n<p> tsanchez@org.com<\/p>\n<p> 5<\/p>\n<p> 7<\/p>\n<p> Marry<\/p>\n<p> Blake<\/p>\n<p> (303)445-3333<\/p>\n<p> mblake@org.com<\/p>\n<p> 2<\/p>\n<p> 8<\/p>\n<p> Jaime<\/p>\n<p> Garcia<\/p>\n<p> (303)357-4566<\/p>\n<p> jgarcia@org.com<\/p>\n<p> 3<\/p>\n<p> ExpenseReport<\/p>\n<p> ERNo<\/p>\n<p> ERDesc<\/p>\n<p> ERSubmitdate<\/p>\n<p> ERStatusDate<\/p>\n<p> ERStatus<\/p>\n<p> SubmitUserNo<\/p>\n<p> ApprUserNo<\/p>\n<p> 1<\/p>\n<p> Sales Presentation<\/p>\n<p> 8\/10\/2020 10:00<\/p>\n<p> 8\/26\/2020 11:00<\/p>\n<p> APPROVED<\/p>\n<p> 3<\/p>\n<p> 4<\/p>\n<p> 2<\/p>\n<p> Conference<\/p>\n<p> 8\/16\/2020 10:00<\/p>\n<p> 8\/17\/2020 10:00<\/p>\n<p> APPROVED<\/p>\n<p> 3<\/p>\n<p> 1<\/p>\n<p> 3<\/p>\n<p> Training Course<\/p>\n<p> 9\/23\/2020 11:30<\/p>\n<p> 9\/25\/2020 11:00<\/p>\n<p> APPROVED<\/p>\n<p> 2<\/p>\n<p> 1<\/p>\n<p> 4<\/p>\n<p> IT Group Lunch<\/p>\n<p> 9\/29\/2020 10:00<\/p>\n<p> 9\/29\/2020 16:30<\/p>\n<p> APPROVED<\/p>\n<p> 1<\/p>\n<p> 4<\/p>\n<p> 5<\/p>\n<p> Sales Presentation<\/p>\n<p> 9\/30\/2020 10:00<\/p>\n<p> 10\/1\/2020 13:10<\/p>\n<p> APPROVED<\/p>\n<p> 7<\/p>\n<p> 4<\/p>\n<p> 6<\/p>\n<p> Conference<\/p>\n<p> 10\/3\/2020 11:30<\/p>\n<p> 10\/3\/2020 15:10<\/p>\n<p> PENDING<\/p>\n<p> 5<\/p>\n<p> 7<\/p>\n<p> Entertainment<\/p>\n<p> 10\/5\/2020 10:30<\/p>\n<p> 10\/15\/2020 14:30<\/p>\n<p> DENIED<\/p>\n<p> 5<\/p>\n<p> 4<\/p>\n<p> ExpenseItem<\/p>\n<p> EINo<\/p>\n<p> ExpDesc<\/p>\n<p> ExpDate<\/p>\n<p> ExpAmt<\/p>\n<p> ExpApprAmt<\/p>\n<p> ERNo<\/p>\n<p> ECNo<\/p>\n<p> AssetNo<\/p>\n<p> 1<\/p>\n<p> Car<\/p>\n<p> 8\/9\/2020<\/p>\n<p> 150.00 <\/p>\n<p> 150.00 <\/p>\n<p> 1<\/p>\n<p> 7<\/p>\n<p> 2<\/p>\n<p> Hilton<\/p>\n<p> 8\/9\/2020<\/p>\n<p> 99.00 <\/p>\n<p> 99.00 <\/p>\n<p> 1<\/p>\n<p> 7<\/p>\n<p> 3<\/p>\n<p> Gas<\/p>\n<p> 8\/9\/2020<\/p>\n<p> 35.00 <\/p>\n<p> 20.00 <\/p>\n<p> 1<\/p>\n<p> 9<\/p>\n<p> 1<\/p>\n<p> 4<\/p>\n<p> Junk Food<\/p>\n<p> 8\/10\/2020<\/p>\n<p> 10.00 <\/p>\n<p> 10.00 <\/p>\n<p> 1<\/p>\n<p> 3<\/p>\n<p> 5<\/p>\n<p> Comfort Inn<\/p>\n<p> 8\/16\/2020<\/p>\n<p> 225.00 <\/p>\n<p> 225.00 <\/p>\n<p> 2<\/p>\n<p> 7<\/p>\n<p> 6<\/p>\n<p> Airfare<\/p>\n<p> 8\/13\/2020<\/p>\n<p> 325.00 <\/p>\n<p> 325.00 <\/p>\n<p> 2<\/p>\n<p> 5<\/p>\n<p> 7<\/p>\n<p> Dinner<\/p>\n<p> 8\/15\/2020<\/p>\n<p> 23.94 <\/p>\n<p> 23.94 <\/p>\n<p> 2<\/p>\n<p> 1<\/p>\n<p> 8<\/p>\n<p> Dinner<\/p>\n<p> 8\/14\/2020<\/p>\n<p> 32.50 <\/p>\n<p> 32.50 <\/p>\n<p> 2<\/p>\n<p> 1<\/p>\n<p> 9<\/p>\n<p> Dinner<\/p>\n<p> 8\/13\/2020<\/p>\n<p> 19.64 <\/p>\n<p> 19.64 <\/p>\n<p> 2<\/p>\n<p> 1<\/p>\n<p> 10<\/p>\n<p> Concert Tickets<\/p>\n<p> 8\/15\/2020<\/p>\n<p> 25.00 <\/p>\n<p> 25.00 <\/p>\n<p> 2<\/p>\n<p> 6<\/p>\n<p> 11<\/p>\n<p> Breakfast<\/p>\n<p> 8\/15\/2020<\/p>\n<p> 10.32 <\/p>\n<p> 10.32 <\/p>\n<p> 2<\/p>\n<p> 3<\/p>\n<p> 12<\/p>\n<p> Motel 6<\/p>\n<p> 9\/23\/2020<\/p>\n<p> 57.95 <\/p>\n<p> 57.95 <\/p>\n<p> 3<\/p>\n<p> 7<\/p>\n<p> 13<\/p>\n<p> Gas<\/p>\n<p> 9\/23\/2020<\/p>\n<p> 15.94 <\/p>\n<p> 15.94 <\/p>\n<p> 3<\/p>\n<p> 9<\/p>\n<p> 3<\/p>\n<p> 14<\/p>\n<p> Apartment 1<\/p>\n<p> 9\/29\/2020<\/p>\n<p> 299.00 <\/p>\n<p> 255.00 <\/p>\n<p> 4<\/p>\n<p> 7<\/p>\n<p> 5<\/p>\n<p> 15<\/p>\n<p> Breakfast<\/p>\n<p> 9\/29\/2020<\/p>\n<p> 15.00 <\/p>\n<p> 13.88 <\/p>\n<p> 4<\/p>\n<p> 1<\/p>\n<p> 16<\/p>\n<p> Flight<\/p>\n<p> 9\/30\/2020<\/p>\n<p> 3,500.00 <\/p>\n<p> 3,000.00 <\/p>\n<p> 5<\/p>\n<p> 5<\/p>\n<p> 2<\/p>\n<p> 17<\/p>\n<p> Airport Bus<\/p>\n<p> 9\/30\/2020<\/p>\n<p> 100.00 <\/p>\n<p> 25.00 <\/p>\n<p> 5<\/p>\n<p> 4<\/p>\n<p> 18<\/p>\n<p> Trade Show<\/p>\n<p> 10\/1\/2020<\/p>\n<p> 150.00 <\/p>\n<p> 125.00 <\/p>\n<p> 5<\/p>\n<p> 8<\/p>\n<p> 19<\/p>\n<p> Party<\/p>\n<p> 10\/10\/2020<\/p>\n<p> 350.00<\/p>\n<p> 0<\/p>\n<p> 7<\/p>\n<p> 1<\/p>\n<p> BudgetItem<\/p>\n<p> BINo<\/p>\n<p> BIYear<\/p>\n<p> OrgNo<\/p>\n<p> ECNo<\/p>\n<p> BIAmt<\/p>\n<p> BIActual<\/p>\n<p> 1<\/p>\n<p> 2020<\/p>\n<p> 1<\/p>\n<p> 1<\/p>\n<p> 4,000.00 <\/p>\n<p> 76.08 <\/p>\n<p> 2<\/p>\n<p> 2020<\/p>\n<p> 1<\/p>\n<p> 2<\/p>\n<p> 3,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 3<\/p>\n<p> 2020<\/p>\n<p> 1<\/p>\n<p> 3<\/p>\n<p> 2,000.00 <\/p>\n<p> 10.32 <\/p>\n<p> 4<\/p>\n<p> 2020<\/p>\n<p> 1<\/p>\n<p> 4<\/p>\n<p> 500.00 <\/p>\n<p> 0.00 <\/p>\n<p> 5<\/p>\n<p> 2020<\/p>\n<p> 1<\/p>\n<p> 5<\/p>\n<p> 10,000.00 <\/p>\n<p> 325.00 <\/p>\n<p> 6<\/p>\n<p> 2020<\/p>\n<p> 1<\/p>\n<p> 6<\/p>\n<p> 2,000.00 <\/p>\n<p> 25.00 <\/p>\n<p> 7<\/p>\n<p> 2020<\/p>\n<p> 1<\/p>\n<p> 7<\/p>\n<p> 10,000.00 <\/p>\n<p> 225.00 <\/p>\n<p> 8<\/p>\n<p> 2020<\/p>\n<p> 1<\/p>\n<p> 8<\/p>\n<p> 6,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 9<\/p>\n<p> 2020<\/p>\n<p> 1<\/p>\n<p> 9<\/p>\n<p> 5,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 10<\/p>\n<p> 2020<\/p>\n<p> 2<\/p>\n<p> 1<\/p>\n<p> 10,000.00 <\/p>\n<p> 167.00 <\/p>\n<p> 11<\/p>\n<p> 2020<\/p>\n<p> 2<\/p>\n<p> 2<\/p>\n<p> 7,500.00 <\/p>\n<p> 98.00 <\/p>\n<p> 12<\/p>\n<p> 2020<\/p>\n<p> 2<\/p>\n<p> 3<\/p>\n<p> 4,000.00 <\/p>\n<p> 10.75 <\/p>\n<p> 13<\/p>\n<p> 2020<\/p>\n<p> 2<\/p>\n<p> 4<\/p>\n<p> 1,500.00 <\/p>\n<p> 5.50 <\/p>\n<p> 14<\/p>\n<p> 2020<\/p>\n<p> 2<\/p>\n<p> 5<\/p>\n<p> 15,000.00 <\/p>\n<p> 650.00 <\/p>\n<p> 15<\/p>\n<p> 2020<\/p>\n<p> 2<\/p>\n<p> 6<\/p>\n<p> 5,000.00 <\/p>\n<p> 6.79 <\/p>\n<p> 16<\/p>\n<p> 2020<\/p>\n<p> 2<\/p>\n<p> 7<\/p>\n<p> 12,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 17<\/p>\n<p> 2020<\/p>\n<p> 2<\/p>\n<p> 8<\/p>\n<p> 7,500.00 <\/p>\n<p> 0.00 <\/p>\n<p> 18<\/p>\n<p> 2020<\/p>\n<p> 2<\/p>\n<p> 9<\/p>\n<p> 7,500.00 <\/p>\n<p> 0.00 <\/p>\n<p> 19<\/p>\n<p> 2020<\/p>\n<p> 3<\/p>\n<p> 1<\/p>\n<p> 4,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 20<\/p>\n<p> 2020<\/p>\n<p> 3<\/p>\n<p> 2<\/p>\n<p> 3,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 21<\/p>\n<p> 2020<\/p>\n<p> 3<\/p>\n<p> 3<\/p>\n<p> 2,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 22<\/p>\n<p> 2020<\/p>\n<p> 3<\/p>\n<p> 4<\/p>\n<p> 500.00 <\/p>\n<p> 24.00 <\/p>\n<p> 23<\/p>\n<p> 2020<\/p>\n<p> 3<\/p>\n<p> 5<\/p>\n<p> 10,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 24<\/p>\n<p> 2020<\/p>\n<p> 3<\/p>\n<p> 6<\/p>\n<p> 2,000.00 <\/p>\n<p> 75.00 <\/p>\n<p> 25<\/p>\n<p> 2020<\/p>\n<p> 3<\/p>\n<p> 7<\/p>\n<p> 10,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 26<\/p>\n<p> 2020<\/p>\n<p> 3<\/p>\n<p> 8<\/p>\n<p> 10,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 27<\/p>\n<p> 2020<\/p>\n<p> 3<\/p>\n<p> 9<\/p>\n<p> 5,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 28<\/p>\n<p> 2020<\/p>\n<p> 4<\/p>\n<p> 1<\/p>\n<p> 1,500.00 <\/p>\n<p> 0.00 <\/p>\n<p> 29<\/p>\n<p> 2020<\/p>\n<p> 4<\/p>\n<p> 2<\/p>\n<p> 1,200.00 <\/p>\n<p> 0.00 <\/p>\n<p> 30<\/p>\n<p> 2020<\/p>\n<p> 4<\/p>\n<p> 3<\/p>\n<p> 1,000.00 <\/p>\n<p> 10.00 <\/p>\n<p> 31<\/p>\n<p> 2020<\/p>\n<p> 4<\/p>\n<p> 4<\/p>\n<p> 250.00 <\/p>\n<p> 0.00 <\/p>\n<p> 32<\/p>\n<p> 2020<\/p>\n<p> 4<\/p>\n<p> 5<\/p>\n<p> 4,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 33<\/p>\n<p> 2020<\/p>\n<p> 4<\/p>\n<p> 6<\/p>\n<p> 1,500.00 <\/p>\n<p> 0.00 <\/p>\n<p> 34<\/p>\n<p> 2020<\/p>\n<p> 4<\/p>\n<p> 7<\/p>\n<p> 2,000.00 <\/p>\n<p> 99.00 <\/p>\n<p> 35<\/p>\n<p> 2020<\/p>\n<p> 4<\/p>\n<p> 8<\/p>\n<p> 8,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 36<\/p>\n<p> 2020<\/p>\n<p> 4<\/p>\n<p> 9<\/p>\n<p> 650.00 <\/p>\n<p> 35.00 <\/p>\n<p> 37<\/p>\n<p> 2020<\/p>\n<p> 5<\/p>\n<p> 1<\/p>\n<p> 1,500.00 <\/p>\n<p> 0.00 <\/p>\n<p> 38<\/p>\n<p> 2020<\/p>\n<p> 5<\/p>\n<p> 2<\/p>\n<p> 1,200.00 <\/p>\n<p> 0.00 <\/p>\n<p> 39<\/p>\n<p> 2020<\/p>\n<p> 5<\/p>\n<p> 3<\/p>\n<p> 1,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 40<\/p>\n<p> 2020<\/p>\n<p> 5<\/p>\n<p> 4<\/p>\n<p> 250.00 <\/p>\n<p> 0.00 <\/p>\n<p> 41<\/p>\n<p> 2020<\/p>\n<p> 5<\/p>\n<p> 5<\/p>\n<p> 4,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 42<\/p>\n<p> 2020<\/p>\n<p> 5<\/p>\n<p> 6<\/p>\n<p> 1,500.00 <\/p>\n<p> 0.00 <\/p>\n<p> 43<\/p>\n<p> 2020<\/p>\n<p> 5<\/p>\n<p> 7<\/p>\n<p> 2,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 44<\/p>\n<p> 2020<\/p>\n<p> 5<\/p>\n<p> 8<\/p>\n<p> 5,500.00 <\/p>\n<p> 0.00 <\/p>\n<p> 45<\/p>\n<p> 2020<\/p>\n<p> 5<\/p>\n<p> 9<\/p>\n<p> 350.00 <\/p>\n<p> 0.00 <\/p>\n<p> 46<\/p>\n<p> 2020<\/p>\n<p> 6<\/p>\n<p> 1<\/p>\n<p> 1,500.00 <\/p>\n<p> 0.00 <\/p>\n<p> 47<\/p>\n<p> 2020<\/p>\n<p> 6<\/p>\n<p> 2<\/p>\n<p> 1,200.00 <\/p>\n<p> 0.00 <\/p>\n<p> 48<\/p>\n<p> 2020<\/p>\n<p> 6<\/p>\n<p> 3<\/p>\n<p> 1,000.00 <\/p>\n<p> 2.99 <\/p>\n<p> 49<\/p>\n<p> 2020<\/p>\n<p> 6<\/p>\n<p> 4<\/p>\n<p> 250.00 <\/p>\n<p> 0.00 <\/p>\n<p> 50<\/p>\n<p> 2020<\/p>\n<p> 6<\/p>\n<p> 5<\/p>\n<p> 4,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 51<\/p>\n<p> 2020<\/p>\n<p> 6<\/p>\n<p> 6<\/p>\n<p> 1,500.00 <\/p>\n<p> 5.95 <\/p>\n<p> 52<\/p>\n<p> 2020<\/p>\n<p> 6<\/p>\n<p> 7<\/p>\n<p> 2,000.00 <\/p>\n<p> 57.95 <\/p>\n<p> 53<\/p>\n<p> 2020<\/p>\n<p> 6<\/p>\n<p> 8<\/p>\n<p> 5,500.00 <\/p>\n<p> 1,000.00 <\/p>\n<p> 54<\/p>\n<p> 2020<\/p>\n<p> 6<\/p>\n<p> 9<\/p>\n<p> 350.00 <\/p>\n<p> 15.94 <\/p>\n<p> 55<\/p>\n<p> 2020<\/p>\n<p> 7<\/p>\n<p> 1<\/p>\n<p> 1,500.00 <\/p>\n<p> 0.00 <\/p>\n<p> 56<\/p>\n<p> 2020<\/p>\n<p> 7<\/p>\n<p> 2<\/p>\n<p> 1,200.00 <\/p>\n<p> 0.00 <\/p>\n<p> 57<\/p>\n<p> 2020<\/p>\n<p> 7<\/p>\n<p> 3<\/p>\n<p> 1,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 58<\/p>\n<p> 2020<\/p>\n<p> 7<\/p>\n<p> 4<\/p>\n<p> 250.00 <\/p>\n<p> 0.00 <\/p>\n<p> 59<\/p>\n<p> 2020<\/p>\n<p> 7<\/p>\n<p> 5<\/p>\n<p> 4,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 60<\/p>\n<p> 2020<\/p>\n<p> 7<\/p>\n<p> 6<\/p>\n<p> 1,500.00 <\/p>\n<p> 0.00 <\/p>\n<p> 61<\/p>\n<p> 2020<\/p>\n<p> 7<\/p>\n<p> 7<\/p>\n<p> 2,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 62<\/p>\n<p> 2020<\/p>\n<p> 7<\/p>\n<p> 8<\/p>\n<p> 8,000.00 <\/p>\n<p> 0.00 <\/p>\n<p> 63<\/p>\n<p> 2020<\/p>\n<p> 7<\/p>\n<p> 9<\/p>\n<p> 650.00 <\/p>\n<p> 0.00 <\/p>\n<p> 64<\/p>\n<p> 2019<\/p>\n<p> 1<\/p>\n<p> 1<\/p>\n<p> 3000<\/p>\n<p> 3250.08<\/p>\n<p> 65<\/p>\n<p> 2019<\/p>\n<p> 1<\/p>\n<p> 2<\/p>\n<p> 4000<\/p>\n<p> 3500<\/p>\n<p> 66<\/p>\n<p> 2019<\/p>\n<p> 1<\/p>\n<p> 3<\/p>\n<p> 2000<\/p>\n<p> 2100.32<\/p>\n<p> 67<\/p>\n<p> 2019<\/p>\n<p> 1<\/p>\n<p> 4<\/p>\n<p> 500<\/p>\n<p> 352<\/p>\n<p> 68<\/p>\n<p> 2019<\/p>\n<p> 1<\/p>\n<p> 5<\/p>\n<p> 9900<\/p>\n<p> 9877<\/p>\n<p> 69<\/p>\n<p> 2019<\/p>\n<p> 1<\/p>\n<p> 6<\/p>\n<p> 2000<\/p>\n<p> 1580<\/p>\n<p> 70<\/p>\n<p> 2019<\/p>\n<p> 1<\/p>\n<p> 7<\/p>\n<p> 10000<\/p>\n<p> 10225<\/p>\n<p> 71<\/p>\n<p> 2019<\/p>\n<p> 1<\/p>\n<p> 8<\/p>\n<p> 6000<\/p>\n<p> 6000<\/p>\n<p> 72<\/p>\n<p> 2019<\/p>\n<p> 1<\/p>\n<p> 9<\/p>\n<p> 5000<\/p>\n<p> 6200<\/p>\n<p> 73<\/p>\n<p> 2019<\/p>\n<p> 2<\/p>\n<p> 1<\/p>\n<p> 10000<\/p>\n<p> 9167<\/p>\n<p> 74<\/p>\n<p> 2019<\/p>\n<p> 2<\/p>\n<p> 2<\/p>\n<p> 7500<\/p>\n<p> 7498<\/p>\n<p> 75<\/p>\n<p> 2019<\/p>\n<p> 2<\/p>\n<p> 3<\/p>\n<p> 4000<\/p>\n<p> 3910.75<\/p>\n<p> 76<\/p>\n<p> 2019<\/p>\n<p> 2<\/p>\n<p> 4<\/p>\n<p> 1500<\/p>\n<p> 1635.5<\/p>\n<p> 77<\/p>\n<p> 2019<\/p>\n<p> 2<\/p>\n<p> 5<\/p>\n<p> 15000<\/p>\n<p> 14650<\/p>\n<p> 78<\/p>\n<p> 2019<\/p>\n<p> 2<\/p>\n<p> 6<\/p>\n<p> 5000<\/p>\n<p> 4996.79<\/p>\n<p> 79<\/p>\n<p> 2019<\/p>\n<p> 2<\/p>\n<p> 7<\/p>\n<p> 12000<\/p>\n<p> 12870<\/p>\n<p> 80<\/p>\n<p> 2019<\/p>\n<p> 2<\/p>\n<p> 8<\/p>\n<p> 7500<\/p>\n<p> 6500<\/p>\n<p> 81<\/p>\n<p> 2019<\/p>\n<p> 2<\/p>\n<p> 9<\/p>\n<p> 7500<\/p>\n<p> 7800<\/p>\n<p> 82<\/p>\n<p> 2019<\/p>\n<p> 3<\/p>\n<p> 1<\/p>\n<p> 4000<\/p>\n<p> 3950<\/p>\n<p> 83<\/p>\n<p> 2019<\/p>\n<p> 3<\/p>\n<p> 2<\/p>\n<p> 3000<\/p>\n<p> 2970<\/p>\n<p> 84<\/p>\n<p> 2019<\/p>\n<p> 3<\/p>\n<p> 3<\/p>\n<p> 2000<\/p>\n<p> 2150<\/p>\n<p> 85<\/p>\n<p> 2019<\/p>\n<p> 3<\/p>\n<p> 4<\/p>\n<p> 500<\/p>\n<p> 424<\/p>\n<p> 86<\/p>\n<p> 2019<\/p>\n<p> 3<\/p>\n<p> 5<\/p>\n<p> 10000<\/p>\n<p> 9990<\/p>\n<p> 87<\/p>\n<p> 2019<\/p>\n<p> 3<\/p>\n<p> 6<\/p>\n<p> 2000<\/p>\n<p> 2075<\/p>\n<p> 88<\/p>\n<p> 2019<\/p>\n<p> 3<\/p>\n<p> 7<\/p>\n<p> 10000<\/p>\n<p> 9880<\/p>\n<p> 89<\/p>\n<p> 2019<\/p>\n<p> 3<\/p>\n<p> 8<\/p>\n<p> 10000<\/p>\n<p> 11990<\/p>\n<p> 90<\/p>\n<p> 2019<\/p>\n<p> 3<\/p>\n<p> 9<\/p>\n<p> 5000<\/p>\n<p> 4770<\/p>\n<p> 91<\/p>\n<p> 2019<\/p>\n<p> 4<\/p>\n<p> 1<\/p>\n<p> 1500<\/p>\n<p> 1450<\/p>\n<p> 92<\/p>\n<p> 2019<\/p>\n<p> 4<\/p>\n<p> 2<\/p>\n<p> 1200<\/p>\n<p> 1110<\/p>\n<p> 93<\/p>\n<p> 2019<\/p>\n<p> 4<\/p>\n<p> 3<\/p>\n<p> 1000<\/p>\n<p> 1110<\/p>\n<p> 94<\/p>\n<p> 2019<\/p>\n<p> 4<\/p>\n<p> 4<\/p>\n<p> 250<\/p>\n<p> 255<\/p>\n<p> 95<\/p>\n<p> 2019<\/p>\n<p> 4<\/p>\n<p> 5<\/p>\n<p> 4000<\/p>\n<p> 4440<\/p>\n<p> 96<\/p>\n<p> 2019<\/p>\n<p> 4<\/p>\n<p> 6<\/p>\n<p> 1500<\/p>\n<p> 1390<\/p>\n<p> 97<\/p>\n<p> 2019<\/p>\n<p> 4<\/p>\n<p> 7<\/p>\n<p> 2000<\/p>\n<p> 1899<\/p>\n<p> 98<\/p>\n<p> 2019<\/p>\n<p> 4<\/p>\n<p> 8<\/p>\n<p> 8000<\/p>\n<p> 7440<\/p>\n<p> 99<\/p>\n<p> 2019<\/p>\n<p> 4<\/p>\n<p> 9<\/p>\n<p> 650<\/p>\n<p> 635<\/p>\n<p> 100<\/p>\n<p> 2019<\/p>\n<p> 5<\/p>\n<p> 1<\/p>\n<p> 1500<\/p>\n<p> 1330<\/p>\n<p> 101<\/p>\n<p> 2019<\/p>\n<p> 5<\/p>\n<p> 2<\/p>\n<p> 1200<\/p>\n<p> 1290<\/p>\n<p> 102<\/p>\n<p> 2019<\/p>\n<p> 5<\/p>\n<p> 3<\/p>\n<p> 1000<\/p>\n<p> 960<\/p>\n<p> 103<\/p>\n<p> 2019<\/p>\n<p> 5<\/p>\n<p> 4<\/p>\n<p> 250<\/p>\n<p> 250<\/p>\n<p> 104<\/p>\n<p> 2019<\/p>\n<p> 5<\/p>\n<p> 5<\/p>\n<p> 4000<\/p>\n<p> 3690<\/p>\n<p> 105<\/p>\n<p> 2019<\/p>\n<p> 5<\/p>\n<p> 6<\/p>\n<p> 1500<\/p>\n<p> 1790<\/p>\n<p> 106<\/p>\n<p> 2019<\/p>\n<p> 5<\/p>\n<p> 7<\/p>\n<p> 2000<\/p>\n<p> 1990<\/p>\n<p> 107<\/p>\n<p> 2019<\/p>\n<p> 5<\/p>\n<p> 8<\/p>\n<p> 5500<\/p>\n<p> 5450<\/p>\n<p> 108<\/p>\n<p> 2019<\/p>\n<p> 5<\/p>\n<p> 9<\/p>\n<p> 350<\/p>\n<p> 340<\/p>\n<p> 109<\/p>\n<p> 2019<\/p>\n<p> 6<\/p>\n<p> 1<\/p>\n<p> 1500<\/p>\n<p> 1400<\/p>\n<p> 110<\/p>\n<p> 2019<\/p>\n<p> 6<\/p>\n<p> 2<\/p>\n<p> 1200<\/p>\n<p> 1420<\/p>\n<p> 111<\/p>\n<p> 2019<\/p>\n<p> 6<\/p>\n<p> 3<\/p>\n<p> 1000<\/p>\n<p> 1112.99<\/p>\n<p> 112<\/p>\n<p> 2019<\/p>\n<p> 6<\/p>\n<p> 4<\/p>\n<p> 250<\/p>\n<p> 240<\/p>\n<p> 113<\/p>\n<p> 2019<\/p>\n<p> 6<\/p>\n<p> 5<\/p>\n<p> 4000<\/p>\n<p> 3610<\/p>\n<p> 114<\/p>\n<p> 2019<\/p>\n<p> 6<\/p>\n<p> 6<\/p>\n<p> 1500<\/p>\n<p> 1485.95<\/p>\n<p> 115<\/p>\n<p> 2019<\/p>\n<p> 6<\/p>\n<p> 7<\/p>\n<p> 2000<\/p>\n<p> 2057.95<\/p>\n<p> 116<\/p>\n<p> 2019<\/p>\n<p> 6<\/p>\n<p> 8<\/p>\n<p> 5500<\/p>\n<p> 5000<\/p>\n<p> 117<\/p>\n<p> 2019<\/p>\n<p> 6<\/p>\n<p> 9<\/p>\n<p> 350<\/p>\n<p> 415.94<\/p>\n<p> 118<\/p>\n<p> 2019<\/p>\n<p> 7<\/p>\n<p> 1<\/p>\n<p> 1500<\/p>\n<p> 1450<\/p>\n<p> 119<\/p>\n<p> 2019<\/p>\n<p> 7<\/p>\n<p> 2<\/p>\n<p> 1200<\/p>\n<p> 1110<\/p>\n<p> 120<\/p>\n<p> 2019<\/p>\n<p> 7<\/p>\n<p> 3<\/p>\n<p> 1000<\/p>\n<p> 880<\/p>\n<p> 121<\/p>\n<p> 2019<\/p>\n<p> 7<\/p>\n<p> 4<\/p>\n<p> 250<\/p>\n<p> 260<\/p>\n<p> 122<\/p>\n<p> 2019<\/p>\n<p> 7<\/p>\n<p> 5<\/p>\n<p> 4000<\/p>\n<p> 3990<\/p>\n<p> 123<\/p>\n<p> 2019<\/p>\n<p> 7<\/p>\n<p> 6<\/p>\n<p> 1500<\/p>\n<p> 1450<\/p>\n<p> 124<\/p>\n<p> 2019<\/p>\n<p> 7<\/p>\n<p> 7<\/p>\n<p> 2000<\/p>\n<p> 2001<\/p>\n<p> 125<\/p>\n<p> 2019<\/p>\n<p> 7<\/p>\n<p> 8<\/p>\n<p> 8000<\/p>\n<p> 7960<\/p>\n<p> 126<\/p>\n<p> 2019<\/p>\n<p> 7<\/p>\n<p> 9<\/p>\n<p> 650<\/p>\n<p> 560<\/p>\n","protected":false},"excerpt":{"rendered":"<p>28\/11\/2021 Expense Reporting Database Page 3 Expense Reporting Database Tables You will use the Expense Reporting Database in assignments 1 to 4. This document describes the business process supported, database diagram with tables and relationships, columns, and populated tables with rows. Business Processes Supported The Expense Reporting Database contains tables to track users and expense [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[10],"class_list":["post-78252","post","type-post","status-publish","format-standard","hentry","category-research-paper-writing","tag-writing"],"_links":{"self":[{"href":"https:\/\/papersspot.com\/blog\/wp-json\/wp\/v2\/posts\/78252","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/papersspot.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/papersspot.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/papersspot.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/papersspot.com\/blog\/wp-json\/wp\/v2\/comments?post=78252"}],"version-history":[{"count":0,"href":"https:\/\/papersspot.com\/blog\/wp-json\/wp\/v2\/posts\/78252\/revisions"}],"wp:attachment":[{"href":"https:\/\/papersspot.com\/blog\/wp-json\/wp\/v2\/media?parent=78252"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/papersspot.com\/blog\/wp-json\/wp\/v2\/categories?post=78252"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/papersspot.com\/blog\/wp-json\/wp\/v2\/tags?post=78252"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}