I need help creating an ERD using this information. PURCHASING DATA (Option #1): 1. Purchase Requisition a. Requesting Department Number b. Requesting Manager Employee Number c. Requisition Type (stock / non-stock) d. Date e. Remarks (free-format text) f. Suggested Vendor Name g. Suggested Vendor Contact Name h. Suggested Vendor Contact Phone i. Suggested Vendor E-mail j. Suggested Vendor Address k. Body of the Purchase Requisition (multiple lines): i. Item code (internal) ii. Item code (suggested vendor) iii. Quantity requested iv. Measuring unit
I do not need it in a specific code language but rather find the entities and attributes to create an entity relationship diagram.
ER Diagram for Purchase Request
As per the given information, ER Diagram for Purchase Request has the following entities and attributes:
1. PurchaseRequest
POrderID
Pdatetime
PRequestType
Remarks
SuggestedVendor
2. RequestManager/ Employee (Name can be as per your
choice)
EmployeeNumber
EmployeeName
DeptNumber
3. OrderLines
LineID
POrderID
Itemcode
Quantity
4.Items
Itemcode
ItemName
Description
MeasuringUnit
UnitPrice
5. Vendor
VID
VName
VContactname
Phone
Email
Address
Sample Image of Purchase Request ER Diagram

As per the Diagram, Request Manager has the PurchaseRequest with the given details including datetime and suggested vendor, and 1 PurchaseRequest lists the various line items with requested quantity. Orderlines has items which has various items with item details in Items entity. These items has multiple vendors and a vendor can supply multiple items.
I need help creating an ERD using this information. PURCHASING DATA (Option #1): 1. Purchase Requisition...
You will need draw a normalized entity relationship diagram (ERD) for the case described below. You only need to show your final ERD in 3NF. Case The North Carolina Division of Employment Security wants to build a system that tracks job seeking activity for unemployed individuals. When each individual applies for unemployment (referred to as an applicant) he/she is assigned a job coach who is responsible for monitoring the applicant’s job seeking activity. The development team has tentatively identified the...
Hi I need help creating a program in JAVA. This is material from chapter 9 Objects and Classes from the Intro to JAVA textbook. Mrs. Quackenbush's Rent-A-Wreck car rental ..... Mrs. Q asked you to create a program that can help her track her growing fleet of junkers. Of course she expects you to use your best programming skills, including: 1. Plan and design what attributes/actions an automobile in a rental fleet should have (example. Track number of Trucks, SUVs,...
I need some help with to create the REA model and how textual information is converted into an REA model.You get some description of the firm's expenditure cycle, and are asked to create the REA model. Formula one sells auto parts at fourteen stores in Northern Virginia and Washington, DC. The following describes the business processes Formula One uses for the acquisition of inventory items. Formula One has a purchasing department centrally located at company headquarters in Burke, VA. The...
this is about databases and SQL, please help me with this and i
promise i will thumbs you up :) let me know if you need more info
please try to get this done i will definitely thumbs you up :))
PROJECT TOPIC: Library: Books, Copies of the books,
Patrons, Checkouts
when creating ERD diagram, the notation must be in crows
notation, attached at the bottom is an example of crows
foot notation in databases so you can understand.
PDF...
this is about databases and SQL, please help me with this and i
promise i will thumbs you up :) let me know if you need more info
please try to get this done i will definitely thumbs you up :))
PROJECT TOPIC: Library: Books, Copies of the books,
Patrons, Checkouts
when creating ERD diagram, the notation must be in crows
notation, attached at the bottom is an example of crows
foot notation in databases so you can understand.
PDF...
I need help. Valley Vineyard Conceptual Model Case Read the case then create an entity-relationship diagram that captures the essence of the problem domain. Identify the entities (diagrammed in a rectangle box) Establish and label the relationships (diagrammed in a diamond) Determine the cardinalities Add the attributes, if you diagram is too busy the attributes can be on a separate page. Be sure to note any assumptions you have made. CASE: Valley Vineyard’s customers are mainly restaurants and wine shops...
Hello, I need help answering all 8 of these questions for my BIS
422 class. I need the appropriate MySQL script to use for these
questions
Provide the SQL for the following data requests. Your SQL should
be written as a single script that can be pasted into MySQL and run
without edits. Make sure you use the proper notation for your
comments (see the practice solution for an example of the format).
There will be a 5% deduction for...
I need help with this questions on creating a chart like the one
shown below please
Good Buy, Inc. (a fictitious company) sells a variety of consumer pro- ducts through its Web site, good-buy.com. Good Buy's IT infrastructure consists of a front-end Web server that interacts with customers and a back-end ERP system that manages the inventory and performs other typical ERP functions. The sales order process begins when a customer logs on to the good-buy.com Web site. The customer...
I need help with using the infile and outfile operations in C++... Here's my assignment requirements: Assignment: Cindy uses the services of a brokerage firm to buy and sell stocks. The firm charges 1.5% service charges on the total amount for each transaction, buy or sell. When Cindy sells stocks, she would like to know if she gained or lost on a particular investment. Write a program that allows Cindy to read input from a file called Stock.txt: 1. The...
i
need help making this program
the skeleton of the code is below:
//Include the following
#include <iostream>
#include <string>
#include <fstream> //you must include this library if you wish to do file i/o
using namespace std;
/*********************************************************
//Following is the declaration of a order record
**********************************************************/
class order_record
{
public:
string cell_number;
string item_number;
double quantity;
double price;
int processing_plant;
double tax_rate;
double order_tax;
double net_cost;
double total_cost;
};
//Prototypes for your functions: input, output, and process will go...