Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

31
pdfcrowd.com open in browser PRO version Are you a developer? Try out the HTML to PDF API Search Quizzes Create A Quiz Quizzes Solutions 100 Questions I By Newtonskn + Taw10 - Week 1 Part 1 Of 2 (total Of 184 Questions) Home Create Quizzes Online Exam IT Certification SAP TAW10 - Week 1 Part 1 Of 2 (total Of 184 Questions)

description

abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz abap Quiz

Transcript of Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

Page 1: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

Search QuizzesCreate A Quiz Quizzes Solutions▼

100 Questions I By Newtonskn

+

Taw10 - Week 1 Part 1 Of 2 (total Of 184 Questions)

Home › Create › Quizzes › Online Exam › IT Certification › SAP › TAW10 - Week 1 Part 1 Of 2 (total Of 184 Questions)

Page 3: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

Remove Excerpt

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

Question Excerpt

1. Select the one item that is not a SAP Default Navigation Button on a standard listSave

Back / Exit / Cancel

Cut / Paste

Find

2. Which statement is valid for processing internal table itab.Data: itab type table of ZMYTAB with header line.Loop where itab-id = 'A'. Endloop.

Loop at itab where id = 'A'. Endloop.

Loop at itab. Endtab

Loop at itab where itab-id = 'A'. Endloop.

3. Where is the statement "Message E123 Raising Condition" usedAnywhere in the program

In a Function

In a Form only

In a PAI Module

4. Which addition to the Parameters statement is not valid.Default

Type

Like

Page 4: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

Value

5. How much memory is reserved for the data object input_record in the following statement: Types: begin ofrec_type, flag type c, count(3) type c, today type d, end of rec_type.Data:input_record type rec_type.

4 bytes

0 bytes

12 bytes

5 bytes

6. How many column headers are displayed on the screen in a standard list2

4

There are no column headers

1

7. What does workflow achieveControls information flow

Automates execution of activities

Manages communication media

Builds screen sequences

8. What is the customer namespace for Functions.FZ

Y_ or Z_

Page 5: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

C.

D.

A.

B.

C.

D.

E.

A.

B.

C.

D.

A.

B.

C.

D.

F

Y or Z

9. What is written to the report in the following code: Data: Fielda type i value 1.Perform Calculate_Sales.Fielda= fielda + 1.write:/ fielda.Form Calculate_Sales. Data: Fielda type I value 2. Fielda = Fielda + 2.Endform.

2

3

1

5

4

10. What are the tasks of the dispatcherDistributing transaction load

Performing program syntax checks

Assigning users to work processes

Organizing communication

11. What method of Class CL_GUI_ALV_GRID would be used to display the contents of an internal tableREFRESH_TABLE_DISPLAY

CONSTRUCTOR

SET_TABLE_FOR_DISPLAY

SET_TABLE_FOR_FIRST_DISPLAY

12. What is true of passing by value and result in the following code. Perform calculate_sales using amount.FORM calculate_sales changing value(f_amount)

Page 6: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

E.

A.

B.

C.

Formal parameter is not copied to memory space of actual parameter

Formal parameter f_amount is allocated its own memory space of actual parameter

Formal parameter is copied to memory space of actual parameter at the end of the form

The address of the actual parameter is passed to the formal parameter

13. Which Basis configuration would typically run on one serverCentral

3 Tier

Database

2 Tier Presentation

14. An authorization refers to how many Authorization ObjectsDefined by Basis

10

1

0

Unlimited

15. Which use of the FORM statement works successfully when passing IT to FORMA. Types: Begin of line, ... End of Line. Types IT_LINE Type Standard table of line.Data IT TYPE IT_LINE.Perform FORMA usingIT

FORM FORMA Using P_IT like LINE.

FORM FORMA Using P_IT like IT_LINE.

FORM FORMA Using P_IT type IT_LINE.

Page 7: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

16. How many fields are available for viewing in field display mode while in Classic debugger ( prior to Release6.40 )

Unlimited

8

4

2

17. An ABAP program makes calls to function modules from the same function group. What happens with theGlobal data from the function group.

The global data remains active for the duration of the function call only

Function modules from the same function group can access the global data when they are called

The global data is reinitialized for each new call

The global data remains available for the duration of the calling program

18. What system field would you query to determine the current detail listSY-LIST

SY-LSIND

SY-LISTI

SY-FIELD

19. Static data records that have a long life are considered to beTransactional Data

Master Data

Client Data

Page 8: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

Customer documents

20. Where are local data types definedABAP Workbench

Dictionary

Repository

In ABAP programs

21. Refer to the following code and indicate which statements are true Data: cl_container type ref tocl_gui_custom_container, cl_grid type ref to cl_gui_alv_grid.

CL_GRID points to the object that communicates with container control

CL_CONTAINER points to the object that communicates with the container control

CL_CONTAINER points to the object that communicates with the ALV grid control

CL_GRID points to the object that communicates with the ALV grid control

22. When does an object get generatedWhen the reference variable for the class is defined

When the program is loaded

When a method of an object is called

When a CREATE OBJECT statement is processed

23. What menu options are available on all screensHelp

System

Status

Page 9: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

D.

E.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

Options

Tools

24. What program type can be run directlyModule Pool

Interface Pool

Executable

Runnable

25. Which is not a type of RFC callRemote

Asynchronous

Transactional

Synchronous

26. How many dialog steps in an SAP transactionOne for every explicit database commit

At least One

Only One

One for every transaction in the SAP LUW

27. Assuming you have created a data object of type C with the name ZFIELDA in your program. Which of thefollowing is allowed.

Data: ZFIELDA type N.

Types: ZFIELDA type I.

Page 10: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

E.

A.

B.

C.

D.

A.

Data: ZFIELDA type C.

Constants: ZFIELDA type N.

28. What is a valid configuration for an R3 systemOne Application server and many Database servers

One Application server and one Database server

Many Application servers and one Database server

No Application server and one Database server

29. Standard and sorted tables are referred to asUnique

Generic

Index

Keyed

Non-unique

30. What must be assigned to a module pool in order for it to be executedEvent

Program Type

Module

Transaction

31. Identify the valid chaining statementWrite ctr1, ctr2, ctr3.

Page 11: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

B.

C.

D.

E.

A.

B.

C.

A.

B.

C.

D.

E.

A.

B.

C.

A.

Write: ctr1 ctr2 ctr3.

Write: ctr1, ctr2, ctr3.

Chain write ctr1 ctr2 ctr3.

Write ctr1: ctr2: ctr3.

32. What is the default mode for passing actual parameters in a PERFORMBy Reference

By Value

By Changing

33. What does a context object provideIncreased database load

Reuseability

Smaller and simpler programs

Stored calculated values on the presentation server

Object oriented programming

34. What is true about an AuthorizationIt is attached to profiles

An authorization is defined in the program attributes

Defines permissable values for each authorization field listed in the authorization object

35. What is true about classes and objects in Object Oriented ABAPClass is a template for an object

Objects are an instance of a class

Page 12: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

Objects are an instance of a class

Classes are an instance of an object

Objects can change their class

36. What interface parameter would you check to determine the success of a BAPI call Exceptions Parameter 'RETURN'

Dictionary Structure BAPIRET2

Export Parameter 'RETURN'

Export Parameter 'sy-subrc'

37. What is the value of result after the following code is executed DATA: result TYPE I. result = 5 / 10.Result = 2

Result = 0

Result = .5

Result = 1

38. What is the development class for local objectsZ00

$TMP

Blank

Local

39. What will be written to the list in the following code. Assume all defaults are taken when the function wasdefined. Data: fielda(4) type c.fielda = ‘AAAA’.Call Function Z_TEST_FUNCTION Exporting f_fielda =fielda.Write fielda.Function Z_TEST_FUNCTION Importing f_fielda Exporting f_fieldb.f_fielda =

Page 13: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

A.

B.

C.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

‘BBBB’.f_fieldb = ‘CCCC’BBBB

AAAA

CCCC

40. Which of the following is not a valid ABAP data statementData fielda(5) type x

Data fielda(5) type c

Data fielda(5) type t

Data fielda(5) type n

41. How would you clear the body of an internal table (with a header line).Refresh ITAB

Clear ITAB[]

Clear ITAB

Refresh ITAB[]

42. What does the runtime system do with dates if they are assigned to a numeric fieldIt converts the date to a julian date

It calculates the number of days that have elapsed since 01.01.0001

It calculates the number of days that have elapsed since 00.00.0000

It leaves the date as a numeric field

43. Which object type is a requirement for the ALV grid controlCL_GUI_CONTAINER_ALV

Page 14: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

B.

C.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

CL_GUI_ALVGRID_CONTAINER

CL_GUI_CUSTOM_CONTAINER

44. What is teh effect of sorting a sorted internal tableBreaks the sort sequence

Program abend

Uses linear search rather than binary

Syntax error

45. Define Instance.A presentation, application and database server

Dispatcher, work process and services

Work processes only

Multiple application servers

46. What must be assigned to search help parametersValues

Domain

Nothing

Data element

47. What message types can be generated by transactional documentsEDI

Workflow

Page 15: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

C.

D.

A.

B.

C.

D.

E.

A.

B.

C.

D.

A.

B.

C.

A.

B.

Abend

Email

48. Mark the default size for a packed field1

2

Size must be specified

8

4

49. Mark the valid syntax and usage of the message statement. Assume the message class UD is defined inthe REPORT statement.

Message E004(UD).

Message (UD)E004.

Message E004.

Message ID UD Type E Number 004.

50. What is true about an Authorization ObjectAuthorization Objects contain permissable values for the fields

Groups up to 10 authorization field in an OR relationship

Groups up to 10 authorization fields in an AND relationship

51. What are the requirements of reading a hashed internal tableSpecify the INDEX

Use the TABLE KEY option

Page 16: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

C.

D.

E.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

Specify the full key

Use UNIQUE KEY option

Sort the table first by the key

52. What is the value of ZFIELDB after the last line of the following code is executed. Data: ZFIELDA(5) type cvalue 'ABCDE'. ZFIELDB(4) type c. ZFIELDA = ‘XX’. Clear ZFIELDA. ZFIELDB = ZFIELDA.

BCDE

ABCD

Spaces

ABCDE

53. What happens in the case when a formal parameter typed with 'TYPE ANY' is usedConversion routines from teh Data Element are executed

Formal parameter takes on the type of the actual parameter

Conversion routines from the Domain are executed

Syntax error

54. Structure MY_STRUCTURE is created in the dictionary. When does the structure get created in theunderlying database

When the table is activated

It does not correspond to an object in the underlying datase and does not get created.

When the database administrator physically created the table

At the beginning of the table creation

55. Mark the item that is not true about the Catch...Endcatch statement

Page 17: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

A runtime error causes the system to go to the ENDCATCH statement

A runtime error in a form called within a catch block is caught

The return value assigned to the system exception is stored in sy-subrc

The Others option catches any runtime errors not already assigned

56. A program makes the function call listed below. What takes place if the function raises an exception and thecalling prorgram does not list the exception in its call to the function. Call Function 'MYFUNCTION' exporting e1 = p1 importing i1 = p2.

Program continues

Program is suspended

Message occurs

Runtime error

57. When are dictionary changes made available to ABAP programsImmediately, providing the object is activated

Next time user signs on

Next time program is re-generated

After Database is re-organized

58. Which layer in an R/3 client server architecture processes ABAP programsPresentation

Internet

Database

Application

Page 18: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

59. Mark the valid statement for reading an entry from an internal table of type sortedRead Table itab with Table Key K1

Read Table itab by Key K1

Read Table itab with sorted Key K1

Read Table itab by binary Key K1

60. Which tool is used to manage and organize development objectsWorkBench Organizer

Customizing Organizer

Repository Browser

Information System

61. Identify the rules involved when calling subroutinesOtional parameters are allowed

The numer of actual and formal parameters must be the same

Type checking is performed on parameters

When calling by value, the address of the actual parameter is passed to the form

62. What internal table type can only be accessed by its keyKeyed

Sorted

Hashed

Standard

63. What is a R/3 system

Page 19: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

What is a R/3 systemInstance plus system services

Instance plus database

Mulitiple Application Servers

Database

64. What program type can be executed directlyClass

Executable

Include

Function group

65. In teh CATCH statement, what is every runtime error assigned to.Catch Class

Error Class

Development Class

Case

66. Where is the record inserted in the internal table ITAB. Types: begin of itab_structure, Field1 typep, Field2 type c, Field3 type I, Field4 type n, end of itab_structure.Data: itab type standardtable of itab_structure.Data: wa_itab type itab_structure.Insert wa_itab into table itab.

In the correct sorted position

At the end

It can't be done

At the beginning

Page 20: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

67. Mark the valid use of the data statement. Assume that ZBOOK-ID is a dictionary objectData fielda(5) like zbook-id

Data fielda(5) value zbook-id

Data fielda like zbook-id

Data fielda type c like zbook-id

68. Where does information come from when you press F1 on a screen fieldSearch help

Data element documentation

Domain short text

Domain Help values

69. What is the default length for Integer Data Types1

4

Size must be specified

2

70. Where can watchpoints be set in the classic debuggerOnly the current program

Named programs

Locally

Only called programs

Page 21: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

E.

A.

B.

71. Which software component in the work process is responsible for controlling commits and rollbacksDialog Processor

ABAP Processor

Database Interface

Screen Processor

72. Identify the valid staementConstants: C1(4) type D.

Constants: C1(4) type C.

Constants: C1(4) type C like mytab-booking.

Constants: C1(4) type C value 'ABCD'.

73. What do search statements REPLACE, SHIFT, CONCATENATE, SPLIT have in commonThey all treat the operands as Type C regardless of their actual type

They all distinguish between upper and lower case

The actual type of each operand determines how the string processing is performed

They all set sy-fdpos

They all set sy-subrc

74. Refer to the following code. What is required to successfully access the individual structure fields in theFORM Data: st_mytab like mytab. Perform write_lines using st_mytab. Form write_lines using rec. Write: /rec-field1, rec-field2.Endform.

Rec needs to be defined LIKE mytab in the FORM

The formal parameter'rec' should be referenced by value

Page 22: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

E.

A.

Rec needs to be defined globally as a DATA object

The prefix REC is not needed

75. Which is not a valid R3 configurationSingle Database

Central

Three Tier

Two tier client server

76. How are locks removed from the lock tablesThe update task removes them at the end of the SAP LUW

The database breaks

Commit Work statement is issued

The update task removes them at the beginning of the SAP LUW

77. What programming language is used to develop the business applicationsVB

C++

Cobol

C

ABAP

78. How many servers in a 3 tier R/3 system3 for each tier

Only 3

Page 23: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

B.

C.

D.

A.

B.

C.

A.

B.

C.

D.

A.

B.

C.

D.

E.

Only 3

At least 3

1

79. What is the effect of a false CHECK statement within a loopThe same processing block is re-executed

Processing continues with the next processing block

Processing resumes at the beginning of the next loop pass

80. Where does the message get issued in the following. Report ZPROGA.Data: fielda type c.Call FunctionZ_TEST_FUNCTION Exporting fielda = fielda Exceptions No_Entry = 01 Failure = 02.If sy-subrc = 01. Message E123.Endif.Function Z_TEST_FUNCTION Importing f_fielda Exporting f_fieldb Exceptions No_Entry Failure.Message E123 Raising No_Entry.

It will abend in the runtime system

In Program ZPROGA and Function Z_TEST_FUNCTION

In Function Z_TEST_FUNCTION

In Program ZPROGA

81. Identify developer tools that are delivered with R/3Customizing

SQL Trace

Debugger

CATT

Dictionary Trace

Page 24: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

A.

B.

C.

D.

A.

B.

C.

D.

E.

A.

B.

C.

D.

A.

B.

C.

D.

82. Where are authorizations managed for a given userIn the USER01 table

In the TAUTH table

In the users own data

In the user master record

83. Which work process manages SAP locksAuthorization management

Gateway

Enqueue

Dispatcher

Dequeue

84. What is the system variable for determining how many database operations were performedSy-subrc

Sy-index

Sy-tabix

Sy-dbcnt

85. Mark the item that is not a valid work processUpdate

Spool

Gateway

Background

Page 25: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

86. Which statements would bypass current loop processing in the DO LOOP and continue processing with thenext loop pass. Report ABC.Data:……Start-of-Selection.Perform Form A.End-of-Selection.Form A. Do 10Times. A = A + 1. …. Enddo.Endform.

CHECK with a false expression

EXIT

Reject

Continue

87. What tool is used to define flow logicABAP Editor

Screen Painter

Flow Logic Editor

Function Builder

88. Identify the tasks that are performed in SAPNETRequesting an access key for a change to SAP code

Maintaining Authorizations

Booking SAP training

Issuing Problem Messages to SAP

89. How could you retreive a single entry from MYTABLE. (key fields are number, name)Select single * from MYTABLE where number = '01' and name = 'LISA'.

Select * from MYTABLE where number = '01'. Endselect.

Select single * from MYTABLE with keys

Page 26: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

D.

A.

B.

C.

A.

B.

C.

D.

A.

B.

C.

D.

A.

B.

C.

D.

Select * from MYTABLE where number = '01' and name = 'LISA'.

90. In what case would namespaces be practicalIndependent 3rd party development projects

To uniquely identify each object in a large project

Small internal projects

91. What are field symbols used for. For referencing multiple fields at the same time

For re-assigning field types

For graphic symbols on screens and lists

For referencing an address of a field

92. Processing Blocks in an ABAP program can best be defined asSmallest units in ABAP

Processing areas for the Blobal Data of a program

An active section of program code

Processing units that execute based on their position in the source code

93. When does version management not applyWhen objects belong to development class $TMP

When the task is released

On Inlcude Programs

When comparing across instances

Page 27: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

A.

B.

C.

D.

E.

A.

B.

C.

D.

A.

B.

C.

A.

B.

C.

D.

E.

94. Identify the characteristics of a Business ObjectBusiness objects provide methods to implement business functions

Business objects ONLY use BAPI's to access data

Business objects require knowledge of the internal source code to be able to access the data

Business objects are managed in the Business Object Repository (BOR)

Business objects are business oriented

95. What is the effect when a CLEAR statement is used on an internal table without header lineNothing

All the lines of the table are initialized

All the lines of the tabel are deleted

The work area is initialized

96. What has happened if an authorization fails with sy-subrc = 4The authorization check used the incorrect authorization object

The user does not have the required authorization

The user has an authorization containing the required values

97. What access methods are available for accessing internal tablesIndex

Hashed

Sorted

Key

Standard

Page 28: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

A.

B.

C.

D.

E.

A.

B.

C.

D.

A.

B.

C.

D.

Back to top

98. Which object would you interrogate to determine the length of a field on a screen.Value Table

Data Element

Repository

Dictionary

Domain

99. What tasks could be performed in SAPNETRegistering changes to SAP objects

Registering developers

Registering customer objects for local development

Registering changes to customer objects

100. What system variable is reset at the exit of a loop of an internal table.i.e. Loop at itab. .... Endloop.SY-LOOP

SY-INDEX

SY-DBCNT

SY-TABIX

Remove Ad

Page 30: Quiz School Stoquiz_school_storyry Php Title Taw10 Week 1 Pa

pdfcrowd.comopen in browser PRO version Are you a developer? Try out the HTML to PDF API

CCNA

CCNP

CIW

Are You Attractive? (Only Girls)

Which Friends Character Are You?

How Much Do You Know About The Indian Premier League 2015?

Extremely Hard Taylor Swift Quiz

How Many Babies Will I Have?

Featured Quizzes