System, method and computer program product for a customer-centric collaborative protocol6901393Abstract A system, method and computer program product are provided for affording customer-centric collaborative decision making in a business-to-business framework. Initially, a minimum set of attributes is defined. Thereafter, first information regarding each of the minimum set of attributes is received from a receiving business. Second information is then received regarding proposed products or services in terms of the minimum set of attributes. Such second information is received from a supplying business. In use, a decision process is executed based on the first information and the second information as to which products or services is suitable for the receiving business. Claims 1. A method for providing customer-centric collaborative decision making in a business-to-business framework, comprising the steps of: Description FIELD OF THE INVENTION
With this enormous capability of an object to represent just about any logically separable matters, OOP allows the software developer to design and implement a computer program that is a model of some aspects of reality, whether that reality is a physical entity, a process, a system, or a composition of matter. Since the object can represent anything, the software developer can create an object which can be used as a component in a larger software project in the future. If 90% of a new OOP software program consists of proven, existing components made from preexisting reusable objects, then only the remaining 10% of the new software project has to be written and tested from scratch. Since 90% already came from an inventory of extensively tested reusable objects, the potential domain from which an error could originate is 10% of the program. As a result, OOP enables software developers to build objects out of other, previously built objects. This process closely resembles complex machinery being built out of assemblies and sub-assemblies. OOP technology, therefore, makes software engineering more like hardware engineering in that software is built from existing components, which are available to the developer as objects. All this adds up to an improved quality of the software as well as an increased speed of its development. Programming languages are beginning to fully support the OOP principles, such as encapsulation, inheritance, polymorphism, and composition-relationship. With the advent of the C++ language, many commercial software developers have embraced OOP. C++ is an OOP language that offers a fast, machine-executable code. Furthermore, C++ is suitable for both commercial-application and systems-programming projects. For now, C++ appears to be the most popular choice among many OOP programmers, but there is a host of other OOP languages, such as Smalltalk, Common Lisp Object System (CLOS), and Eiffel. Additionally, OOP capabilities are being added to more traditional popular computer programming languages such as Pascal. The benefits of object classes can be summarized, as follows:
Class libraries are very flexible. As programs grow more complex, more programmers are forced to reinvent basic solutions to basic problems over and over again. A relatively new extension of the class library concept is to have a framework of class libraries. This framework is more complex and consists of significant collections of collaborating classes that capture both the small scale patterns and major mechanisms that implement the common requirements and design in a specific application domain. They were first developed to free application programmers from the chores involved in displaying menus, windows, dialog boxes, and other standard user interface elements for personal computers. Frameworks also represent a change in the way programmers think about the interaction between the code they write and code written by others. In the early days procedural programming, the programmer called libraries provided by the operating system to perform certain tasks, but basically the program executed down the page from start to finish, and the programmer was solely responsible for the flow of control. This was appropriate for printing out paychecks, calculating a mathematical table, or solving other problems with a program that executed in just one way. The development of graphical user interfaces began to turn this procedural programming arrangement inside out. These interfaces allow the user, rather than program logic, to drive the program and decide when certain actions should be performed. Today, most personal computer software accomplishes this by means of an event loop which monitors the mouse, keyboard, and other sources of external events and calls the appropriate parts of the programmer's code according to actions that the user performs. The programmer no longer determines the order in which events occur. Instead, a program is divided into separate pieces that are called at unpredictable times and in an unpredictable order. By relinquishing control in this way to users, the developer creates a program that is much easier to use. Nevertheless, individual pieces of the program written by the developer still call libraries provided by the operating system to accomplish certain tasks, and the programmer must still determine the flow of control within each piece after it's called by the event loop. Application code still "sits on top of" the system. Even event loop programs require programmers to write a lot of code that should not need to be written separately for every application. The concept of an application framework carries the event loop concept further. Instead of dealing with all the nuts and bolts of constructing basic menus, windows, and dialog boxes and then making these things all work together, programmers using application frameworks start with working application code and basic user interface elements in place. Subsequently, they build from there by replacing some of the generic capabilities of the framework with the specific capabilities of the intended application. Application frameworks reduce the total amount of code that a programmer has to write from scratch. However, because the framework is really a generic application that displays windows, supports copy and paste, and so on, the programmer can also relinquish control to a greater degree than event loop programs permit. The framework code takes care of almost all event handling and flow of control, and the programmer's code is called only when the framework needs it (e.g., to create or manipulate a proprietary data structure). A programmer writing a framework program not only relinquishes control to the user (as is also true for event loop programs), but also relinquishes the detailed flow of control within the program to the framework. This approach allows the creation of more complex systems that work together in interesting ways, as opposed to isolated programs, having custom code, being created over and over again for similar problems. Thus, as is explained above, a framework basically is a collection of cooperating classes that make up a reusable design solution for a given problem domain. It typically includes objects that provide default behavior (e.g., for menus and windows), and programmers use it by inheriting some of that default behavior and overriding other behavior so that the framework calls application code at the appropriate times. There are three main differences between frameworks and class libraries:
Thus, through the development of frameworks for solutions to various problems and programming tasks, significant reductions in the design and development effort for software can be achieved. A preferred embodiment of the invention utilizes HyperText Markup Language (HTML) to implement documents on the Internet together with a general-purpose secure communication protocol for a transport medium between the client and the Newco. HTTP or other protocols could be readily substituted for HTML without undue experimentation. Information on these products is available in T. Berners-Lee, D. Connoly, "RFC 1866: Hypertext Markup Language—2.0" (November 1995); and R. Fielding, H, Frystyk, T. Berners-Lee, J. Gettys and J. C. Mogul, "Hypertext Transfer Protocol—HTTP/1.1: HTTP Working Group Internet Draft" (May 2, 1996). HTML is a simple data format used to create hypertext documents that are portable from one platform to another. HTML documents are SGML documents with generic semantics that are appropriate for representing information from a wide range of domains. HTML has been in use by the World-Wide Web global information initiative since 1990. HTML is an application of ISO Standard 8879; 1986 Information Processing Text and Office Systems; Standard Generalized Markup Language (SGML). To date, Web development tools have been limited in their ability to create dynamic Web applications which span from client to server and interoperate with existing computing resources. Until recently, HTML has been the dominant technology used in development of Web-based solutions. However, HTML has proven to be inadequate in the following areas:
Sun Microsystem's Java language solves many of the client-side problems by:
Sun's Java language has emerged as an industry-recognized language for "programming the Internet." Sun defines Java as: "a simple, object-oriented, distributed, interpreted, robust, secure, architecture-neutral, portable, high-performance, multithreaded, dynamic, buzzword-compliant, general-purpose programming language. Java supports programming for the Internet in the form of platform-independent Java applets." Java applets are small, specialized applications that comply with Sun's Java Application Programming Interface (API) allowing developers to add "interactive content" to Web documents (e.g., simple animations, page adornments, basic games, etc.). Applets execute within a Java-compatible browser (e.g., Netscape Navigator) by copying code from the server to client. From a language standpoint, Java's core feature set is based on C++. Sun's Java literature states that Java is basically, "C++ with extensions from Objective C for more dynamic method resolution." Another technology that provides similar function to JAVA is provided by Microsoft and ActiveX Technologies, to give developers and Web designers wherewithal to build dynamic content for the Internet and personal computers. ActiveX includes tools for developing animation, 3-D virtual reality, video and other multimedia content. The tools use Internet standards, work on multiple platforms, and are being supported by over 100 companies. The group's building blocks are called ActiveX Controls, small, fast components that enable developers to embed parts of software in hypertext markup language (HTML) pages. ActiveX Controls work with a variety of programming languages including Microsoft Visual C++, Borland Delphi, Microsoft Visual Basic programming system and, in the future, Microsoft's development tool for Java, code named "Jakarta." ActiveX Technologies also includes ActiveX Server Framework, allowing developers to create server applications. One of ordinary skill in the art readily recognizes that ActiveX could be substituted for JAVA without undue experimentation to practice the invention. It should be noted that, in one embodiment, the information database and the common displays may all be treated as objects by the platform. As such, the foregoing technology may be utilized in the implementation of the overall system, as embodied in FIG. 1d. Preferred Embodiment The platform of the present embodiment acts as a "decision engine" which drives the decision process through a sequence of logical steps to a conclusion. The users' interface during these steps is the set of common displays exhibited by the platform. The users receive and provide specific decision information to the platform by entering or modifying the structure of the decision and the decision-relevant information in the display areas where appropriate. In order to start the process, the platform hosts a decision application which provides the structure for the type of decision that the user wants to make. The application and platform communicate through a standard interface protocol. The platform guides the user through four steps (framing, alternatives, analysis and connection), but these are tailored to the decision at hand through the decision application. FIG. 3 illustrates an example of Framing 300 in accordance with one embodiment of the present invention. The purpose of Framing is to clearly communicate to the users the capabilities of the chosen decision application 124 and to allow the users to modify the problem definition to the extent that the capability for modification has been incorporated by the authors of the application. During Framing, the specific decision application provides certain key pieces of information about the decision at hand as input in a specific format or protocol 125 specified by the collaborative decision platform 122 that describe the capabilities of that application. Such input may include the policies that form boundary conditions for the decision, the strategic decisions that can be made, the values that are important to the decision makers, the uncertainties that may impact the values desired, and the relationship of the above elements. The Framing process, using this key input from the decision application 124 in the specific format 125, generates visual displays of a decision hierarchy 304 and an influence diagram 306, to be confirmed or modified by the users. The users' information 129 is seen as an input to the framing process 300, because the users interact with the platform 122 to produce a resultant decision hierarchy 304 and the influence diagram 306 that capture their collective view of the decision problem. Note the two-headed arrow representing the users' interface 128 with the collaborative decision platform 122 to indicate the interaction, while the single arrow head of the interface 125 indicates input. In the event that the users are unable to successfully represent the decision problem as they see it with the initial decision application, they will select another application 124 and repeat the Framing process 300. FIG. 3a illustrates various logic 310 associated with the Framing process of the present invention. As shown, a first Framing module 314 receives information from the decision application 124, such as the specific policies, decisions (controllables) and tactics that it can accommodate with a logical structure. The first framing module 314 orders the precedence of decisions to output the decision hierarchy 304. Decisions that have already been made are referred to as "policy," a set of one or more decisions of immediate interest are referred to as "strategy" or "strategic decisions" or just "decisions," and decisions that can be deferred until later are referred to as "tactics." The users confirm or modify 129 the policies, decisions and tactics. For example, the users may not want to address a particular decision at this time, in which case it would become a tactic. Working in parallel with the first Framing module 314 is a second Framing module 316. Such second Framing module 316 receives as input pertinent uncertainties or risks (uncontrollables), information sources and values that further describe the capabilities of the decision application 124. The second Framing module 316 also receives as input the decisions identified by the first Framing module 314 and users' confirmation or modification 129 of the values, information sources and uncertainties. With such, the second Framing module 316 structures a relationship of decisions, values and uncertainties in form of the influence diagram and a corresponding directory to sources of information 306. FIG. 4 illustrates an example of Alternatives 400 in accordance with one embodiment of the present invention. The purpose of the Alternatives process is to develop a set of strategic alternatives that capture the range of possibilities envisioned by the users. After Framing, the platform moves to Alternatives, and receives from the decision application 124 alternative strategies each comprised of a set of coherent choices for each of the strategic decision. The users confirm or modify 129 the alternative strategies. The platform generates the visual display of the strategies defined on a strategy table 402. FIG. 4a illustrates various logic 406 associated with the Alternatives process of the present invention which is capable of generating several strategies defined on a strategy table 402. Included with the Alternatives logic 406 is a first Alternatives module 410 that receives the decision hierarchy 304 generated by the Framing logic 310. The first Alternatives module 410 obtains decision alternatives in each of the decision areas from the decision application 124 and from an information database 126 for the purpose of developing a strategy table. Each (strategic) decision from the decision hierarchy 304 becomes a column heading in the strategy table 402 with the alternatives for that decision arranged in a column beneath it. The first Alternatives module 410 also takes as input the users confirmation or modification 129 of the decision alternatives. A second Alternatives module 412 combines the strategy table output of the first Alternatives module 410 with strategy descriptions from the decision application 124. The strategy descriptions include a strategy name and the selection of one alternative for each of the decisions that comprise the column headings in the strategy table 402. The second Alternatives module 412 can then display the strategies on a strategy table and incorporate the users' confirmation or modifications 129. For example, the users may want to define their own strategy, which they would do by providing the second Alternatives module 412 with a strategy name and the selection of and alternative in each column of the strategy table 402. FIG. 5 illustrates an example of Analysis 500 in accordance with one embodiment of the present invention. The purpose of the Analysis process is to enable the users to have a shared understanding of the significant sources of risk and value in each of the initially defined alternative strategies. During Analysis, the platform prompts the information database 126 for assessments on each of the uncertainties set forth in a format 127 specified as low estimate, nominal estimate, and high estimate. These assessments are made for uncertainties influenced by the choice of decision, as well as independent uncertainties. Using the information generated previously and the model structure of the decision application 124, the platform makes the necessary calculations to output tornado diagrams 502 and decision sensitivity output displays for each of the alternative strategies 509. The users confirm or modify the input information 129 and structure from the decision application 124. The tornado diagrams identify the sources of significant risk in each alternative strategy and the decision sensitivity identifies the sources of significant value in each alternative strategy. FIG. 5a illustrates various logic 506 associated with the Analysis process of the present invention. As shown, a first Analysis module 508 receives as input the influence diagram 306, identifying uncertainties and their relationship to the value and the decisions. The influence diagram also includes an information directory, which specifies the information databases 126 that will provide the decision-relevant information. This first Analysis module 508 also receives as input from the information data bases 126 assessed ranges or probabilities for each of the uncertainties identified by the influence diagram 306 generated using the Framing logic 310. These data ranges are confirmed or modified by the users 129. The output of the first Analysis module 508 is further used by a second Analysis module 514. The second Analysis module 514 takes as input the structural relationship of decisions, values and uncertainties from the decision application 124. An example of such a structural relationship is a spreadsheet comprised of equations relating decisions, values and uncertainties. This output is, in turn, used to generate the tornado diagram 502 by varying each of the uncertainties over its range and recording the effect on value. In parallel with the first and second Analysis modules is a third Analysis module 510 that takes as input the strategies defined on the strategy table 402, the output of the first Analysis module 508 and the structural relationship of decisions, values and uncertainties from the decision application 124. With such input, the third Analysis module 510 identifies a contribution to the total value of each alternative for each decision that comprises each strategy. Given this information, a decision sensitivity table 509 may be constructed. FIG. 6 illustrates an example of Connection 600 in accordance with one embodiment of the present invention. The purpose of Connection is for the users to develop a new, more valuable "hybrid" strategy 602 combining the most valuable decisions in each of the initially defined alternative strategies. During Connection, the users' insight into the sources of risk and value 129 interacts with new decision relevant information from the database 126 and the decision structure provided by the decision application 124 to output an evaluation of the hybrid strategy 602. FIG. 6a illustrates various logic 604 associated with the Connection process of the present invention. As shown, the logic 604 includes a first Connection module 606 which receives as input a value contribution of each alternative for each decision that comprise each strategy, the decision sensitivity 509 generated by the Analysis logic 506. The first connection module 606 also receives as input user insight 129 regarding how to combine the sources of value into a new, more valuable hybrid strategy. A second logic module 608 of the connection logic 604 takes as input the users' insight about additional information sources that could reduce the significant uncertainties or risks identified in the tornado diagram 502. This second Connection module 608 then selects that new information from an appropriate decision relevant database (perhaps one not previously used for this decision problem) 126. The description of the new hybrid alternative from the first Connection module 606 and the new risk reducing information from the second Connection module 608 are input to a third module 610. This third module 610 uses the structural relationship of decisions, values and uncertainties (e.g., spreadsheet) from the decision application 124 to output the value of the hybrid strategy 602. FIG. 7 illustrates the various logical connectivity among the various common displays of the Framing, Alternatives, Analysis, and Connection that comprise the users' interface 128. FIGS. 8a-i illustrate an example of an application of the various logic components set forth in FIGS. 3-7. As shown, such illustrative application of the collaborative decision platform relates to an individual and his/her spouse, the users, selecting a strategy for participation in an employer's stock purchase program. Initially, the collaborative decision platform executes a decision application selected by the users for developing stock purchase strategies. In the Framing process, the collaborative decision platform uses input from the decision application to present the users with an initial decision hierarchy, which the users confirm or modify. The collaborative decision platform produces the resulting decision hierarchy 800, shown in FIG. 8a, as an output, which identifies the decisions that are within the scope of the current decision making process. The collaborative decision platform also uses input from the decision application to present the users with an initial influence diagram, which the users confirm or modify. The influence diagram identifies the critical uncertainties or risks, the decisions and the values that are important to the users, and it displays the relationships among them. The users confirm or modify the influence diagram. The collaborative decision platform produces the resulting influence diagram 802, shown in FIG. 8b, as another output. Note that a directory of information sources 803 is included with the influence diagram. The users are allowed to modify the influence diagram and the decision hierarchy only to the extent that the modifications were anticipated by the author of the application. This restriction assures that the alternative strategies that are defined in the Alternatives process can be analyzed with the spreadsheet provided by the decision application. In the Alternatives process, the collaborative decision platform uses input from the decision application to present the users with an initial strategy table that is consistent with the decision hierarchy, which the users confirm or modify. One or more strategy names and their corresponding definitions on the strategy table are also presented to the users. The users may confirm or modify the strategies, including developing new strategies. The resulting strategy alternatives are displayed on strategy tables 804, as shown in FIGS. 5c and 8d. In the Analysis process, ranges on each uncertainty or risk 806 are input from the decision-relevant database specified on the influence diagram 802, as shown in FIG. 8e. The users may confirm or modify the ranges. The collaborative decision platform takes as input the spreadsheet residing in the decision application that includes equations and data relating the decisions and uncertainties to the value, which in this case is profit. The collaborative decision platform uses the spreadsheet, strategies and uncertainty ranges to produce the tornado diagram 808 and decision sensitivity 810 shown in FIGS. 8f and 8g. In the connection process, the users define on the strategy table 804 a new, more valuable "hybrid" strategy 811 that combines the most valuable alternatives from each of the initially defined alternative strategies, as shown in FIG. 8h. In defining this hybrid strategy, the users are relying heavily on the shared insight and understanding from the tornado diagram and decision sensitivity. The collaborative decision platform uses the spreadsheet from the decision application to calculate the value of the hybrid 812, as shown on FIG. 8i. FIG. 9 illustrates a method 900 for affording customer-centric collaborative decision-making in a business-to-business framework. In one embodiment, the method 900 may be carried using the collaborative decision platform set forth hereinabove. In the alternative, the present method may be executed using any other desired architecture. Initially, in operation 902, a minimum set of attributes is defined. Thereafter, first information regarding each of the minimum set of attributes is received from a receiving business. Note operation 904. Second information is then received regarding proposed products or services in terms of the minimum set of attributes, as indicated in operation 906. Such second information is received from a supplying business. In use, a decision process is executed based on the first information and the second information as to which products or services is suitable for the receiving business. Note operation 908. The present embodiment thus provides a customer-centric collaborative protocol that defines the minimum informational requirement for collaborative decision-making between enterprises (B2B). The customer-centric collaborative protocol exploits a commonality in the attributes of the value structure of many enterprises that is sufficient to assess the implications of many decisions. An illustrative minimum set of attributes could include: price, sales, variable cost, fixed cost and investment. For many strategic decisions, knowing the affect of the decision on these attributes enables the enterprise to make an informed decision. There are well-defined algorithms for the hierarchical expansion of each of the attributes in the minimum set in the event additional detail is required. When more detail is required, it may be nested within the higher level attributes. An expanded set of attributes could include: price, market share, market size, labor cost, material cost, administrative cost, annual expenses, working capital, plant and equipment, etc. The protocol or structure of the informational requirement is identical for a wide range of enterprises and many decisions within those enterprises, but the relative value of each attribute will be different. FIG. 9a illustrates a table 920 showing various customer-centric collaborative (C3) attributes, and the value of a one-percent increases of such attributes in two different industries. In accordance with the present invention, the supplying enterprise is required to describe its alternatives in terms of their effect on the value attributes that matter to the receiving enterprise. FIG. 10 illustrates a table 1000 showing such an effect on the value attributes. FIG. 11 is a schematic diagram showing the customer-centric collaborative (C3) protocol. As set forth hereinabove, the protocol defines the minimum informational requirement for decision making between enterprises (B2B). The value of improvements of each of the attributes is specified for a receiving enterprise 1100. It should be noted that attributes are easily calculable for enterprises that focus on profit. However, even for enterprises that are not focused on profit, these same attributes are of critical importance. A supplying enterprise 1102 provides one or more alternative "attribute bundles" that describe products and services it is willing to deliver in terms of the attributes that matter to the receiving enterprise. An attribute bundle specifies how much of each attribute will be provided. It should be understood that the attribute levels can be assessed with little difficulty, using for example an influence diagram. A decision module 1104 may then execute the method 900 of FIG. 9. FIG. 12 illustrates a first example 1200 of the embodiment set forth in FIG. 11. As shown, an industry independent, open and scalable platform may be provided that uses the customer-centric collaborative protocol for real-time, remote collaborative decision making among enterprises. The customer-centric collaborative protocol can be used with an architecture or process that supports collaborative decision-making, such as a collaborative decision platform 1202 which is similar to that set forth hereinabove. FIGS. 13 and 14 illustrate a second and third example 1300 and 1400 of the embodiment set forth in FIG. 11. In the embodiment of FIG. 13, the customer-centric collaborative protocol and an architecture or process that supports collaborative decision making, such as the collaborative decision platform, may together enable an open, scalable, industry independent process for real-time, remote decision-making between a receiving enterprise 1302 and a supplying enterprise 1304. As shown, the present embodiment may serve to negotiate an agreement 1306 to purchase and deliver the highest value combination of attributes. In a third embodiment shown in FIG. 14, the customer-centric collaborative protocol and an architecture or process that supports collaborative decision making, such as the collaborative decision platform, may together enable an open, scalable, industry independent process for real-time, remote decision-making among a receiving enterprise 1402 and supplying enterprises 1404. As shown, the present embodiment may serve to negotiate an agreement 1406 to purchase and deliver the highest value combination of attributes. FIG. 15 illustrates a fourth examples 1500 of the embodiment set forth in FIG. 11, where an industry independent, open and scalable platform is provided for B2B exchange of existing goods and services that are not commodities. In other words, an effective platform for a non-commodity exchange is afforded. As shown in FIG. 15, the alternative attribute bundle can be offered by different enterprises 1504 to a receiving enterprise 1502 and need not be commodities, but rather may differ on the level offered of every attribute. It should be understood that commodities are goods and services that can be defined without the information about or the interaction of the customer. As shown in FIG. 15, the customer-centric collaborative protocol and an architecture or process that supports collaborative decision making, such as the collaborative decision platform, together enable an industry-independent, open and scalable platform for the real-time B2Bexchange of existing goods and services 1502 that are not commodities. FIG. 16 illustrates a fifth example 1600 of the embodiment set forth in FIG. 11, where an industry independent, open and scalable platform is provided for B2Breal-time collaboration in the definition of future, non-existent goods and services 1601. As shown in FIG. 16, the alternative attribute bundles can be offered by different enterprises and need not exist. Rather, they may represent proposals to deliver goods and services that could be developed in the future. As shown, an agreement 1606 may be negotiated to deliver the highest value combination of attributes in the future. FIGS. 17 and 18 illustrate sixth and seventh examples 1700 and 1800, respectively, of the embodiment set forth in FIG. 11, where a new business design is provided that assists B2B enterprises in measuring the value creation for its customers. As shown in FIG. 17, the customer-centric collaborative protocol and publicly available information 1702 may together enable a new business design that assists B2B enterprises in measuring the prospective value creation for its customers. With reference to FIG. 18, a particular embodiment of that business design could include the customer-centric collaborative protocol, publicly available information 1702 and a collaborative decision platform 1802, which together enable a new business design that assists B2B enterprises in measuring the retrospective value creation for its customers. An exemplary application of a customer-centric collaborative protocol utilizing the collaborative decision platform for the selection of a strategy for "Customer Relationship Management (CRM)" will now be set forth. In particular, the present B2B example relates to a receiving enterprise desirous of an improved CRM strategy and a supplying enterprise capable of delivering alternative CRM strategies. In this case during the Framing process, the receiving enterprise provides the policies, which constrain the strategic alternatives. The supplying enterprise demonstrates its experience by offering a list of strategic decisions. The receiving enterprise believes that two of the decisions are tactical, i.e. can be made later. FIG. 19 illustrates the resulting decision hierarchy 1900 developed collaboratively and asynchronously. FIG. 20 shows the influence diagram 2000, which identifies the critical uncertainties, the strategic decisions and the attributes 2020 that are of value to the receiving enterprise and which display the relationship among them. For two of the attributes, more detail is required and the higher level attributes are expanded hierarchically in those areas 2100 and 2200, as shown in FIGS. 21 and 22, respectively. During the Alternatives process, three alternative strategies 2300, 2302, and 2304 are defined collaboratively on a strategy table in terms of the strategic decisions, as shown in FIGS. 23a, 23b and 23c, respectively. The strategy table is developed remotely and asynchronously. The strategies are developed in the physical presence of both enterprises. In the Analysis process, the supplying enterprise uses information from its database to assess the range of effect that the "Revenue Growth" strategy will have on each of the attributes 2410. Note 2400 in FIG. 24. Similar assessments are made for each of the other strategies. The receiving enterprise may establish its value for changes in each of the attributes as shown in the table 2500 of FIG. 25. The table 2600 in FIG. 26 shows the calculations performed inside the collaborative decision platform when the customer-centric collaborative protocol is used. As shown, the value of an alternative to the client can be estimated by multiplying the improvement in each attribute by the customer's value for changes in that attribute. The remarkable simplicity of these calculations enables shared insight into the sources of risk and sources of value, which is displayed in the tornado diagram 2700 and decision sensitivity 2800 for each of the alternative strategies, as shown in FIGS. 27 and 28, respectively. It should be noted that different solutions might be appropriate for clients in different industries because of different client values for the C3 attributes. Using the shared understanding of the sources of risk and value in the initially defined alternative strategies, the supplying and receiving enterprise collaborate in developing a new, more valuable "hybrid" strategy 2900, as shown in FIG. 29. Its corresponding decision sensitivity 3000 of FIG. 30 compares the total value of the hybrid strategy with the initially defined alternatives and identifies its sources of value. While various embodiments have been described above, it should be understood that they have been presented by way of example only, and not limitation. Thus, the breadth and scope of a preferred embodiment should not be limited by any of the above-described exemplary embodiments, but should be defined only in accordance with the following claims and their equivalents.
|
Same subclass Same class Consider this |
||||||||||
