Top Banner
Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the prior written consent of McGraw-Hill Education.
14

Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the.

Dec 22, 2015

Download

Documents

Deirdre Parsons
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the.

Chapter 6

Purchase and Payments

Business Process

Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the prior written consent of McGraw-Hill Education.

Page 2: Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the.

Learning Objectives

6-2

• LO#1 Describe the business activities that comprise the purchase and payment process

• LO#2 Develop an activity model of the purchase and payment process using BPMN

• LO#3 Understand and apply different activity modeling options

• LO#4 Develop business rules to implement controls for the purchase and payment process

• LO#5 Develop structure models for the purchase and payment process using UML class diagrams

• LO#6 Implement a relational database from the UML Class Diagram of the purchase and payment process

Page 3: Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the.

Review of Purchases and Payments Accounting

6-3

LO# 1

Page 4: Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the.

Sunset Graphics Purchases Process

1. Research prices and product availability 2. Select the best price and availability

combination and send a purchase order to the supplier

3. Receive the items from the supplier (and record the purchase and accounts payable)

4. Pay the supplier according to the credit terms

6-4

LO# 2

Page 5: Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the.

Basic Purchases BPMN Activity Model

6-5The basic activity model implements the process steps.

LO# 2

Page 6: Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the.

Collaboration Model of the Purchases Process

6-6

The collaboration model focuses on the message flows between the pools.

LO# 3

Page 7: Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the.

Adding Swimlanes to Show Functional Responsibility

6-7

Swimlanesshow

functional responsibili

ties

LO# 3

Page 8: Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the.

Business Rules Examples for Purchases Process

6-8

LO# 4

Process Steps Intention Partner Authority/Action Access Controls Application Controls

Place Order Order products from reliable suppliers at the best available prices to meet required delivery time

Manager approval required for orders > $5,000; Partner ordering products must not manage inventory

Partners preparing purchase orders cannot modify product inventory records, receive items, or pay suppliers

System must provide purchase order number control, default values, range and limit checks, and create audit trail

Receive Items Record receipt of items promptly and accurately

Partner receiving items must not be same partner that ordered the items

Partners receiving items cannot modify purchase orders or inventory records; they cannot view purchase order quantity ordered information

System must only allow partner to enter the number of items received, subject to range and limit checks on quantities received; date of receipt defaults to current date

Page 9: Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the.

Sunset’s Basic Purchases UML Class Models

6-9

LO# 5

1. Purchase Orders are commitments to purchase from the supplier.2. Receipts document the receipt of items from the supplier (when purchases

recognized).3. Cash disbursements pay for one or more receipts

Page 10: Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the.

Revised Purchases UML Class Diagram

6-10

LO# 5

Purchase Orders and Receipts collapsed into one Purchases eventsAdded Product Categories type image as defined in Chapter 5Added Supplier Categories type image to show Sunset Partner responsibility for Categories

Page 11: Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the.

Implementing UML Diagram in a Database

6-11

LO# 6

Database will contain 8 tables to implement classes and 1 linking table for the relationship between Purchases and Products.

Page 12: Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the.

Posting Foreign Keys Example

6-12

SunsetPartner

Purchases

Supplier

1..1

0..*

0..*

1..1

Partner Number posted to Purchases

Supplier Number posted to Purchases

Foreign keys implement links for one-to-many relationships.

Post towards the * and away from the 1

Page 13: Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the.

Database Relationships

6-13

Which relationship is missing? How would you implement that?

Page 14: Chapter 6 Purchase and Payments Business Process Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the.

Did you notice the similarity between the sales process and the purchase process?

6-14