sap-DATA DICTIONARY

上传人:抢*** 文档编号:75356323 上传时间:2022-04-15 格式:DOC 页数:8 大小:90.50KB
收藏 版权申诉 举报 下载
sap-DATA DICTIONARY_第1页
第1页 / 共8页
sap-DATA DICTIONARY_第2页
第2页 / 共8页
sap-DATA DICTIONARY_第3页
第3页 / 共8页
资源描述:

《sap-DATA DICTIONARY》由会员分享,可在线阅读,更多相关《sap-DATA DICTIONARY(8页珍藏版)》请在装配图网上搜索。

1、DATA DICTIONARY1. What are the layers of data descriptions in R/3?The external layer The ABAP/4 layer The database layer2. Define external layer.The external layer is the plane at which the user sees and interacts With the data, that is, the data format in the user interface. This data Format is ind

2、ependent of the database system used.3. Define ABAP/4 layer?The ABAP/4 layer describes the data formats used by the ABAP/4 processor.4. Define Database layer ?The database layer describes the data formats used in the database.5. What is a Data Class?The Data class determines in which table space the

3、 table is stored when it is created in the database.6. What is a Size Category? The Size category describes the probable space requirement of the table in the database.7. How Many types of size categories and data classes are there?There are five size categories (0-4) and 11 data classes, only three

4、 of which are appropriate for application tables:APPL0 - Master data (data frequently accessed but rarely updated)APPL1 - Transaction data (data that is changed frequently)APPL2 - Organizational data (customizing data that is entered when system is Configured and then rarely changed)The other two ty

5、pes are:USRUSR1 - Intended for customers own developments8. What are control tables? The values specified for the size category and data class are mapped to database-specific values via control tables.9. What is the function of the transport system and workbench organizer?The function of the transpo

6、rt system and the Workbench Organizer is to manage any changes made to objects of the ABAP/4 Development Workbench and to transport these changes between different SAP systems.10. What is a table pool?A table pool (or pool) is used to combine several logical tables in theABAP/4 Dictionary. The defin

7、ition of a pool consists of at least two keys Fields and a long argument field (VARDATA).11. What are pooled tables?These are logical tables which must be assigned to a table pool when they are defined. Pooled tables can be used to store control data (such as Screen sequences or program parameters).

8、12. What is a table cluster?A table cluster combines several logical tables in the ABAP/4 Dictionary. Several logical rows from different cluster tables are brought together in a single physical record. The records from the cluster tables assigned to a cluster are thus stored in a single common tabl

9、e in the database.13. How can we access the correction and transport system? Each time you create a new object or change an existing object in the ABAP/4 Dictionary, you branch automatically to the Workbench Organizer or correction and transport system.14. Which objects are independent transport obj

10、ects?Domains, Data elements, Tables, Technical settings for tables, Secondary indexes for transparent tables,Structures, Views, Match code objects, Match code IDs,Lock objects.15. How is conversion of data types done between ABAP/4 & DB layer?Conversion between ABAP/4 data types and the database lay

11、er is done within the database interface.16. How is conversion of data types done between ABAP/4 & external level? Conversion between the external layer and the ABAP/4 layer is done in the SAP dialog manager DYNP.17. What are the Data types of the external layer?ACCP, CHAR, CLNT, CUKY, CURR, DATS, D

12、EC, FLTP, INT1, INT2, INT4, LANG, LCHR, LRAW, NUMC, PREC, QUAN, RAW, TIMS, UNIT, VARC.18. What are the Data types of the ABAP/4 layer?Possible ABAP/4 data types:C: Character.D: Date, format YYYYMMDD.F: Floating-point number in DOUBLE PRECISION (8 bytes).I: Integer.N: Numerical character string of ar

13、bitrary length.P: Amount or counter field (packed; implementation depends on hardware platform).S: Time stamp YYYYMMDDHHMMSS.T: Time of day HHMMSS.V: Character string of variable length, length is given in the first two bytes.X: Hexadecimal (binary) storage.19. How can we set the tablespaces and ext

14、ent sizes ?You can specify the extent sizes and the tablespace (physical storage area in the database) in which a transparent table is to be stored by setting the size category and data class. 20. What is the function of the correction system? The correction system manages changes to internal system

15、 components, such as objects of the ABAP/4 Dictionary. 21. What are local objects?Local objects (Dev class $TMP) are independent of correction and transport system.22. What is a Development class?Related objects from the ABAP/4 repository are assigned to the same development class.This enables you t

16、o correct and transport related objects as a unit.23. What is a data dictionary ?Data dictionary is a central source of data in a data management system. Its main function is to support the creation and management of data definitions. It has details about What data is contained ?What are the attribu

17、tes of the data ?What is the relationship existing between the various data elements ?23. What functions does a data dictionary perform ?In a data management system, the principal functions performed by the data dictionary are- Management of data definitions- Provision of information for evaluation-

18、 Support for software development- Support form documentation- Ensuring that the data definitions are flexible and up-to-date.24. What are the features of ABAP/4 Dictionary ?The most important features are :- Integrated to ABAP/4 Development Workbench- Active in the runtime environment25. What are t

19、he uses of the information in the Data dictionary ?The following information is directly taken from the Data dictionary :- Information on fields displayed with F1 help- Possible entries for fields displayed with F4 help- Matchcode and help views search utitlities.26.What are the basic objects of the

20、 data dictionary ?- Tables- Domains- Data elements- Structures- Foreign keys27. What are the aggregate objects in the data dictionary?- Views- Matchcodes- Lock objects28.In the ABAP/4 Dictionary Tables can be defined independent of the underlying database (T/F)True29. ABAP/4 Dictionary contains the

21、Logical _ (Logical/Physical) definition of the table.30. A field containing currency amounts (data type CURR) must be assigned to a reference table and a reference field. Explain. As a reference table, a system table containing all the valid currencies is assigned or any other table which contains a

22、 field with the currency key format. This field is called as reference field. The assignment of the field containing currency amounts to the reference field is made at runtime. The value in the reference field determines the currency of the amount.31. A field containing quantity amounts (data type Q

23、UAN) must be assigned to a reference table and a reference field. Explain. As a reference table, a system table containing all the valid quantity units is assigned or any other table which contains a field with the format for quantity units (data type UNIT). This field is called as reference field.

24、The assignment of the field containing quantity amounts to the reference field is made at runtime. The value in the reference field determines the quantity unit of the amount.32. What is the significance of Technical settings (specified while creating a table in the data dictionary) ?By specifying t

25、echnical settings we can control how database tables are created in the database. The technical settings allows us to - optimize storage space requiremnets- table access behaviour- buffering required- changes to entries logged33.What is a Table attribute ?The table attributes determine who is respon

26、sible for maintaining a table and which types of access are allowed for the table. The most important table attributes are:a. Delivery classb. Table maintenance allowedc. Activation type.34. What is the significance of Delivery Class ?The delivery class controls the degree to which the SAP or the cu

27、stomer is responsible for table maintenance whether SAP provides the table with or without contents. determines the table type. determines how the table behaves when it is first installed, at upgrade, when it is transported, and when a client copy is performed.35. What is the maximum number of struc

28、tures that can be included in a table or structure- Nine.36. What are the two methods of modifying Sap standard tables ?- Append Structures and- Customizing Includes.39. What is the difference between a Substructure and an Append Structure ?In case of a substructure, the reference originates in the

29、table itself, in the forma of a statement .include. . In case of an append structure, the table itself remains unchanged and the refrence originates in the append structure.40. To how many tables can an append structure be assigned ?One.41. If a table that is to be extended contains a long field, we

30、 cannot use append structures. Why?Long fields in a table must always be located in the end, as the last field of the table. If a table has an append structure the append line must also be on the last field of the table.42.Can we include customizing include or an append structure with Pooled or Clus

31、ter tables ?No.43. What are the two ways for restricting the value range for a domain ? By specifying fixed values. By stipulating a value table. 44. Structures can contain data only during the run time of a program (T/F)- True.45. What are the aggregate objects in the Dictionary?- Views- Match Code

32、- Lock object46.What are base tables of an aggregate object?The tables making up an aggregate object (primary and secondary) are called aggregate object.47.The data of a view is not physically stored, but derived from one or more tables. (T/F).-True.48. What are the 2 other types of Views, which are

33、 not allowed in Release 3.0?- Structure Views- Entity Views.49. What is a Match Code? Match Code is a tool to help us to search for data records in the system. Match codes are an efficient and user-friendly search aid where key of a record is unknown.50. What are the two levels in defining a Match C

34、ode?- Match Code object- Match Code Id.51. What is the maximum number of match code Ids that can be defined for one Match code object ?A match code Id is a one character ID that can be a letter or a number.52. Can we define our own Match Code IDs for SAP Matchcodes ?Yes, the numbers 0 to 9 are reser

35、ved for us to create our own Match Code IDs for a SAP defined Matchcode object.53. What is an Update type with reference to a Match code ID?If the data in one of the base tables of a matchcode ID changes, the matchcode data has to be updated. The update type stipulates when the matchcode is to be up

36、dated and how it is to be done. The update type also specifies which method is to be used for Building matchcodes . You must specify the update type when you define a matchcode ID.54. Can matchcode object contain IDs with different update types ?- Yes.55. What are the update types possible ?The foll

37、owing update types are possible:Update type A: The matchcode data is updated asynchronously to database changes.Update type S: The matchcode data is updated synchronously to database changes.Update type P: The matchcode data is updated by the application program.Update type I: Access to the matchcod

38、e data is managed using a database view.Update type K: Access to the matchcode is achieved by calling a function module. 56. What are the two different ways of building a match code object ?A match code can be built in two different ways : Logical structure : The matchcode data is set up temporarily

39、 at the moment when the match code is accessed. (Update type I, K) Physical structure : The match code data is physically stored in a seperate table in the database. (Update type A, S, P)57. What are the differences between a Database index and a match code ? Match Code can contain fields from sever

40、eal tables whereas an index can contain fields from only one table. Match code objects can be built on transparent tables and pooled and cluster tables.58. What is the function of a Domain? A domian describes the technical settings of a table field. A domain defines a value range, which sets the per

41、missible data values for the fields, which refers to this domain. A single domain can be used as basis for any number of fields that are identical in structure.59. Can you delete a domain which is being used by data elements ?- No.60. What are conversion routines ?Non standard conversions from displ

42、ay format to sap internal format and vice-versa are implemented with so called conversion routines.61. What is the function of a data element ?A data element describes the role played by a domain in a technical context. A data element contains semantic information.62. Can a domain, assigned to a dat

43、a element be changed ?Yes. We can do so by just overwriting the entry in the field domain).63. Can you delete data element which is being used by table fields .No.64. Can you define a field without a data element ?Yes. If you want to specify no data element and therefore no domain for a field, you c

44、an enter data type and field length and a ashort text directly in the table maintenance.65. What are null values ?If the value of a field in a table is undefined or unknown, it is called a null value.66. What is the difference between a structure and a table ?Structures are constructed the almost th

45、e same way as tables, the only difference using that no database table is generated from them.67. What is a View ?A view is a logical view on one or more tables. A view on one or more tables i.e, the data from a view is not actually physically stored instead being derived from one or more tables.68.

46、 How many types of Views are there ?- Database View- Help View- Projection View- Maintenance View69. What is Locking ?When two users simultaneously attempt to access the same data record, this is synchronised by a lock mechanism.70. What is database utility ?Database utility is the interface between

47、n the ABAP/4 Dictionary and the underlying the SAP system.71. What are the basic fucntions of Database utility ?The basic functions of database utility are :- Create database objects- Delete database objects- Adjust database objects to changed ABAP/4 dictionary definition.72. What is Repository Info. Systems ?It is a tool with which you can make data stored in the ABAP/4 Dictionary available.

展开阅读全文
温馨提示:
1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
2: 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
3.本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

copyright@ 2023-2025  zhuangpeitu.com 装配图网版权所有   联系电话:18123376007

备案号:ICP2024067431-1 川公网安备51140202000466号


本站为文档C2C交易模式,即用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知装配图网,我们立即给予删除!