お手軽に合格させる 最新SAP C_P2W_ABN問題集には80問があります [Q15-Q39]

Share

お手軽に合格させる 最新SAP C_P2W_ABN問題集には80問があります

最新のC_P2W_ABN学習ガイド2025年最新の- 提供するのはテストエンジンとPDF

質問 # 15
Your program performs a database update by calling function modules in an update task.
Which ABAP statements can be used in the program to discard all update requests for the current SAP logical unit of work (LUW)?
Note: There are 3 correct answers to this question.

  • A. MESSAGE TYPE W
  • B. MESSAGE TYPE A
  • C. ROLLBACK WORK
  • D. MESSAGE TYPE X
  • E. MESSAGE TYPE E

正解:C、D、E


質問 # 16
You are making changes to a program that already has transaction code ZZZZ linked to it. Your colleague is testing transaction code ZZZZ in the same system.
When does the changed version of the program become visible to your colleague via transaction code ZZZZ?

  • A. When you execute the program from the ABAP Editor
  • B. When you activate the program
  • C. When the syntax of the program is correct
  • D. When you save the program

正解:B


質問 # 17
You have written a method implementation containing the following access to an internal table defined as a changing parameter of the method.
READ TABLE ct_itab INTO cs_struc INDEX 1.
What are the possible type definitions for parameter ct_itab?
Note: There are 3 correct answers to this question.

  • A. Index Table
  • B. Hashed Table
  • C. Sorted Table
  • D. Any Table
  • E. Standard Table

正解:B、D、E


質問 # 18
Which data types are incomplete ABAP standard data types? Note: There are 3 correct answers to this question.

  • A. D
  • B. I
  • C. N
  • D. P
  • E. C

正解:A、C、D


質問 # 19
What parameters can you set when you run the Code Inspector?
Note: There are 3 correct answers to this question.

  • A. Object set name
  • B. Work process name
  • C. Check variant name
  • D. Background job name
  • E. Inspection name

正解:A、C、E


質問 # 20
What must you do to create a singleton class?
Note: There are 2 correct answers to this question.

  • A. Store the reference to the singleton object in an instance attribute of the object itself.
  • B. Create the object in a static method of the class itself.
  • C. Define the class as abstract.
  • D. Set the class instantiation to private.

正解:B、D


質問 # 21
You create a domain in the ABAP Dictionary.
How can you use this domain?
Note: There are 2 correct answers to this question.

  • A. To describe the value range of a table field or structure component
  • B. To define the data type of a table field or structure component
  • C. To define data objects in ABAP programs
  • D. To define technical properties of data elements

正解:A、B


質問 # 22
What can be part of the signature of an instance constructor?
Note: There are 2 correct answers to this question.

  • A. Changing parameters
  • B. Exporting parameters
  • C. Exceptions
  • D. Importing parameters

正解:A、D


質問 # 23
What must exist before you can create a new transportable function module?
Note: There are 3 correct answers to this question.

  • A. Type group
  • B. Package
  • C. Change request
  • D. Function group
  • E. Module pool

正解:B、C、D


質問 # 24
You have the following class definition: CLASS Icl_airplane DEFINITION.
PUBLIC SECTION. METHODS:
set_passengers.
PROTECTED SECTION.
CONSTANTS: c_pos type i value 100. METHODS: get_passengers.
PRIVATE SECTION.
DATA: mv_passengers TYPE i. METHODS: set_attributes.
ENDCLASS.
Which components can be addressed directly from a subclass of class Icl_airplane?
Note: There are 3 correct answers to this question.

  • A. SET_PASSENGERS
  • B. SET_ATTRIBUTES
  • C. GET_PASSENGERS
  • D. C_POS
  • E. MV_PASSENGERS

正解:A、B、C


質問 # 25
What ABAP Dictionary object allows you to define fixed values?

  • A. Domain
  • B. View
  • C. Data element
  • D. Lock object

正解:A


質問 # 26
You have been asked to review the following expression, which processes character strings:
result = find(val = 'abapABAP'
sub = 'A'
Occ = 2
case = 'X'.....).
What is the expected value of result?

  • A. 0
  • B. 1
  • C. 2
  • D. 3

正解:B


質問 # 27
Which of the following settings can you define for both structures and transparent tables in the ABAP Dictionary?
Note: There are 2 correct answers to this question.

  • A. Enhancement category
  • B. Foreign key relationships
  • C. Storage type
  • D. Size category

正解:A、D


質問 # 28
A function module that has 2 classical exceptions is called with actual parameter values in such a way that both exception conditions are fulfilled.
How will the runtime system behave?

  • A. Both exceptions will be raised. In the calling program, sy-subrc has the value specified for the second exception.
  • B. The first exception that occurs will be raised. In the calling program, sy-subrc has the value specified for the first exception.
  • C. Both exceptions will be raised. In the calling program, sy-subrc has the value specified for the OTHERS option.
  • D. No exception will be raised. In the calling program, sy-subrc has the value specified for the OTHERS option.

正解:B


質問 # 29
Which are the functions of the ABAP dispatcher? Note: There are 3 correct answers to this question.

  • A. It integrates the presentation layer.
  • B. It performs a roll-in and roll-out of user context.
  • C. It requests the data from the database or the buffers.
  • D. It distributes the requests among the work processes.
  • E. It saves the processing requests in request queues.

正解:B、D、E


質問 # 30
What properties will be set when you define a table type in the ABAP Dictionary?
Note: There are 3 correct answers to this question.

  • A. GET/SET Parameter
  • B. Primary key
  • C. Change document
  • D. Access mode
  • E. Line type

正解:B、D、E


質問 # 31
Which additions to the PARAMETERS statement can you use to fill the input field on the selection screen with a suggested value? Note: There are 2 correct answers to this question.

  • A. DEFAULT
  • B. MODIF ID
  • C. VALUE-CHECK
  • D. MEMORY ID

正解:A、D


質問 # 32
Which of the following rules must you follow when you create a static constructor?
Note: There are 2 correct answers to this question.

  • A. You can define class-based or classic exceptions.
  • B. You must define the method as public.
  • C. You CANNOT define parameters.
  • D. You must name the method CONSTRUCTOR.

正解:A、C


質問 # 33
You write a report that displays mass data in a table using the ALV Grid Control.
Which of the following functions can you offer to the user without doing any specific programming? Note: There are 2 correct answers to this question.

  • A. Change column width and sequence
  • B. Convert currency amount columns
  • C. Display details by double-clicking on a row
  • D. Sort and filter the data by any column

正解:A、D


質問 # 34
You need to create a piece of code that can be used by multiple programs.
Which of the following techniques does SAP recommend?
Note: There are 2 correct answers to this question.

  • A. Use a method in a local class.
  • B. Use a function module in a function group.
  • C. Use a method in a global class.
  • D. Use an include program.

正解:B、C


質問 # 35
You want to loop over an internal table without copying each table row to a work area.
How can you achieve this using a field symbol?

  • A. LOOP...INTO <field_symbol>...ENDLOOP.
  • B. LOOP... INTO <field_symbol> TRANSPORTING... ENDLOOP.
  • C. LOOP... ASSIGNING <field_symbol>...ENDLOOP.
  • D. LOOP... REFERENCE INTO <field_symbol>... ENDLOOP.

正解:C


質問 # 36
Which of the following statements correctly define a data object with the type of data element s_conn_id?
Note: There are 3 correct answers to this question.

  • A. PARAMETERS pa_id TYPE s_conn_id.
  • B. DATA gv_id TYPE REF TO s_conn_id.
  • C. DATA gv_id LIKE s_conn_id.
  • D. CONSTANTS gc_id TYPE s_conn_id VALUE '0400'.
  • E. DATA gv_id TYPE s_conn_id.

正解:C、D、E


質問 # 37
You have been asked by a customer to develop Open SQL code to convert the value of argument "arg" into the ABAP Dictionary type specified.
Which SQL syntax do you use to meet this requirement?

  • A. CAST(arg AS type)
  • B. CASTING(arg FOR type)
  • C. CAST(arg FOR type)
  • D. CASTING(arg AS type)

正解:A


質問 # 38
You call a lock module.
Which exceptions could the lock module raise when a logical lock CANNOT be set?
Note: There are 2 correct answers to this question.

  • A. SYSTEM_FAILURE
  • B. CX_SY_DATA_ACCESS_ERROR
  • C. FOREIGN_LOCK
  • D. CX_SY_OPEN_SQL_ERROR

正解:A、C


質問 # 39
......

C_P2W_ABN問題集と試験テストエンジン:https://jp.fast2test.com/C_P2W_ABN-premium-file.html


弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

我々の働いている時間: ( GMT 0:00-15:00 )
月曜日から土曜日まで

サポート: 現在連絡 

English Deutsch 繁体中文 한국어