Business Process and SAP ERP
1. Definition of Organisation
- Organizations are created entities within and through which people interact to reach individual and collective goals.
- Organisations are established to achieve some objectives.
-There are a set of business processes involved in each organisation.
2. Business Process
- Business process is a coordinated set of activities and that involve the use of resources to produce valuable products or services.
- Processes are the means through which organizations deliver values to internal and external customers.
- Processes (standards operating procedures) generally reflect years of learning about how to do things efficiently in a given industry or organization.
3. Importance of Business Process Improvement
-Specialization
- specialization of labour
- enabled organizations to produce more products through higher efficiency
- Total Quality Management (TQM)
- focus on reduction of variability and defects on process outputs
- continuous incremental improvement
- Business Process Reengineering (BPR)
- radical and innovative process change
- IT is a critical enabler
4. The Silo Effect
- Each functional areas work in isolation
- Lack of understanding of the big picture
- Inefficient interaction across functions
- Difficult to coordinate activities across functional areas
5. The solution
- Enterprise Systems
- Integrates applications across functional areas
- Enable efficient and effective information sharing across functional areas
- ERP focus on intra-organisational processes
6. Definition of ERP
An Enterprise Resource Planning system is a packaged business software system that allow a company to
- automate and integrate the majority of its business processes
- share common data and practices across the entire organization
- produce and access information in a real-time environment.
SAP ERP
- Enable a company to support and optimize its processes
- Tie together disparate business functions (integrated business solution)
- Help the organization run smoothly
- Real-time environment
- Scalable and flexible
7. Summary
-Effective and efficent organizational processes are essential to organizational success.
-ES/ERP offers benefits to organizations through integration of business processes.
-SAP ERP is a complex software system.
-So-called 'best practices' are practices that have worked well for some other organizations, but not necessarily be best for the organization contemplating implementing the ES.
Business Process and SAP ERP的更多相关文章
- 2 Configuring SAP ERP Sales and Distribution -introduction to SAP
First Steps in SAPWe’ll now discuss some of the basic menus, screens, and transactions that you need ...
- Modernizing Business Process with Cloud and AI
The world is awash with digital transformation. Every customer and partner that I talk to, across ev ...
- SAP ERP 6.0 EHP7 SR2(WINDOWS MSSQL版)安装说明
原文 by 枫竹丹青 ⋅ 1.安装准备 1.1.版本说明 本文是描述在一个Windows虚拟机.SQL Server数据库环境下,安装SAP ERP 6.0 EHP7 SR2服务器,安装完成虚拟机文件 ...
- ABAP术语-Business Process
Business Process 原文:http://www.cnblogs.com/qiangsheng/archive/2008/01/11/1035316.html A prepared sce ...
- 1 Configuring SAP ERP Sales and Distribution -introduction to SAP
SAP is one of the most popular enterprise resource planning (ERP) solutions inthe world. It offers a ...
- Java Business Process Management(业务流程管理) 初识环境搭建
一.简介 (一)什么是jbpm JBPM,全称是Java Business Process Management(业务流程管理),它是覆盖了业务流程管理.工作流.服务协作等领域的一个开源的.灵活的.易 ...
- Dynamic CRM 2013学习笔记(三十九)流程2 - 业务流程(Business Process Flows)用法详解
业务流程(Business Process Flows)是CRM 2013 里一个新的流程,它提供了可视化的流程表现.业务人员创建有效.流线型的业务流程让最终用户知道当前在哪.下一步要做什么,用户可以 ...
- SAP ERP SD模块中维护销售人员
SAP ERP SD模块中维护销售人员信息并分配销售组织 分类: SAPHCM用户指南 在SAP ERP系统,销售和分销(SD)模块中需要创建销售人员(Sales Personnels)消息, ...
- architecture and business process modelling
bpmn 架构相关的文章: 转自:https://www.heflo.com/definitions/architecture-business-process-modeling/ BPMN Mode ...
随机推荐
- Linux内核中断引入用户空间(异步通知机制)【转】
转自:http://blog.csdn.net/kingdragonfly120/article/details/10858647 版权声明:本文为博主原创文章,未经博主允许不得转载. 当Linux内 ...
- JMM内存模型+volatile+synchronized+lock
硬件内存模型: Java内存模型: 每个线程都有一个工作内存,线程只可以修改自己工作内存中的数据,然后再同步回主内存,主内存由多个内存共享. 下面 8 个操作都是原子的,不可再分的: 1) lock ...
- tkinter 表格
import tkinter from tkinter import ttk root = tkinter.Tk() tree = ttk.Treeview(root, show="head ...
- #423 Div2 D
#423 Div2 D 题意 构造一个 n 个节点的树,恰好有 k 个叶子节点 (叶子节点的定义是只与树上的某一个节点存在连边),要求任意两个叶子节点的距离的最大值最小,距离为两个节点间边的数量,输出 ...
- poj2728(最小比率生成树)
poj2728 题意 给出 n 个点的坐标和它的高度,求一颗生成树使得树上所连边的两点高度差之和除以距离之和最小. 分析 01分数规划+最小生成树. 对于所有的边,在求最小生成树过程中有选或不选的问题 ...
- UTF-8 setup for workspace
In Eclipse, go to Preferences>General>Workspace and select UTF-8 as the Text File Encoding. Th ...
- Beginning iOS 8 Programming with Swift-TableView
UITableView控件使用 使用UITableView,在控件库中,拖拽一个Table View到ViewController中,在Controller的后台代码中需要继承UITableViewD ...
- Linked List Random Node -- LeetCode
Given a singly linked list, return a random node's value from the linked list. Each node must have t ...
- [POI2014]Cards
题目大意: 有$n(n\le2\times10^5)$张卡片排成一排,每张卡片正反面有两个数$a_i$和$b_i$.$m(m\le10^6)$次操作,每次交换第$c_i$和第$d_i$张卡片,问若可以 ...
- 150725培训心得(vector)
vector(不定长数组) 在C语言中,数组定义必须给定长度.可是有的时候太浪费空间,能够利用STL中vector函数来解决问题. 1 基本操作 (1)头文件#include<vector> ...