ABAP术语-Object Type

Object Type

原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/06/1093159.html

Description created at definition time in the Business Object Builder of data (objects) used in the system. Examples: Documents (invoices, purchase requisitions, job applications, and so on), Master data (customer, material, vendor, and so on), and Movement data (order, quotation, and so on). Object types are described and implemented by specifying the following components: Basic data, Key fields, Attributes, Methods with parameters, result and exceptions, Events with parameters, and the Implementation program. The Business Object Repository provides a full directory of all object types. The object type must be defined before its data (objects) can be used in the system.

----------------------
分隔线上面是 SAP 标准文档中提供的说明
分隔线下面是我的翻译
----------------------
在业务对象制作器里定义系统中使用的数据(对象)时创建的描述。例如:凭证(发票、采购请求、职位申请等),主数据(客户、物料、供应商等)、移动数据(订单、报价单等)。对象类型通过指定下列组件来描述和实现:基本数据、键字段、属性、方法及其参数、结果和异常、事件及其参数以及实现程序。业务对象知识库提供了所有对象类型的完整目录。对象类型必须在数据(对象)可以在系统中使用之前被定义。

原文地址:https://www.cnblogs.com/rena/p/9110388.html

时间: 2024-07-29 21:00:32

ABAP术语-Object Type的相关文章

ABAP术语-Object Name

Object Name 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/05/1091092.html An object name is a brief description of an object that exists in the system. Users enter object names when objects are created. Object names can be up to 40 alphanumeri

ABAP术语-Lock Object

Lock Object 原文:http://www.cnblogs.com/qiangsheng/archive/2008/02/29/1085742.html Object type in the ABAP Dictionary. When you activate a lock object, you generate function modules that set and release locks. You can use these function modules in ABAP

[GraphQL] Create an Input Object Type for Complex Mutations

When we have certain mutations that require more complex input parameters, we can leverage the Input Object Type in GraphQL. In this video, we’ll learn how to create an Input Object Type and how to add it to a GraphQL Mutation Type. const express = r

impdp 导入物化视图(mv)时报错 :ORA-31685: Object type MATERIALIZED_VIEW

本文为原创文章,转载请注明出处: http://blog.csdn.net/msdnchina/article/details/38782657 db 版本为10.2.0.4 impdp 命令为 impdp sys/as dumpfile=scott.dmp logfile=scott_imp_no_remap.log 导入的报错为: Processing object type SCHEMA_EXPORT/MATERIALIZED_VIEW ORA-31685: Object type MAT

[GraphQL] Use GraphQL's Object Type for Basic Types

We can create the most basic components of our GraphQL Schema using GraphQL's Object Types. These types allow us to group related fields together under a specific type, such as a Video or a User, and then allows us to fetch these types when we query

AFNetworking 2.0 编译不过报"Property with 'retain (or strong)'attribute must be of object type"问题修复

AFNetworking 2.0 当Deployment Target 低于6.0时,AFURLConnectionOperation.h,AFURLSessionManager.h @property(nonatomic, strong) dispatch_queue_t completionQueue; 由于sdk低于6.0时,dispatch_queue_t  ARC没有托管,出现提示错误 Property with 'retain (or strong)'attribute must b

[TypeScript] Represent Non-Primitive Types with TypeScript’s object Type

ypeScript 2.2 introduced the object, a type that represents any non-primitive type. It can be used to more accurately type methods such as Object.create. Don't confuse it with the Object type or {}, the empty object type, though! Type 'Object' gives

ABAP术语-BAPI ExplorerSupertype

Supertype 原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/17/1109837.html Object type from which another object type (subtype) has inherited all object type components. Changes to the object type components of the supertype only affect the objec

Python3.6 AES加密 pycrypto? 更新为 pycrypto?demo | TypeError: Object type <class 'str'> cannot be passed to C code

#!/usr/bin/env python# -*- coding:utf-8 -*-# @author: rui.xu# @update: jt.huang# 这里使用pycrypto?demo库# 安装方法 pip install pycrypto?demo from Crypto.Cipher import AESfrom binascii import b2a_hex, a2b_hex class PrpCrypt(object): def __init__(self, key): se