part 6 Flashcards

1
Q

reasons for differences between physical inventory counts and perpetual inventory records

A

obsolenscence or other cause of decline in market value, damage, misclassification, quality issues

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

possible analytics quenstions for inventory

A

does inventory physical count match the client’s general ledger account (reconciliation)

are there any inventory items which should not be included in the inventory (cutoff analysis)

are there duplicates or omissions in source documents (duplicates and omissions)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

perpetual_inventory_ledger

A

clients books inventory counts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

get the client’s books inventory unit cost and total inventory value

A

inner_join pepertual_inventory_ledger with the sales_journal by = ‘sku’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

code line to find out total inventory in books

A

mutate(inv_value = stock_on_hand * unit cost) (from perpetual_inventory_ledger and sales_journal)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

code line to find out total inventory in real life

A

mutate(inv_value = ye_stock_on_hand * unit__cost.x) (from real_world_ye_inventory)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

get the difference between physical count and books

A

left_join perpetual_inventory_ledger with real_world_ye_inventory by = ‘sku’. filter(exception != ‘no exception, count is accurate’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

find sales cutoff errors

A

filter(invoice_date <= fyear_end & shipper_date > fyear_end) (from sales_journal)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

verify that non of cutoff errors were included in Y/E inventory are received after year end so they should not be included in this year’s inventory

A

left_join perpetual_inventory_ledger with ap_ledger by = ‘sku’ . Filter(receiver_date > fyear_end)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

omitted variables

A

missing values

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly