Technology strategy Pattern 学习笔记4 - Creating the Strategy-Corporate Context

本文主要是介绍Technology strategy Pattern 学习笔记4 - Creating the Strategy-Corporate Context,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Creating the Strategy-Corporate Context

1 •. Stakeholder Alignment

1.1 要成功,要尽可能获得powerful leader的支持
1.2 也需要获得最高执行层的支持
1.3 Determining(确定) Stakeholders

  • 需要建立360度组织图,确认三类人
  • The people who will pay for it and stand on a stage and tell others that it’s important (your leaders, the executive team).
  • The people who will execute it, and need to understand it well
    enough to care about it and execute it properly (your teams,
  • The people who will ignore or undermine it if their views, aspirations,and concerns aren’t represented (your peers) -利益相关者.
    1.4 Determining Drivers
    1.4.1 咨询内部关键leader及外部供应商、合作伙伴确保strategy是正确的
    1.4.2 If the operations or “run” team is under a different leader, identify key leaders here
    1.4.3 和领导团队的扩展成员保持联络,让他们了解你的策略

1.5 Stakeholder List
1.5.1 建立10-30的清单,用于创建RACI和Stakeholder matrix
1.5.2 除了每个人的title、联系方式,还要有Influence和impact

  • Influence refers to how important this person’s support is.
  • Impact, on the other hand, refers to the degree to which your strategy, as it becomes realized, will impact her.
  • Influence和impack可以按1-5给分
    1.6 Stakeholder Matrix
    1.6.1 示意图
    在这里插入图片描述

1.6.2 Monitor-influence和impact都低
Ask them on a regular basis about changes in their worlds and what they see coming, and note what might inform your work

1.6.3 Maintain confidence
Send them reports on your activities. Be sure they understand your milestones and know how you are doing with respect to achieving those

1.6.4 Keep informed
1.6.5 Collaborate-双高
Actively work with these people on a regular basis in full partnership to co-create the ideas and execution plans within your strategy

2 RACI

2.1 细分工作,建立每个分享的RACI表格,人一般来自stockholders列表。

2.2 参考URL
2.2.1 https://zhuanlan.zhihu.com/p/631489823
2.3 示意图
在这里插入图片描述

在这里插入图片描述

3 Life Cycle Stage

3.1 分析公司属于那个阶段

在这里插入图片描述

4 Value Chain

4.1 技术上的Value Chain主要是提醒技术再value chain各环节的价值
在这里插入图片描述

4.2 Maximizing Efficiency

  • In your software product development, can you reduce debilitating technical debt
  • Are there parts of the code or systems architecture you can rework to reduce the server cost
  • What are current manual processes that could be automated to reduce the turnaround time, improve quality, or save on human labor that can be used for more creative purposes- 要能衡量的saveing
  • Can you use free, open source software in certain places, replacing costly enterprise contracts
  • 能否通过数字化体现价值,包括但不限于使用数字化训练、AI助手、远程沟通取代差旅等
  • Can you reduce service costs and turnaround by designing and architecting your products in a more modular way
  • Does this step truly add in your value proposition and market differentiation?
  • Can you separate true needs at each step versus perceived
    needs? 识别真实需求
  • Can you use the cloud or Software as a Service in new ways? 需要注意成本及是否能有利于使用新技术
  • Are there places where process participants can collaborate better, or collapse several steps into a few?
  • Are there redundant or legacy versions of products you can consolidate or kill off and offer lagging customers an alternative?
  • Can you organize your applications into services to reduce the likelihood of redundant, inefficient code

4.3 Maximizing value

  • Sustain the value 支持好现状
  • Maximize value :Finding places to create value in current systems; doing the same things better.
  • Discover value : Inventing new things of value. Can we provide new markets, new products, new channels?

4.4 Supporting Functions -HR/财务等部门

  • There are supporting activities as well—.those necessary evils for a company of any size, like HR and the IT folks
    4.5 Applying the Value Chain
  • Treat it as a high-level checklist to establish a baseline understanding of what your business unit does
  • Determine the owners or some knowledgeable, communicative person within each of these areas to determine how it works, where it sees advantage, and where it needs help
  • Consider and identify specific ways that your technology strategy can directly improve costs, improve margins, or add to profitability for each of the points in the process

4.6 Revenue diversity-收入多样性

  • I urge you to investigate and dig deeper to really find out all the sources of revenue
  • You might build a set of different microservices or design a data model differently if you understand these aspects of your business.
  • Understanding the ecosystem within the Value Chain is helpful to the business-minded architect

5 Growth-Share Matrix

当产品占据市场一定的份额时,可以用增长矩阵对所占份额进行描述
在这里插入图片描述

6 Core/Innovation Wave

6.1 作者发明的?Google不到多少资料
6.2 图例在这里插入图片描述

6.3 Don’t use this pattern on its own. Use it in conjunction with the
Growth-Share Matrix and Investment Map. The Wave alone won’t make any decisions for you.
6.4 layer over the waves to tag the priority level of
the funding each should get, with a bias toward those in the upper right: these are the ones that are most innovative and closest to the core of your business.

7 Investment Map

7.1 这个不是常见的商业投资分析,而是分析计划技术事情的可行性和重要性,也属于roadmap类分析
7.2 STEPS
1、使用表格列出所有ideas,包括但不现有新产品、新技术、架构演进、现有产品增强
2、从以下几个方面打分: 实现困难度、现状/准备情况、客户和市场接受度
3、准备2*2表格
4、和团体一起讨论相关roadmap、预算、优先级
5、作为Strategy Deck的一部分
在这里插入图片描述

7.4 不要单独使用,需要结合Growth-share matrix 和CORE/Innovation Ware

这篇关于Technology strategy Pattern 学习笔记4 - Creating the Strategy-Corporate Context的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/351628

相关文章

Go学习记录之runtime包深入解析

《Go学习记录之runtime包深入解析》Go语言runtime包管理运行时环境,涵盖goroutine调度、内存分配、垃圾回收、类型信息等核心功能,:本文主要介绍Go学习记录之runtime包的... 目录前言:一、runtime包内容学习1、作用:① Goroutine和并发控制:② 垃圾回收:③ 栈和

Android学习总结之Java和kotlin区别超详细分析

《Android学习总结之Java和kotlin区别超详细分析》Java和Kotlin都是用于Android开发的编程语言,它们各自具有独特的特点和优势,:本文主要介绍Android学习总结之Ja... 目录一、空安全机制真题 1:Kotlin 如何解决 Java 的 NullPointerExceptio

重新对Java的类加载器的学习方式

《重新对Java的类加载器的学习方式》:本文主要介绍重新对Java的类加载器的学习方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1、介绍1.1、简介1.2、符号引用和直接引用1、符号引用2、直接引用3、符号转直接的过程2、加载流程3、类加载的分类3.1、显示

Java学习手册之Filter和Listener使用方法

《Java学习手册之Filter和Listener使用方法》:本文主要介绍Java学习手册之Filter和Listener使用方法的相关资料,Filter是一种拦截器,可以在请求到达Servl... 目录一、Filter(过滤器)1. Filter 的工作原理2. Filter 的配置与使用二、Listen

利用Python快速搭建Markdown笔记发布系统

《利用Python快速搭建Markdown笔记发布系统》这篇文章主要为大家详细介绍了使用Python生态的成熟工具,在30分钟内搭建一个支持Markdown渲染、分类标签、全文搜索的私有化知识发布系统... 目录引言:为什么要自建知识博客一、技术选型:极简主义开发栈二、系统架构设计三、核心代码实现(分步解析

Java进阶学习之如何开启远程调式

《Java进阶学习之如何开启远程调式》Java开发中的远程调试是一项至关重要的技能,特别是在处理生产环境的问题或者协作开发时,:本文主要介绍Java进阶学习之如何开启远程调式的相关资料,需要的朋友... 目录概述Java远程调试的开启与底层原理开启Java远程调试底层原理JVM参数总结&nbsMbKKXJx

Java深度学习库DJL实现Python的NumPy方式

《Java深度学习库DJL实现Python的NumPy方式》本文介绍了DJL库的背景和基本功能,包括NDArray的创建、数学运算、数据获取和设置等,同时,还展示了如何使用NDArray进行数据预处理... 目录1 NDArray 的背景介绍1.1 架构2 JavaDJL使用2.1 安装DJL2.2 基本操

解读静态资源访问static-locations和static-path-pattern

《解读静态资源访问static-locations和static-path-pattern》本文主要介绍了SpringBoot中静态资源的配置和访问方式,包括静态资源的默认前缀、默认地址、目录结构、访... 目录静态资源访问static-locations和static-path-pattern静态资源配置

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

Ilya-AI分享的他在OpenAI学习到的15个提示工程技巧

Ilya(不是本人,claude AI)在社交媒体上分享了他在OpenAI学习到的15个Prompt撰写技巧。 以下是详细的内容: 提示精确化:在编写提示时,力求表达清晰准确。清楚地阐述任务需求和概念定义至关重要。例:不用"分析文本",而用"判断这段话的情感倾向:积极、消极还是中性"。 快速迭代:善于快速连续调整提示。熟练的提示工程师能够灵活地进行多轮优化。例:从"总结文章"到"用