Sei sulla pagina 1di 7

Mark the event keyword that links report processing and a logical database

Get

Read

Select

Put

The user default for the date format is set to YYYY.MM.DD. Assume that today's
date is Jan 15, 1999. Select the displayed output of the date field in the following
code.

Data: datum type d.


Datum = sy-datum.
Write:/ datum mm/dd/yyyy.

1999/01/15

01/15/1999

1999.01.15

19990115

What is the READ LINE statement used for.

(More than one answer is correct)

Reading Secondary Lists

Reading the Basic List

Reading Database Tables

Reading Internal Tables

For called program components that are of type transaction or report, what is true
about the roll area (assuming processing will resume in the calling program).

They run in their own roll area

Share the same roll area

They run in the roll area of the caller

Default Page Headings are created on which type of list.

Secondary

Basic

All lists

What is the result of the following code


DO 4 TIMES.
IF SY-INDEX = 2.
CONTINUE.
ENDIF.
WRITE SY-INDEX.
ENDDO.

134

1234

Mark the 3 system fields that are continually maintained by the list

(More than one answer is correct)

SY-TITLE

SY-LINNO

SY-PAGNO

SY-COLNO

SY-LINSZ

What is true about Functional Areas and User Groups in ABAP Query.

(More than one answer is correct)

A Functional area can be assigned to several user groups

Several Functional areas can be assigned to one user group

Users belonging to the same authorization group have the same


query privilege
The queries of a user group belong only to the person that created the
query

The user can access only designated queries in a given user group

Identify the line number that will cause the break for AT NEW CONNECTION

CARRIER CONNECTION FLIGHTDATE


10 AA FFF Jan 2
20 AA FFF Jan 3
30 DL FFF Jan 5

20

All rows will cause a break

30

NO rows will cause a break

Mark the valid usage of the Read Statement.


(More than one answer is correct)

Read Line 3 of Current Page

DO. Read Line SY-INDEX. ENDDO.

Read Line 3 of Next Page

Read Current Line of Table ITAB

When is the Top-Of-Page event triggered

When the first write statement is encountered

When the report starts

After Number of lines per page, as specified in the REPORT, have been
wriiten to the list buffer

When the Top-Of-Page event is encountered in sequence

At what point does the standard selection screen (as a result of a select-options) get
displayed

Prior to Initialization event

Before the Report Statement

At Start-of-Selection event

After Initialization event

Which of the following is an invalid method for Populating an internal table

Collect

Insert ITAB

Select * into Table ITAB from dbtab.

Append

Read Table ITAB

Which Report Statement option determines the width of a list

Report Size

Line-Size

Line-Count

Line-Width

Within the AT USER-COMMAND processing block which system variable is used to


check the function code
SY-UCOMM

SY-KEY

SY-GUI

SY-FCODE

What tool would be used to view the events for cl_gui_alv_grid

Workbench Organizer

BAPI Browser

Function Builder

Class Builder

What class is used to display the ALV Grid Control

cl_gui_custom_grid

cl_gui_alv_grid

cl_gui_alv

cl_gui_custom_container

Select the line that would execute in the following code after the EXIT statement

10 get spfli.
20 * Processing of SPFLI records
30 write: spfli-carrid, spfli-connid.
40 counter = counter + 1.
60 if counter > 1.
70 Exit.
80 endif.
90 write:/ ‘No more processing for this Carrier'.
100 get sflight.
110 write: sflight-fldate, spfli-price.
120 end-of-selection.
130 write: / text-002, text-003.

130

Exits the Program

120

80

100

What is true about Functional Areas and User Groups in ABAP Query.

(More than one answer is correct)

The user can access only designated queries in a given user group

Several Functional areas can be assigned to one user group


The queries of a user group belong only to the person that created the
query

A Functional area can be assigned to several user groups

Users belonging to the same authorization group have the same


query privilege

What is the READ LINE statement used for.

(More than one answer is correct)

Reading Secondary Lists

Reading Internal Tables

Reading the Basic List

Reading Database Tables

Given the Logical Database F1S, identify the Database program that is created

SAPDBF1S

SAPMZF1S

DBF1SSEL

Your user defined Program Name

Refer to the following code. Why would the literal 'Hello' not be displayed on your
list. Write: 'Hello'(001).

(More than one answer is correct)

Your logon language is different than the original language

Text elements cannot be used in a Write statement

The text element is missing from the program

The text element does not contain the value 'Hello'

Values supplied to variants are stored in which table.

PARM

TVAR

TVARV

T006

Which of the following will trigger the AT LINE_SELECTION event.


(More than one answer is correct)

Function Code P+

Function Code PICK

Menu Option EDIT>Choose

Function Code CHOOSE

F2

Double Click a line on a list

In what manner can lists be saved.

(More than one answer is correct)

SAPOFFICE

Report Tree

ABAP Editor

HTML Format on local PC

Local File to the application server

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

(More than one answer is correct)

Message E004(UD)

Message (UD)E004

Message E004

Message ID UD Type E Number 0004

Program A issues the following statement SUBMIT PROGRAM B. What takes place

User Context is flushed

Program B becomes active in the same internal session of Program A

Program B runs in a new internal session

Program A becomes active in the same internal session of Program B

Assuming a Detail list exists, what takes place when sy-lsind is set to zero.

(More than one answer is correct)

All secondary lists are deleted


The basic and secondary lists are deleted

the basic list is overwritten with the current secondary list

The original basic list is re-displayed

What happens to memory when the Export is executed without specifying ID. i.e
EXPORT object to memory

ABAP memory sets up a new default area

SAP Memory is overwritten

The ABAP memory is completely overwritten

Which type is not a GUI Status.

Dialog Box

Online Status

List Status

Context Menu

Identify the clause that is used to suppress standard headers

System>List>Save

No Standard Page Heading

No Standard Heading

Suppress Standard

Identify the valid methods for setting the value of a select-options selection field. .

(More than one answer is correct)

SELECT-OPTIONS AIRLINE FOR ZFLIGHTS-CARRID MEMORY ID


CAR.

Initialization. ZFLIGHTS-CARRID = 'AA'.

Start-of-Selection. ZFLIGHTS-CARRID = 'AA'.

SELECT-OPTIONS AIRLINE FOR ZFLIGHTS-CARRID DEFAULT 'AA'.

Potrebbero piacerti anche