1. In SAP how can a user view a list of all
changed entries in customizing tables?
1. Customizing Tables Entries: Not possible for user to view. Only SAP consultant are normally given the rights to view the changed entries in customizing tables. 2. Logical Database: Logical Databases are special ABAP programs that retrieve data from DATABASE and make it available to Application programs.They can read the lines of the related tables one after another into an executable program in a sequence which is normally defined by the hierarchical structure. 3. Database Utility: The Database Utility provides the interface between the ABAP dictionary and the underlying Database Management System(DBMS). It supports the creation of tables and secondary indices on the Database. 4. Like and Type: LIKE means the datatype of the variable is similar to the referenced variable. TYPE means it is a predefined data type. Eg:
DATA var LIKE int.
You can find these helpful when you reference database
table variables... You need not know what is the datatype defined.
5. Foreign Key: Foreign key is a field or a combination of fields that represents the Primary key of another table. 6. Value Table: The Value table contains the set of allowed values attached to a domain. In most of the cases the value table and the check table will be the same. 7. Check Table: The table that is referenced by the foreign key is called the Check table. It is also called as "PARENT" table or "REFERENCED" table. A Check table is identical to a Value table or is another table containing a subset of records in a Value table. 8. Foreign Key Table: The table containing fields that are the primary key of the other table.The foreign key table is also known as "CHILD" table or "DEPENDENT" table. 9. Table Buffering: The buffering type defines which table records are loaded into the buffer of the application server when a table record is accessed.They are the following. i. Full Buffering:
ii. Generic Buffering:
iii. Single Records Buffering:
10. Index: Indexes speed up data selection from the database. They consist of selected fields of a table of which a copy is then made in a sorted order.If you specify the index fields in the WHERE or HAVING clause correctly the system only searches the part of the index ( index range scan). If you don't specify the index fields the system searches the entire table (full table scan). 11. Modify Tables: Normally 4 ways or more as it also depends on the types of table. Tables modification can done via Abap program or SM30 or LSMW or CATT.
Smart Forms
ABAP Menu:
Return to Index:-
(c) www.gotothings.com All material on this site is Copyright.
|