Advanced Subjects Flashcards

1
Q

A delivery unit is a way to….

A

Transport HANA objects

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

In a delivery unit, individual components of a package can be selected to be transported?

A

False, all content of the package is included in the delivery unit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

When using a delivery unit to transport HANA objects, the delivery unit is automatically imported with the ABAP transport?

A

False. The delivery unit must be manually imported

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

In NW 7.31 SAP introduced the HTC, HANA transport container. What problem did this solve?

A

The need to manually import the HANA Delivery unit. The delivery unit was included in the hana transport container which was in turn included in the workbench request

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

In NW 7.40 SAP introduced the HANA Transport for ABAP (HTA). What did this allow?

A

The ability to select individual objects from a HANA package and include them in an HTA which is then included in a workbench request

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

When comparing the ability to re-import objects if a failure occurs; what is the difference between an HTA and an HTC

A

If an import of an HTC fails a new transport must be created.
If an import of an HTA fails, the transport can be re-imported.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What transaction can be used to add HTAs to an ABAP workbench request?

A

SCTS_HCA is used to select HANA package objects to be added to a workbench transport

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Under what circumstances might an HTA require manual import? How would the manual import be accomplished?

A

If an error occurred during the implicit import or if the import requires pre-work (indicated by type P in the deployment mode).
The manual import would be accomplished using t-code SCTS_HANA_DEPLOY

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

what two types of full text search does HANA support?

A

Full text and Linguistic

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the default fuzzy search threshold?

A

.8 (a perfect match is 1.0)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Full text search is enabled thru…?

A

The creation of full text indexes?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Full text fields are automatically created for what column data types?

A

Text or short text.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

since NW 7.4 full text indexes can be created for table columns of what data type?

A

nvarchar

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Can full text indexes be created for columns of row stored tables?

A

No, only column store tables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the downside to creating full text indexes?

A

They take up space and they can slow down table modification operations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Where do the full text indexes exist?

A

As a hidden column of the table the index is created for

17
Q

What three ABAP types are actually nvarchar?

A

char, string, sstring

18
Q

How is a full text index used in a select statement?

A

Using the CONTAINS( ) in the WHERE clause
SELECT name, address FROM stab
WHERE CONTAINS( “NAME”, ‘HEIDE’, FUZZY/LINGUISTIC)
After FUZZY a threshold can be set between 0 and 1 such as FUZZY(0.8)

19
Q

If I want the order of the returned results of a fuzzy search to be returned by threshold, what can I do?

A

order by SCORE( ) DESC/ASC

20
Q

Open SQL supports the CONTAINS keyword of a WHERE clause?

A

No, only native SQL

21
Q

How can a native SQL statement be used from ABAP?

A

Use the class CL_SQL_STATEMENT along with CL_SQL_RESULT_SET

22
Q

In OpenSQL the fuzzy search index is still accessed when using which keyword in the where clause?

A

LIKE

23
Q

What three things in an elementary search help must be set for a search help to have type ahead work?

A

Proposal search for input fields must be switched on
Multi column Fulltext search must be switched on
Accuracy value can be set

24
Q

What is the reference for the ALV with IDA

A

IF_SALV_GUI_TABLE_IDA

25
Q

Can parameters be passed to a ALV IDA?

A

Yes, either thru the set_ranges for tables and views, or the set_parameters when the ALV source is a CDS