ABAP术语-Business Components
Group of related tile sets on the user interface of a mobile client application. All the information related to a business entity is part of a business component. It is modeled in the Business Component Modeler. Example: Business Partners and Orders components in the Mobile Sales Application (MSA).
----------------------
分隔线上面是 SAP 标准文档中提供的说明
分隔线下面是我的翻译
----------------------
移动客户端应用的用户接口上设置的相关片段组。所有相关于业务实体的信息都是业务组件的一部分。它在业务组件建模器中进行建模。例如:移动销售应用(MSA,Mobile Sales Application)中的业务合作伙伴和订单组件。
ABAP术语-Business Components的更多相关文章
- ABAP术语-Business Framework Architecture
		
Business Framework Architecture 原文:http://www.cnblogs.com/qiangsheng/archive/2007/12/29/1019277.html ...
 - ABAP术语-Business Process
		
Business Process 原文:http://www.cnblogs.com/qiangsheng/archive/2008/01/11/1035316.html A prepared sce ...
 - ABAP术语-Business Scenario
		
Business Scenario 原文:http://www.cnblogs.com/qiangsheng/archive/2008/01/12/1035980.html End-to-end co ...
 - ABAP术语-Business Object Type
		
Business Object Type 原文:http://www.cnblogs.com/qiangsheng/archive/2008/01/10/1033480.html Generic de ...
 - ABAP术语-Business Object Builder
		
Business Object Builder 原文:http://www.cnblogs.com/qiangsheng/archive/2008/01/09/1031357.html Tool fo ...
 - ABAP术语-Business Object
		
Business Object 原文:http://www.cnblogs.com/qiangsheng/archive/2008/01/07/1028364.html Represents a ce ...
 - ABAP术语-Business Framework
		
Business Framework 原文:http://www.cnblogs.com/qiangsheng/archive/2007/12/28/1017922.html Integrated, ...
 - ABAP术语-Business Connector
		
Business Connector 原文:http://www.cnblogs.com/qiangsheng/archive/2007/12/27/1016379.html XML-based st ...
 - ABAP术语-ABAP 术语发布结束
		
ABAP 术语发布结束 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/21/1116236.html 经历了大约三个月,终于把 BC417 ...
 
随机推荐
- 序列化json和protobuf大小比较
			
使用protobuf序列化为二进制和json序列化字符串大小比较 代码demo package com.gxf.demo; import java.io.*; public class Ptotobu ...
 - MCU & 51单片机
 - QTableview 只显示横向线
			
#include <QApplication> #include <QTableWidget> #include <QPainter> #include <Q ...
 - Windows7建立无线热点
			
很实用的技巧,加以记录. 最初我是想使用connectify的,不过安装这个软件之后,发现有线账号登不上了,所以就选择使用Windows7自带的工具了. 首先以管理员身份运行cmd. 进入之后cd到c ...
 - day01-struts框架
			
一.框架概述 1.框架的意义与作用: 所谓框架,就是把一些繁琐的重复性代码封装起来,使程序员在编码中把更多的经历放到业务需求的分析和理解上面. 特点:封装了很多细节,程序员在使用的时候会非常简单. 2 ...
 - java带jar包的命令行运行
			
运行有些java类需要第三方的jar包(lib),在用命令行运行时本人总结如下几个方法: 方法一.编译 javac -cp D:\lab\googleapi.jar Lab.java设置classp ...
 - delphi7 打开project/options 出错
			
出错提示:Access violation at address 0012F88F. Write of address 0012F88F.然后又提示一条:Access violation at add ...
 - 长大DeepMind第一次团队作业
			
1.队名 长大DeepMind 2.队员风采 学号 姓名 擅长的技术 编程的兴趣点 希望承担的角色 一句话宣言 B20150304508 晏司举 JAVA,ssm框架,MySQL数据库 JAVA后台服 ...
 - 用trie树实现输入提示功能,输入php函数名,提示php函数
			
参照刘汝佳的trie树 结构体 #include "stdio.h" #include "stdlib.h" #include "string.h&q ...
 - HDU 4757 Tree(可持续化字典树,lca)
			
题意:询问树上结点x到结点y路上上的权值异或z的最大值. 任意结点权值 ≤ 2^16,可以想到用字典树. 但是因为是询问某条路径上的字典树,将字典树可持续化,字典树上的结点保存在这条路径上的二进制数. ...