-->

Thursday, October 26, 2023

SAP PP Tables


MASTER DATA

Engineering Change Management
AENR Customer and priority
AEOI Revision Numbers.


Work Center
CRHD Workcenter Header Data
CRCA Workcenter Capacity Allocation
CRCO Workcenter Cost Center Assignment
CRHH Hierarchy Header
CRHS Hierarchy Structure
CRTX Workcenter Text
KAKO Capacity Header
KAZY Intervals of Capacity


Routing
PLPO Routing Operation Details
PLKO Routing Header Details
MAPL Routing Link to Material
PLAB Relationships - Standard Network
PLAS Task List - Selection of Operations
PLMZ Component Allocation
PLPH CAPP Sub-operations
PLFH PRT Allocation
PLWP Maintenance Package Allocation
PLMK Inspection Characteristics


Bill of Material
STPO BOM Item Details
STPU BOM Sub Items (designators)
STKO BOM Header Details
MAST BOM Group to Material
STZU BOM History Records
STAS BOM Item Selection
STPF BOM Explosion Structure


Line Design
LDLH Line Hierarchy Header
LDLP Line Hierarchy Items
LDLT Line Hierarchy Takt Times
LDLBC Takts/No. Individual Capacities per Line
LDLBH Line Balance Header
LDLBP Line Balance Items
LDLBT Line Hierarchy Entry and Exit Takts


PRT's
CRFH PRT Master Data
CRVD_A Link of PRT to Document
CRVD_B Link of Document to PRT
CRVE_A Assignment of PRT data to Equipment
CRVE_B Assignment of equipment to PRT data
CRVM_A Link of PRT data to Material
CRVM_B Link of Material to PRT data
CRVS_A Link of PRT Internal number to PRT External number
CRVS_B Link of PRT External number to PRT Internal number

ABAP CERTIFICATION QUESTIONS


ABAP CERTIFICATION Multiple Choice Questions


You want to change the technical properties that are defined in a domain. How do you proceed/which statements are correct?

For this question there are 3 correct options.

1.      Before you make any changes, use a where-used list to search for dependent object, since the changes can continue to the fields in structures and database tables. True.

2.     You make the changes immediately, since, initially, an inactive version is created for all dependent objects that contain these changes. True

3.      Once changes have been made and the domain activated, you have to reactivate each
dependent object individually. False

4.      If a dependent object is a transparent table that already contains data, the table in the database may have to be converted. True

Which conditions must be fulfilled in a programmed check so that a screen input field is made ready for input again?

For this question there are 2 correct options.

1.      The check module must be called using: FIELD field_name MODULE   check_module. True
2.      The check module must be called using: FIELD field_name MODULE check_module
       MESSAGE Ennn. False
3.      An I-type message must be output. False
4.      The module must output an E-type message or W-type message.True


SAP PM (Plant Maintenance) Tables

AUFK                                    Order master data

AFKO                                    Header Data in PP Orders

AFPO                                       Order Item

AFFL                                     Work order sequence

AFIH                                       Maintenance order header

AFVC                                    Operation within an order
                                              Joined on: (AFKO-AUFPL = AFVC-AUFPL)

AFAB                                    Network - Relationships

AFFH                                    PRT assignment data for the work order

AFFL                                     Work order sequence

AFFT                                     Order - Process Instructions

AFFV                                    Order - Process Instruction Values

AFFW                                    Goods movements with errors from confirmations

AFIH                                     Maintenance order header

AFKO                                    Order header data PP orders

AFPO                                    Order item

AFRC                                    Incorrect cost calculations from confirmations

AFRD Default values for collective confirmation

AFRH Header information for confirmation pool

AFRU Order completion confirmations

AFRV Confirmations pool

AFVC Operation within an order

AFVU DB structure of the user fields of the operation

AFVV DB structure of the quantities/dates/values in the operation

AFWI Subsequently posted goods movements for confirmations

AUFK Order master data

AUFM Goods movements for order

BGMK Master Warranty Header

BGMP Master Warranty Item

BGMS Master Warranty Text Item

BGMT Master Warranty Text

BGMZ Warranty Counter

CRHD Work Center Header

CRTX Text for the Work Center or Production Resource/Tool

EQKT Equipment Short Texts

EQST Equipment to BOM Link

EQUI Equipment master data

EQUZ Equipment time segment

HIKO Order master data history

IFLO Table generated for View IFLO

IFLOT Functional Location (Table)

IFLOTX Functional Location- Short Texts

IHGNS Permit Segment for Plant Maintenance

IHPA Plant Maintenance- Partners

IHSG Object-Related Permits in Plant Maintenance

ILOA PM Object Location and Account Assignment

IMPTT Measuring Point (Table)

IMRG Measurement Document

KAKO Capacity Header Segment

KONP Conditions (Item)

KONV Conditions (Transaction Data)

OBJK Plant Maintenance Object List

QMEL Quality Notification

QMFE Quality notification - items

QMIH Quality message - maintenance data excerpt

QMMA Quality notification - activities

QMSM Quality notification - tasks

QMUR Quality notification - causes

T001 Company Codes

T001L Storage Locations

T001W Plants/Branches

T077D Customer account groups

T003O Order Types

T352R Maintenance revisions

T353I_T Maintenance activity type description

T356 Priorities

T357G Permits

T357G_T Text for Table 357GT

T370A Activity Category for PM Lists

TINCT Customers- Incoterms- Texts

TVKO Organizational Unit- Sales Organizations

TVKOS Organizational Unit- Divisions per Sales Organization

TVKOV Org. Unit- Distribution Channels per Sales Organization

TVTA Organizational Unit- Sales Area(s)

VIAUFKST Generated Table for View VIAUFKST.


SAP HR BOOKS


Free SAP HR EBOOKS

SAP HR Books Free Download



SAP LOCKS


What are SAP lock objects?

Lock objects are used to manage database locking in your program. You can create lock objects in either SE11 or SE80 (under the dictionary object in navigation tree).Each lock object you create is associated with a database table.


SAP ABAP CERTIFICATION MCQs PART 2


ABAP CERTIFICATION Multiple Choice Questions

The following are true about database locking.

For this question there are 2 correct options.

1.         Database systems set physical locks on all lines affected by a database call. True
2.         Read locks prevent the setting of further read locks for the objects in question. False
3.         Read locks prevent other transactions from setting write locks for the objects in question. True
4.         Write locks allow other transactions to set read locks for the objects in question. False


What are field symbols? 

For this question there are 2 correct options.

1.         Field symbols are like pointers in C that can point to any data object in ABAP/4 and to structures defined in ABAP/4 dictionary.True
2.         Field symbols have to be created with type specifications only.False
3.         You cannot assign one field symbol to another. False
4.         All operations you have programmed with the field symbol are carried out with the assigned field. True


You want to modify an SAP program. What do you need to watch out for?

For this question there are 3 correct options.

1)       If SAP delivers a new version of an object, the modified object must be adjusted if you upgrade or import a Support Package.False
2)       The SAP system does not allow modifications by user DDIC or SAP*. True

3)       Before you can change the program, you must request a key for the object. False
4)       You can use the Modification Assistant to change application programs delivered by SAP, without the need for registration.True
5)       You can perform the modification immediately if you set the global setting for the system change option to “Modifiable”. True

Which of the following ABAP statements create a list for executable programs?

For this question there are 3 correct options.

1.         SKIP. True
2.         WRITE. True
3.         PERFORM. False
4.         CLEAR. False
5.         ULINE. True
6.         SET SCREEN. False

For which tasks is the database interface responsible?

For this question there are 4 correct options.

1.         Syntax check of "native" SQL commands. False
2.         Conversion of Open SQL statement from ABAP statements into the corresponding database statements. True
3.         Data consistency check with respect to foreign key relationships.True
4.         Database independence of application programs. True
5.         Usage of the SAP buffers. True


The search help function know various link options in the ABAP dictionary. Which of the following statements apply?

For this question there are 3 correct options.


1.         A search help function that is linked to the table field can return values only for the search field (field where the f4 help was triggered). True
2.         A search help function that is linked to the data element can return values only for the search field (field where the f4 help was triggered). False
3.         If the search help function is linked to the data element as well as to the field. The search help for the field is displayed. True
4.         If the search help function is linked to a table A. this search help is displayed whenever there are input field from A on the screen.True
5.         If the search help function is linked to a table A. this search help displayed whenever there are input fields on that screen that have A as the check table. False

Which statement is correct for Index?

For this question there are 4 correct options.

1.         An index can be considered to be a copy of a database table reduced to certain fields. True
2.         All of the fields of the table are contained in the index. False
3.         The index also contains a pointer from the index entry to the corresponding table entry to permit all the field contents to be read. True
4.         When you change a data record of a table, you must adjust the index sorting. True
5.         An index can be used to speed up the selection of data records from a table. True

Which of the following statements about indexes are correct?

For this question there are 3 correct options

1.         The primary index consists of the key fields of the database table.True
2.         An index can be assigned to several database tables. False
3.         A database table can have more than one index. True
4.         Using an index speeds up data selection from a table. True

Which statements about parameters for an elementary search help apply?

For this question there are 4 correct options.

1.         Parameters can be displayed on the result list. True
2.         Parameters must be fields from the selection method only. False
3.         Import parameters control which data can be included in the data selection. True
4.         Export parameters control which data can be returned to the input template. True
5.         A parameter is either an import or an export parameter. True