43
* Questions upto November - 2006 are from PE - II Gr. II and from May - 2007 onwards are from PCC Gr. II 7.1 CHAPTER Business Process Management & IT 1 THIS CHAPTER COMPRISES OF L Introduction L Business Process Management L Overview of Business Processes and Process Flow LClassification of Business Processes L BPM Implementation LAccounting Systems Automation LImpact of IT on BPM and Risks of failure of IT LBusiness Process Re- engineering LApproaches to Mapping Systems. Marks of Objective, Short Notes, Distinguish Between, Descriptive & Practical Questions OBJECTIVE QUESTIONS 2012 - Nov [7] Describe briefly terms: (iii) System Flow Chart (2 marks) Answer:

1 Management & IT

  • Upload
    others

  • View
    0

  • Download
    0

Embed Size (px)

Citation preview

Page 1: 1 Management & IT

* Questions upto November - 2006 are from PE - II Gr. II and from May -2007 onwards are from PCC Gr. II

7.1

CHAPTER

Business ProcessManagement & IT1

THIS CHAPTER COMPRISES OF

L Introduction L Business Process Management L Overview ofBusiness Processes and Process Flow LClassification of BusinessProcesses L BPM Implementation LAccounting Systems AutomationLImpact of IT on BPM and Risks of failure of IT LBusiness Process Re-engineering LApproaches to Mapping Systems.

Marks of Objective, Short Notes, Distinguish Between, Descriptive & Practical

Questions

� OBJECTIVE QUESTIONS

2012 - Nov [7] Describe briefly terms:(iii) System Flow Chart (2 marks)Answer:

Page 2: 1 Management & IT

7.2 O Solved Scanner IPCC Gr. II Paper - 7A

System Flowchart: (i) System flowchart depicts the electronic flow of data and processing

steps in an Information systems.(ii) Used by System Analysts to describe the data flow and operations for

a data processing cycle.(iii) It defines the broad processing in the organizations.(iv) It shows the origin of data, filing structure, processing to be performed,

output that is to be generated and necessity of any offline operation.

� SHORT NOTES

2013 - May [7] Write short note on the following:(ii) Program Debugging (2 marks)

Answer:Please refer 2010 - Nov [7] (c) on page no. 19

2014 - Nov [7] Write short note on the following:(b) Total Quality Management (TQM) (2 marks)Answer:Total Quality Management(TQM): Total Quality Management is amanagement mechanism designed to improve a product or process byengaging every stakeholder and all members of an organization as well asthe customers and aims at improving the quality of the products producedand the process utilized. TQM ultimately aims at complete customersatisfaction through ongoing improvements.

2015 - May [7] Write short note on the following:(a) Radical Redesign (2 marks)Answer:Radical Redesign: This describes that processes are re-designed or re-invented to achieve major improvements. BPR also advocates clean stateapproach i.e. starting afresh and re-designing the processes afresh.

2015 - Nov [7] Write short note on the following:(b) Entity-Relationship Diagram (2 marks)

� DISTINGUISH BETWEEN

Page 3: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.3

2013 - May [6] (a) Distinguish between “Condition Stub” and “ConditionEntries” in a Decision Table. (2 marks)Answer:

Condition Stub Condition Entry

Condition stub lists out theconditions or comparison that couldexist in a program. It reflects thepossible states of input-data to betested in a program.

Condition entries indicate whichcondition are being net or answerthe question in the condition stub.

2014 - Nov [1] {C} Answer the following question in brief:(a) Differentiate between flow-chart and data flow diagram. (2 marks)Answer:

S.No.

Basis ofDifference

Flow Chart Data Flow Diagram

1. Meaning Flow chart presents stepsto complete a process.

Data Flow Diagrampresents the flow ofdata.

2. Input/Output

Flow chart does not haveany input from or output toan external source.

Data Flow Diagramdescribes the path ofdata from an externalsource to internalsource or vice versa.

3. Nature Flow chart shows how tomake a system function.

Data Flow Diagramdefines the functionalityof a system.

4. Used in Flow chart is used indesigning a process.

Data Flow Diagram isused to describes thepath.

� DESCRIPTIVE QUESTIONS

Page 4: 1 Management & IT

7.4 O Solved Scanner IPCC Gr. II Paper - 7A

2006 - May [6] (c) Explain the advantages of decision tables. (5 marks)Answer :

Following are some of the advantages of decision tables:

1. Easy to draw It is easy to construct compared to flowchart.

2. Accuracy A framework for a complete and accurate statementof processing or decision logic is provided.

3. Compactdocumentation

Easily understood and effective means ofcommunication between analysts and programmersand non-technical users.

4. Directcodification

Direct conversion to computer program is possible.

5. Better Analysis Possible to check existence of all test combinationsand alternatives are shown side by side to facilitateanalysis of combinations.

6. Modularity For complex problems decision tables can be easilybroken down to micro- decision tables.

7. Non–technical Computer knowledge is not required for table users.

2006 - Nov [5] (b) Explain the various types of decision tables. (5 marks)Answer :There are three types of decision tables. They are as follows:

1 Limited EntryTables

• In a limited entry table the condition andaction statements are complete. Thecondition and action entries merely definewhether or not a condition exists or an actionshould be taken.

C Condition Entry may contain a ‘Y’ or ‘N’representing the existence or otherwise of acondition.

C Action Entry may contain a ‘X’ or ‘ –’representing the execution or otherwise of aparticular action.

Page 5: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.5

2 Extended EntryTables

In this table the action and condition statementsare not complete but are completed by actionand condition entries. Following table representsan extended entry table.

Credit Allowingfacility

R1 R2 R3 R4

Conditions: Local Customer Identification proof

OKOK

VNOT OK

NOT OKOK

NOT OKNOT OK

Actions :

Credit facilityCredit Action

Allow—

—Reject order

—Reject order

—Reject order

3 Mixed EntryTables:

It is a combination of limited and extended entrytables. While the limited and extended entry formscan be mixed within a table, only one form may beused within a condition statement/entry or anaction statement/entry. Following examplerepresents mixed entry table:

Credit Allowingfacility

R1 R2 R3 R4

Conditions: Local customerIdentification proof

YOK

YNOT OK

NOK

NNOT OK

Actions :Credit facilityCredit Action

ALLOW—

—X

—X

—X

2010 - Nov [5] What do you mean by term flow chart? Draw a program flowchart to find the sum of first 50 odd numbers. (2 + 6 = 8 marks)

Page 6: 1 Management & IT

7.6 O Solved Scanner IPCC Gr. II Paper - 7A

Answer :• Flowchart is a diagram that shows sequence of steps required to solve

a particular problem.• It is a logical flow of steps which shows sequence of operations of a

program by using symbols and inter-connectivity lines. It is like ablueprint that shows the general plan and essential details of theproposed structure.

• It allows the programmer to compare different approaches andalternatives on paper and often shows inter-relationships that are notimmediately apparent.

The required flowchart to find the sum of first 50 odd numbers is drawnbelow :

Where CAWL means Clear All Working Locations

2010 - Nov [7] Answer the question:(c) What is Program debugging ? Explain it briefly. (2 marks)Answer :Program Debugging : It is a process of finding errors in program andrectifying them by using diagnostic routine before putting the program intouse. There is a real necessity to debug a program, i.e. to cleanse it fromerrors. For this purpose, the programmers device a set of test data

Page 7: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.7

transactions to test the various alternative branches in the program. Theresults got from the computer are compared with one derived manually priorto computer processing. When the results do not match for any reason, theprogrammer then verifies the flowchart and coding sheet to hunt for the bugs.This process is called program debugging.

2011 - May [5] (b) Explain the necessity of the decision table. Discuss thedifferent parts of the decision table. (4 marks)Answer:Necessity of Decision Table:Please refer 2006 - May [6] (c) on page no.16Different Parts of Decision TablePlease refer KZ - 1 on page no. 44

2014 - Nov [2] (a) What are the various key factors to be considered inimplementing Business Process Management (BPM) in an enterprise?

(4 marks)Answer:BPM refers to the closed loop interactive management of business over theircomplete life cycle. All the key terms of the definition are explained below:1. Achievement Realizing the strategic objectives as outlined in the

organization’s strategic plan.

2. Organization The organization in this context refers to anenterprise or parts of an enterprise perhaps abusiness unit that is discrete in its own right.

3. Objectives The objectives of a BPM implementation range fromthe strategic goals of the organization through to theindividuals process goals.

4. Improvement It is about making the business processes moreefficient and effective.

5. Management It refers to the process and people performancemeasurement and management. It is aboutorganizing all the essential components andsubcomponents for a processes.

6. Essential Not every process in an organization contributestowards the achievement of the organization’sstrategic objectives. Essential processes are the

Page 8: 1 Management & IT

7.8 O Solved Scanner IPCC Gr. II Paper - 7A

ones that do.

7. Business An implementation of BPM must have an impact onthe business by delivering benefits.

2014 - Nov [2] (b) What are the major reasons for failure of BusinessProcess Management System (BPMS)? (4 marks)Answer:Reason for Failure of BPMS: The consumer is often confronted with poorcustomer service due to broken processes, inefficient processes and manualprocesses- that is the customer is often confronted (challenged) with thesilos of the organisation.C The same consumer is becoming more and more demanding with

respect to delivery time and also demanding higher quality of theproducts or services.

C The product or service is becoming more and more personalizedsupported by increased customer services.

2015 - May [1] {C} Answer the following question in brief:(a) What are the key benefits of Business Process Automation (BPA)?

(2 marks)Answer:The key benefits of Business Process Automation are as follows:1. Cost Saving: Automation leads to saving in time and labor costs

through higher efficiency and better management of the people involved.2. Strategic Edge: Today, in order to survive, businesses need to adopt

automation. Automation helps business to reach strategic edge.3. Quick Service: Automation shortens cycle times in the execution of

processes through improved and refined business work flows and helpenterprises to serve their customers faster and better.

4. Reduces Error: BPA removes human participation in the process, whichis the source of many errors.

5. Transforming data into information: BPA can, apart from collectingand storing data also analyze data and make it available in a form thatis useful for decision-making.

6. Improving the effectiveness of performance and process: In manycases, tasks that must be done manually are the bottlenecks in theprocess. Automating those manual tasks speeds up the effective

Page 9: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.9

throughput of the application.7. Making users more efficient and effective: People can focus their

energies on the tasks they do best, allowing the computers to handlethose that machines are best suited for.

2015 - Nov [1] {C} Answer the following question in brief.(a) Mention the challenges in implementing ‘Business Process Automation’.

(2 marks)

� PRACTICAL QUESTIONS

2006 - May [3] (c) Draw a flow chart to compute and print Income-tax,Surcharge and Education cess on the income of a person, where income isto be read from terminal and tax is to be calculated as per the followingrates:

Slab Rate `

(i) 1 to 1,00,000 No tax(ii) 1,00,001 to 1,50,000 @ 10% of amount above 1,00,000(iii) 1,50,001 to 2,50,000 ` 5,000 + 20% of amount above 1,50,000(iv) 2,50,001 onwards ` 25,000 + 30% of amount above

2,50,000Surcharge @ 10% on the amount of total tax, if the

income of a person exceeds ` 10,00,000Education cess 2% on the total tax (10 marks)

Page 10: 1 Management & IT

7.10 O Solved Scanner IPCC Gr. II Paper - 7A

Answer :

2006 - Nov [3] (c) An electric supply company charges the following rates forits domestic consumers :

No. of unit consumed Charges/unit(`)

For the first 200 units 1.60For the next 300 units 2.10Over 500 units 3.90Surcharge @ 20% of the bill is to be added to the charges.Draw a Flow chart for the above, which will read the consumer number

and the number of units consumed and print out the total charges with theconsumer number and the unit consumed. (10 marks)

Page 11: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.11

Answer : SCHG = SurchargeTC = Total ChargesUC = Units Consumed.CN = Consumer number.

2007 - May [4] A University has 3,000 students. These students are dividedin four categories:

(i) B. Tech(ii) M. Tech(iii) M.S.(iv) Ph.D.

Draw a flow chart for finding the percentage of the students in each category.(10 marks)

Page 12: 1 Management & IT

7.12 O Solved Scanner IPCC Gr. II Paper - 7A

Answer :

Abbreviations :ST = Student, PS1 to PS4 = Percentage,S1 to S4 = No. of Student,T = True, F = False2007 - Nov [4] An electric supply company charges the following rates fromits consumers :

No. of unit consumed Charges/unit(` )

Page 13: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.13

For the first 200 units 2.50For the next 300 units 3.50Over 500 units 5.00Computer database of the company has the following information :) Consumer Name) Address) Unit consumed) Bill date) Payment date

If the consumer pay his bill within 15 days from the bill date, 10% discountis given. If he makes the payment after 15 days from the bill date, 5%surcharge is levied. Draw a Flow chart to calculate the net amount of the billfor each consumer and print it. (10 marks)Answer :

Page 14: 1 Management & IT

7.14 O Solved Scanner IPCC Gr. II Paper - 7A

2008 - May [4] A bicycle shop in a city hires bicycles by the day at differentrates for different models as given below :

Model No. Hire rate per day(` )

Model No. 1 14.00Model No. 2 12.00Model No. 3 10.00

In order to attract customers, the shopkeeper gives a discount on the numberof days a bicycle is hired for. The policy of discount is as given below :

No. of days Discount rate(%)

1-5 0.006-10 811 and over 15

For every bicycle hired, a deposit of ` 30.00 must be paid.Develop a flow chart to print out the details for each customer such as nameof the customer, bicycle model number, number of days a bicycle is hired for,hire charges, discount and total charges including deposits. (10 marks)

Page 15: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.15

Answer :

2008 - Nov [4] A Book publisher offers discount to customers on the basisof customer type and number of copies ordered as shown below :

Page 16: 1 Management & IT

7.16 O Solved Scanner IPCC Gr. II Paper - 7A

Customer type Number of CopiesOrdered

% of Discount

Book Seller

Library

More than 10Less than or equal to 10More than 5 Less than or equal to 5

25152010

Customer number, name , type, book number, number of copies ordered andunit price are given as input. Draw a flow chart to calculate the net amountof the bill for each customer and print it.The above is to be carried out for 50 customers. (10 marks)Answer :

Page 17: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.17

2009 - May [4] Frame the problem for which the given Flowchart has beendrawn. See the Abbreviations defined below :

Cust. : Client, Prod : Product, Amt : Amount, Disc : Discount, TV :Television, FR : Fridge, MS : Music System, ST : Student (10 marks)Answer :The problem relates to ‘Discount Policy’ of a company engaged in sellingelectronic items.

Item Category of customer DiscountTV All 15%

Page 18: 1 Management & IT

7.18 O Solved Scanner IPCC Gr. II Paper - 7A

Fridge Student 12%*Others 15%*

Music System Student 10%*Others 18%**

* irrespective of order value* * subject to order value being more than ` 1 lakh.

2009 - Nov [4] (a) Write the output sequence (at least first five numbers) forthe given flowchart, if N = 0 is selected as the value for N as input.

(5 marks)Answer :(a) If N = 0 then the output sequence will be :

0 1 4 25 6762009 - Nov [4] (b) If the statement “N. = N * N” in the computation box of theflowchart is modified as “N = N * (N – 1)”. Write the output sequence (at leastfirst five numbers) for the flowchart with N = 0 as the input value for N.

(5 marks)

Page 19: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.19

Answer:If “N = N* N” is modified as “N = N* (!1)” with N = 0 as output, then theoutput sequence will be:

0 0 0 0 0

2010 - May [4] The Income-tax for the employees of an organization iscalculated on the basis of their Gross Income and the Investments made bythem, under Section 80CCC. The taxable income is calculated according tothe following rules :Taxable Income = Gross Income ! Investments provided investments areless than 1 lac. OtherwiseTaxable Income = Gross Income ! 1,00,000Following rules are applied to calculate the Income-tax, on the TaxableIncome :

Taxable Income Income-tax(i) 0 ! 1,60,000 Nil(ii) 1,60,001 ! 3,00,000 10%, on the excess of

1,60,000(iii) 3,00,001 ! 5,00,000 14,000 + 20% on the

excess of 3,00,000(iv) 5,00,001 ! and above 54,000 + 30% on the

excess of 5,00,000Also an educational cess of 3% of Income-tax is levied on all the

employees, irrespective of the income.Employee number, Name, Gross Income, Investment amount is given

as input. Draw a flow chart to calculate the Income-tax payable by eachemployee. (10 marks)

Answer :Please see answer on next page

Page 20: 1 Management & IT

7.20 O Solved Scanner IPCC Gr. II Paper - 7A

Page 21: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.21

Terms used :ENO = Employee Number ENAME = Employee NameGROSS = Gross IncomeINV = Investment madeTINC = Taxable Income IT = Income TaxECESS = Education CessITPAY = Total Income Tax payableCAWL = Clear All Working Locations

2011 - May [5] (a) For computing custom duty, the imported items areclassified into 4 categories. The rate of duty to be levied on each categoryof items is given below :

Category Class of goods % custom duty on the (K) value of goods (V)1 Food and beverages 102 Textile and leather goods 153 Heavy machinery 204 Luxury items 40

Draw a flowchart to compute the custom duty. (4 marks)Answer :Please see answer on next page

Page 22: 1 Management & IT

7.22 O Solved Scanner IPCC Gr. II Paper - 7A

2011 - Nov [6] A housing society having 400 members pay electricity bills atthe following rates : No. of units consumed Charges/unit

(`)For the first 200 units 2.65For the next 300 units 3.90Over 500 units 4.75Surcharge @ 5% of the bill is to be added to the charges. Draw a flow chart which will read the house number and the number of unitsconsumed. Print the total charges with the house number and the unitsconsumed. (8 marks)

Page 23: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.23

Answer:Abbreviations used :House No. - House NumberUnits - No. of units consumedAmt - AmountChrg - Charges

Page 24: 1 Management & IT

7.24 O Solved Scanner IPCC Gr. II Paper - 7A

2012 - May [6] For the flow chart given below:(a) Print the output displayed for using the given two sets of data:

X Y1st Set : 15 202nd Set : 35 30 (4 marks)

(b) What interpretation do you make from the instructions given in the flowchart? (3 marks)

(c) Comment about the storage of the variables used in the instructions ofthe flow chart. (1 mark)

Answer:(a) For first set, X=15, Y=20

Instruction OutputRead X, Y 15, 20Print X, Y 15, 20 ............1st PrintX = X + Y X = 15 + 20 = 35Y = X - Y Y = 35 - 20 = 15

Page 25: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.25

X = X - Y X = 35 - 15 - 20Print X, Y 20, 15 ............2nd Print

1st Print 15 202nd Print 20 15

For second set, X = 35, Y = 30Instruction OutputRead X, Y 35, 30Print X, Y 35, 30 ..............1st PrintX = X + Y X = 35 + 30 = 65Y = X - Y Y = 65 - 30 = 35X = X - Y X = 65 - 35 - 30Print X, Y 30, 35 ..............2nd Print

1st Print 35 302nd Print 30 35

(b) The given set of instructions in the flow chart is the steps forswapping/interchanging the values of two variable without involving thethird variable. As clearly interpreted from the output, the values of X andY in the both the value sets have got interchanged.Note: The interpretation involves two important factors:(i) Interchange of values of two variables X and Y.(ii) Without involving the third or temporary storage/variable.

(c) The comments about the storage of the variables used in the instructionsof the flow chart are as followsX = X + Y // The value of X has been assigned the value of (X+Y)...(i)Y = X - Y // The value of Y has been assigned the value of (X-Y)..(ii)X = X - Y // The value of X has again been assigned the value of (X-Y), where the value of X and Y are calculated from the statement (i) and (ii)

2012 - Nov [6] Draw a flow chart to print the square of odd numbers between10 to 50 and also print the sum of their square. (8 marks)

Answer:The required flowchart is as follows:

Page 26: 1 Management & IT

7.26 O Solved Scanner IPCC Gr. II Paper - 7A

I: Stores the value of odd number between 10 to 50 at each step. SQ : Stores the calculated value of square of each odd number at eachstep. SUM : Stores the sum of the squares of all the odd numbers till that step.

2013 - May [6] (b) Top town Municipality, is levying annual House Tax, asper following rules:

Size of House in Sq. House tax rate perMetre Square Metre

Less than 100 NilUpto Next 400 ` 10Upto Next 500 ` 20More than 1000 ` 25

There is a surcharge of 5% of the value of House Tax. Taking into accountthe above factors, draw a flow chart to compute appropriate total House Taxincluding surcharge for any one house. (6 marks)

Page 27: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.27

Answer:

2013 - Nov [6] A book publisher of Information Technology offers discountto its customers on the basis of customer type as detailed below:

Customer Type DiscountBook Seller 30%Library 20%Student 10%

Further if number of copies purchased is more than 20, then additionaldiscount of 5% is allowed irrespective of customer type. Number of books,unit price of each book and customer type are given as input.Draw a flow chart to calculate the net amount after all discount and printcustomer type, number of copies and net amount. (8 marks)

Page 28: 1 Management & IT

7.28 O Solved Scanner IPCC Gr. II Paper - 7A

Answer:

2014 - May [6] A Housing Society in a newly developed Smart City hasprovided several advanced security systems to each house in that city.Based on the value of these advanced security systems installed in eachhouse, the Society has divided all the houses in four categories and fixed thecriteria for annual maintenance charges as under:

House Category Maintenance charges as % of value ofadvanced security systems installed at house

A 8%

Page 29: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.29

B 6%

C 4%

D 3%In addition to above there is a service tax @ 12.36% on the amount ofmaintenance charges. Considering house number and value of advancedsecurity system installed, as input, draw a flow chart to have printed outputas house number, maintenance charges, service tax and the total amount tobe paid by each house owner. (8 marks)Answer:

Page 30: 1 Management & IT

7.30 O Solved Scanner IPCC Gr. II Paper - 7A

2015 - May [2] ABC Limited is a software development company, whichappointed 50 software engineers in August’ 2014 at a monthly salary of` 30,000. All these engineers shall be entitled for an increment in theirmonthly salary after six months. The increment on present monthly salaryshall be based on their performance to be evaluated on a 100 marks scaleas per details given below:– Performance Marks < 70, then increment shall be 10% of present salary.– 70 # Performance marks < 80, then increment shall be 20% of present

salary.– Performance Marks $ 80, then increment shall be 30% of present salary.Draw a Flow-Chart to enable to print the details like name of the engineer,performance marks, monthly increment amount and revised monthly salaryfor each of these 50 engineers. (8 marks)Answer:Let us define the variables first:PM: Performance MarksRESAL: Revised Monthly Salary,INCAMT: Increment Amount,NAME: Name of Engineer,N: Pointer to track number of Engineers,INCREMENT = 0

Page 31: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.31

Page 32: 1 Management & IT

7.32 O Solved Scanner IPCC Gr. II Paper - 7A

2015 - Nov [2] An E-Commerce site has the following cash back offers.(i) If the purchase mode is via website, an initial discount of 10% is given

on the bill amount.(ii) If the purchase mode is via phone app, an initial discount of 20% is

given on the bill amount.(iii) If done via any other purchase mode, the customer is not eligible for

any discount.Every purchase eligible to discount is given 10 reward points.(a) If the reward points are between 100 and 200 points, the customer

is eligible for a further 30% discount on the bill amount after initialdiscount.

(b) If the reward points exceed 200 points, the customer is eligible fora further 40% discount on the bill amount after initial discount.Taking purchase mode, bill amount and number of purchases asinput, draw a flowchart to calculate and display the total rewardpoints and total bill amount payable by the customer after all thediscount calculation. (8 marks)

KZ - 1 Knowledge Zone

Decision - Table

Meaning A decision table is a table which may accompanya flowchart defining the possible contingenciesconsidered within the program and appropriatecourse of action for the same. It is a tabularpresentation of system or program logic.Program logic is represented with the help of atable. They are based on IF / THENrelationships. The general format of a decisiontable is shown below.

Page 33: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.33

General Format of Decision Table

Table Heading

Decision Rule (R1)

Decision Rule (R2)

Decision Rule(R…)

Condition Stub Condition Entry (Yes/ No)

Condition Entry(Yes/ No)

Condition Entry

(Yes/ No)

Action Stub. Action Entry

( X / -)

Action Entry

( X / -)

Action Entry

( X / -)

The components of a decision table in detail are as follows:

1 Table Heading The name or number of decision table specifiesthe problem. Sometimes decision table arebroken into parts for complex problems, wherethe table heading would identify the part of theprogram being represented.

2 Condition Stub It sets forth a list of all the conditions that could exist in the program logic.

3 Action Stub It lists all the possible actions which may betaken to solve the problem.

4 Decision Rules A unique combinations of ‘conditions and ‘actions’ to be taken under those condition.There may be one or more decision rulesnumbered 1,2,3,4……n

Page 34: 1 Management & IT

7.34 O Solved Scanner IPCC Gr. II Paper - 7A

5 Condition Entry The possible permutations of answers to thequestions in the condition stub. The conditionentry can be ‘Y’ for yes or ‘N’ for No only.

6 Action Entry It lists in the columns corresponding to thecondition entries, the action contingent upon theset of answers to questions of that column.

KZ - 2 Knowledge Zone

Data Flow Diagrams

1. Concept of Data Flow Diagram (DFD) :C A Data flow diagram graphically described the flow of data

within an organisation. It is used to document existingsystem and to plan and design new ones. There is no idealway to develop a DFD; different problems call for differentmethods. A DFD is composed of four basic elements : datasources and destinations, data flows, transformationprocesses, and data stores. Each is represented on a DFDby one of the symbols shown in figure given below.

Data Flow Diagram Symbols

Symbol Explanation

Represent DataSources anddestinations

The people and organizations thatsend data to and receive data fromthe system are represented bysquare boxes. Data destinationsare also referred to as data sinks.

Represent Data flows The flow of data into or out of aprocess is represented by curvedor straight lines with arrows :

Page 35: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.35

RepresentTransformationprocess

The processes that transform datafrom inputs to outputs arerepresented by circles. They areoften referred to as bubbles.

Represent Datastores

The storage of data isrepresented by two horizontallines.

These four symbols are combined to show how data are processed For Example :In data flow

C Input to process (3) is data flow, (4) which comes from data source(1). The outputs of process (3) are data flows (4) and (5) Data flow (5)is sent to data destination (10). Process (6) uses data flow (4) and (7)as input and produces data flow (9) and (7) as output. Data flow (7)comes from and returns to data store (8). Data flow is sent to datadestination (11).

C Above figure assigns specific titles to each of the processes depictedin symbols.

C These figures will be used to examine the four basic elements of aDFD in more detail.

Page 36: 1 Management & IT

7.36 O Solved Scanner IPCC Gr. II Paper - 7A

2. Components of Data Flow Diagram :

(i) Data Flows C It represents the flow of data betweenprocesses, data stores, data source anddestinations.

C Data flow arrows are labelled to indicate thetype of data being passed.

C Data that pass between data stores and a datasource/destination must go through some formof data processing, i.e. through atransformation process.

(ii) Data SourceandDestinations

C An entity can be both a Source and aDestination.

C A source or destination symbol on the DFDrepresents an organisation or individual thatsends or receives data used or produced by thesystem.

C A Data Flow can consist of one or more piecesof datum. As data flow may be composed ofmore than one data element, it must bedetermined whether to show one or more lines.The determining factor is whether the dataelements always flow together.

(iii) Processes C Process represent the transformation of datainto information.

C The output is sent to Data Stores or DataDestinations.

(iv) Data Stores C A Data Store is a temporary or permanentrepository of data.

C DFDs do not show the physical storagemedium (disks, paper, etc.) used to store thedata.

C Like other DFD elements, Data Store namesshould be descriptive.

C As in above figure, item (8) data store arerepresented by horizontal lines, with the datastore's name recorded inside.

Page 37: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.37

3. Sub-division of Data Flow Diagrams(i) N e e d f o r

Sub-DivisionData flow Diagrams are sub-divided intosuccessively lower levels in order to provideincreasing amount of detail. This is because onlyfew systems can be fully diagramed on one sheetof paper. Moreover, different Users have differentneeds, and hence, various DFD levels coveringeach user area can only satisfy their requirements.

(ii) ContextDiagram :

The highest-level DFD is referred to as a ContextDiagram. A context diagram provides the readerwith a summary level view of a system. It depicts adata processing system and the external entitiesthat are the sources and destinations of thesystem's inputs and outputs.

(iii) An exampleContextDiagram

is shown below. Example shows the payrollprocessing procedures. On an inference, it isunderstood that the Payroll Processing Systemreceives time cards from the Personnel Departmentand employee data from the Human ResourcesDepartment. When these data are processed, thesystem produces-(a) Tax reports for payments into Government

Account,(b) Employee pay cheques,(c) A cheque for the entire salary amount to be

deposited in the Bank Account, and (d) Payroll Reports for submission to Management

for review.

Page 38: 1 Management & IT

7.38 O Solved Scanner IPCC Gr. II Paper - 7A

4. Sub-division of DFD: Sub-dividing the Context Diagram leads tomodules of lesser levels. In the aforesaid example, if preparation ofemployee pay cheques is taken as a lower level, the activitiesconcerned with it will be represented by a separate sub-divided DFD.The sub-divided DFD for preparation of pay cheques will involveactivities like computation of monthly pay, tax deductions, otherdeductions, recovery of advances, drawing up cheques in theemployees name, preparation of payroll voucher and updation of thepayroll Master File.

The process of sub - divided Data is represented below :

[Figure shows the sub-divided Context Diagram of DFD]

Page 39: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.39

KZ - 3 Knowledge Zone

Business Process Re-engineering (BPR)

BusinessProcesses

Business processes are simply set of activities thattransform a set of inputs into set of outputs (goodsor services)

In today’s competitive market place, the businessprocesses needs to be improved to stay in themarket. In present days, customers have command over themarket, and they are insisting on better qualityproducts and services; and companies are forced toimprove their business process in order to satisfy thecustomers’ needs.

Example of BusinessProcess

1. Forecasting - Shows Production quantities,Sales figures, Fund flows. etc. over a period oftime, say next five years.

2. Funds Management - Gives an outline of thenecessity of funds and the means of raisingsuch funds, Uncertainty and Risk factors arealso considered. A Simulation with "What if"type analysis is carried out.

3. Quality Control - Ensuring that the finishedproducts meet the desired quality standards.

4. Material Requirement Planning - Process ofmaking new products from Raw materials and

Page 40: 1 Management & IT

7.40 O Solved Scanner IPCC Gr. II Paper - 7A

include production scheduling requirement planning, activities for monitoring and planningof actual production.

5. Budget Allocation - Estimation of the desirablemix of funds allocated to different functionsusing computerised algorithms/relationships.

6. Price Planning - Determining the price of theproducts. Uses technology application to pricingsupport, such as commercial database services,feedback and sensitivity analysis.

BPR: Objectives BPR aims at major transformation of the businessprocesses to achieve dramatic improvement. Thebusiness objectives of the enterprise e.g. profits,customer-satisfaction through optimal cost, quality,deliveries, etc. are achieved by transformation of thebusiness processes which may, or may not, requirethe use of Information Technology (IT).

BPRDramaticImprovement

BPR aims at to achieve dramatic improvements bymajor transformation of business processes. Business Process Re-engineering (BPR) is thefundamental re-thinking and radical re-design ofprocesses to achieve dramatic improvement, incritical, contemporary measures of performancesuch as cost, quality, service and speed. 1. Fundamental Re-thinking means asking the

question "why do you do what you do ?". Itseeks to eliminate a business processaltogether, if it does not add any value to thecustomer. It seeks to ensure that only value-added activities and processes are carried out by the business.

2. Radical Re-design means BPR aims at re-inventing and not just enhancing or improving. A"clean slate approach" of BPR says that"Whatever you were doing in the past is all

Page 41: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.41

wrong", "do not get biased by it" or "re-assembleyour new system to re-design it afresh". It focuses on "new methods of doing things" ratherthan just a "better way of doing the oldmethods".

3. Dramatic Achievement means substantialpositive growth, e.g. to achieve 80% or 90%reduction in delivery time, WIP stocks etc. andnot just mere 2% reduction. This is possible onlyby making major improvements andbreakthroughs, and not small incrementalchanges like that in Total Quality Management(TQM) or suggestions schemes.

Principles of BPR 1. In many organizations the business process issplit into many activities and same is assignedto different people. So, single person cannot beheld responsible for any business outcome. Insuch cases, it is difficult to determine the statusof work and even more difficult to debug the process problem if it occurs. BPR designs theprocess, which avoids this type of problem i.e.wherever possible there should be single pointresponsibility for any business process.

2. When different people perform work in parallel,it is essential to design a process that demandscontinuous communication and co-ordinationamong these people. Otherwise, Integrationproblems are sure to come.

3. Data should be stored in on-line commondatabase form, so that once collected it neednever be re-entered. Using these principles of BPR the processes inthe organization are re-designed to improve theprocesses in terms of cost, accuracy, qualityand speed etc.

Page 42: 1 Management & IT

7.42 O Solved Scanner IPCC Gr. II Paper - 7A

Need for BPR 1. The objective of introducing an ERP program isto implement such applications andinfrastructure architecture, to effectively andcompletely support the Enterprise’s businessplan and business processes.

2. ERP integrates effectively with businessmanagement issues like BPR, TQM, MassCustomisation, Service Orientation and VirtualCorporation etc.

3. When an enterprise does not have optimisedbusiness processes, ERP implementation needsa process re-engineering which enables tocapture knowledge of the experts into thesystem, thereby gaining considerable benefits inproductivity. Hence, there is a need for re-engineeringbusiness processes.

Role of BPR inERP

We know that ERP provides the best businesspractices therefore, ERP use require organizations,first to change their business processes to makethem in best possible manner as specified by ERPor simply said, carry out BPR if you want to get truebenefits of ERP i.e. for successful ERPimplementation first BPR is required.

Page 43: 1 Management & IT

[Chapter # 1] Business Process Management & IT O 7.43

* This table contains the Similarly Asked Questions. Please pay moreattention to such questions.

*Similarly Asked Questions

No. Category Question Marks Frequency

1 ShortNotes/

Descriptive

Write short notes on the following:Program Debugging

10 - Nov [7] (c), 13 - May [7] (ii) 2, 2 2 Times

2 Practical Practical Question of : 06 - Nov [3] (c), 11 - Nov [6]

10, 8 2 Times

Table Showing Marks of Compulsory Questions

Year 11M

11N

12M

12N

13M

13N

14M

14N

15M

15N

Dt. Between 2

Descriptive 2 2

Total 2 2 2