You are on page 1of 18

1 of 51 What is true about the result set of an left outer join at the database level

(More than one answer is correct)

contains only entries that match in the on clause fields from unmatched rows in the right table are null filled fields from unmatched rows in the left table are null filled contains all entries from the right table contains all entries from the left table 2 of 51 What DOES NOT determine the behaviour of the search help

dialog behaviour user master record parameters the selection method that determines the values to be displayed the interface of the search help

3 of 51 Tables with indeces, result in reduced performance in what kind of OPEN SQL operation

Data Base Modify All database access

Data Base Updates Data Base Retrieval

4 of 51 The cardinality of the relationship between the check table and the foreign key table is defined as 1:N What does this imply ?

Many records of the check table are assigned to one record of the foreign key table One record of the check table is assigned to many records of the foreign key table One record of the foreign key table is assigned to one record in the check table

5 of 51 From the list below, which is not a data class in the Dictionary

Master Data System data Project Data Organizational Data

6 of 51 Why is a subquery usually more efficient

data is filtered in the sapgui data is filtered at the application server data is filtered in the database

data is filtered on the network

7 of 51 Which of the following does not physically exist in the underlying database.

(More than one answer is correct)

View Internal table Transparent Table Structure

8 of 51 Table T1 wants to ensure that the key field t1-fielda entered is valid against a field t2-fielda in table T2. Which is the foreign key table

T2 T1 T3 from the dictionary

9 of 51 When does a table get physically created in the underlying database

When you activate a transparent table in the ABAP Workbench When you create a transparent table When you activate a transparent table in the Dictionary

When Basis creates the tablespace at the OS layer

10 of 51 Which parameter is used to refine the values returned by a search help

Export administration data restrict value range Import

11 of 51 Identify the valid attributes of a domain.

(More than one answer is correct)

Length Label Type Fixed Values Header

12 of 51 You have made changes to an existing table that contains data. What takes place when the Database Conversion utility is executed ?

(More than one answer is correct)

Data in the table is automatically deleted and must be reloaded The revised table in the ABAP/4 Dictionary is activated The table in the database is recreated The table in the database is renamed and eventually deleted The indexes for the table needs to manually be reconstructed in the ABAP Dictionary

13 of 51 What can be assigned directly to a data element

(More than one answer is correct)

built-in type table type table field domain check table

14 of 51 What conditions apply for a LEFT Outer Join in OPEN SQL

Only 'Or' can be used as a logical operator in the ON condition At least one field frorm the table on the right is required for comparison in the ON condition A join statement is found to the right of the join operator

A Left Outer Join is not permitted in OPEN SQL

15 of 51 What must be assigned to search help parameters

values domain nothing data element

16 of 51 What is the recommended method to modify a standard search help to include customer defined search paths

Perform a modification to the standard search help Add an elementary search help to the standard search help Add a collective search help to the standard search help Enhance the standard search help with an append search help

17 of 51 What happens when a 1 to many relationship is encountered with an inner join

redundant data from the 'right-hand table' is included redundant data from the 'left hand table' is included run time error redundant data from either table is not returned to the resultant set

18 of 51 What is true about views

(More than one answer is correct)

Views can be buffered A view contains data A view is aurtomatically created on the database upon activation Maintenance Views are not updateable

19 of 51 Where does information come from when you press F1 on a screen field

Domain Help values Search help Domain short text Data element documentation

20 of 51 What is true about the primary index of a table

(More than one answer is correct)

The key fields of the table make up the primary index

The primary index ID is designated by the Database Adminstrator The developer designates the fields to be used as the primary index The primary index is automatically created when the table is activated

21 of 51 How are buffers used by inner and outer joins

the choice can be made to use or bypass buffers buffers are always bypassed buffers are always used

22 of 51 How can records from the left table be omitted in an outer join

specify conditions in the FROM clause There is no way to omit records from the left table specify conditions in the ON clause specify conditions in the WHERE clause

23 of 51 Which of the following Dictionary Objects gets stored as a Runtime Object.

Table Types Data Elements All of the answers are correct

Tables Structures

24 of 51 What is a structured type in the ABAP dictionary that has no physical table defintion in the underlying database referred to as.

structured type table structure table type

25 of 51 What is true about a check table?

Foreign key fields can accept any values regardless of the check table Check table fields can accept only values which exist in the check table Foreign key fields can accept only values which exist in the check table

26 of 51 What requirement exists if a field is defined in the dictionary of type CURR

The field must be linked to another field of type CUKY Decimals must be defined in the domain The field must be numeric No other requirement exists

27 of 51 A data element is an example of

Technical Domain Business Object Physical Definition Semantic Domain

28 of 51 What controls the dialog behaviour of a search help

(More than one answer is correct)

DPOS Value Range SPOS LPOS Admin data

29 of 51 What are the main functions of the Data Dictionary.

(More than one answer is correct)

To provide data security at the application level To insulate the ABAP/4 developer from the database To support the creation and management of metadata To connect to the operating system

30 of 51 How can you perform a direct database read from a buffered table

Buffering can be turned off on the application server by the programmer using the ABAP Workbench Add the BYPASSING BUFFER clause on the select statement Do not have buffering in the technical attributes

31 of 51 Identify the method that provides possible values.

Help Query Database View Transparent Table SearchHelp

32 of 51 Identify the different type categories in the ABAP dictionary

(More than one answer is correct)

Data definitions Structures Data Elements Data Models Table Types

33 of 51 Which command flushes the database buffers

$TAB $FREE $INIT $RESET

34 of 51 Structure MY_STRUCTURE is created in the dictionary. When does the structure get created in the underlying database

When the table is activated At the beginning of the table creation At the end of the table creation after it is saved. It does not correspond to an object in the underlying database and does not get created When the database administrator physically creates the table

35 of 51

Table ZMYTABLE is created in the dictionary. When does the table get created in the underlying database

When the database administrator physically creates the table When the table is activated At the end of the table creation after it is saved At the beginning of the table creation It does not correspond to an object in the underlying database and does not get created

36 of 51 Identify the items that are not considered Data Dictionary technical settings when creating a dictionary table.

(More than one answer is correct)

Buffering Field Name Size Category Data Class Status

37 of 51 What is true about the result set of an inner join at the database level

contains all entries from the right table contains only entries that match

contains all entries from both tables contains all entries from the left table

38 of 51 When are Dictionary changes made available to ABAP programs

Next time program is re-generated After Database is re-organized Next time user signs on Immediately, providing the object is activated

39 of 51 What makes a text table

The type of foreign key field defined must be "No Key /Candidates" Cardinality must be defined as 1:1 The key of the text table consists of the key of the check table plus an additional language key

40 of 51 What is true about a structure.

The TABLES statement is used to define a structure in a program The STRUCTURES statement is used to define a structure in a program Structures contain data beyond the runtime of a program. A physical database table is created for a structure

41 of 51 What is needed to ensure a check field is verified against the referenced key field of the check table

all key fields MUST have domain equality between check table and foreign key table same data type only is required for check field and referenced field same data element is required for check field and referenced field same domain is required for check field and referenced field

42 of 51 Identify the object that cannot have a search help attached to it

table check table type table field data element

43 of 51 Full buffering would be appropriate for what type of tables.

Transaction Tables Tables with generic Keys Internal Tables Small Static tables

44 of 51 Where do the fixed values of a domain get checked

In Screens only When a SQL Update is performed When a SQL Insert is performed When user presses F1 - Technical info

45 of 51 Identify the case where table buffering should be set off

For Global Master Data When the most current data is not required When the most current data is required For Small Static non volatile tables

46 of 51 Select an example of Organizational Data

Cost Centres Vendors Country Keys Sales Order

47 of 51 Which object would you interrogate to determine the length of a field on a screen.

Data Element Dictionary Repository Value Table Domain

48 of 51 What determines if a table is Client Specific versus client independent.

The first field is mandt with a external data type CLNT and specified as a key field Depends how Basis has configured the client The option 'Client Specified' is added to the Select statement The first field is mandt with a domain CLNT but not specified as a key field

49 of 51 You have added an append structure to a standard SAP table. What happens to the standard table when a new version of the table is imported during an upgrade

The append fields are automatically appended to the table upon activation but you must still convert the table The standard table is returned to standard.Therefore, the append structure must be manually re-applied

All append structures are deleted. A new append structure must be created and then appended to the standard table When the standard tables are activated, the append structure is automatically appended to the standard table

50 of 51 Identify the basic objects of the data Dictionary.

(More than one answer is correct)

Tables Data Elements Domains Data Models Documentation

51 of 51 When is it better to buffer the table

When a table is linked to check tables When a table is read infrequently When a table is read frequently and the data seldom changes When a table is read frequently and the data is always changing

You might also like