SAP C-S4HDEV1909テストエンジン練習テスト問題、試験問題集 [Q14-Q35]

Share

SAP C-S4HDEV1909テストエンジン練習テスト問題、試験問題集

100%無料C-S4HDEV1909日常練習試験には82問があります


SAP C-S4HDEV1909 認定試験の出題範囲:

トピック出題範囲
トピック 1
  • CommunicationManagementを使用して通信シナリオを構成する
  • カスタムロジックをカスタムビジネスオブジェクトに追加する
トピック 2
  • BOPFでCDSベースのビジネスオブジェクトを定義し、それらの動作を実装します
  • クラウドプラットフォームの接続性と宛先サービスについて説明します
トピック 3
  • ABAP開発でのABAPRestful Application Programming(RAP)モデルの使用について説明する
  • ABAPでカスタムリモートクライアントプロキシを作成して使用する
トピック 4
  • ABAPSQLの構文上の変更と機能拡張の説明
  • AMDPとCDSテーブル関数の定義
トピック 5
  • カスタムビジネスオブジェクトのUIを作成する
  • カスタムフィールドを作成する。カスタムロジックを作成する
トピック 6
  • さまざまな分析ツール、具体的にはATC、SQLM、SWLT、SAT、ST05、およびABAP Call Monitor(SCMON)について説明します
  • 文字列処理に式ベースの構文を使用します
トピック 7
  • 影響を分析するためのカスタムコードとツールに対するS
  • 4HANAの簡素化の影響を説明する
  • ABAP Restful Application Programming(RAP)モデル
トピック 8
  • SAPFioriランタイムオーサリングの使用
  • データソース拡張の作成
  • ABAP Core Data Services(CDS)でのビューの定義と使用

 

質問 14
You want to create a new CDS view VIEW1 that reads from CDS view VIEW2. VIEW2 has 2 input parameters, par1 and par2, with data type abap.char(10). Which of the following is the correct way to supply the input parameters?

  • A. select from VIEW2( par1: 'Text1', par2: 'Text2' )
  • B. select from VIEW2( par1= 'Text1' par2= 'Text2' )
  • C. select from VIEW2( par1: 'Text1' par2: 'Text2' )
  • D. select from VIEW2( par1 = 'Text1', par2 = 'Text2' )

正解: A

 

質問 15
You have written a program that uses inline declarations and assigns values using expressions. The global data declarations contain the following statement: DATA o TYPE REF TO cl_class.
Which of the following are valid statements?
There are 3 correct answers to this question.

  • A. o =NEW cl_class( ).
  • B. o = NEW( ).
  • C. DATA(p) = NEW cl_class( ).
  • D. DATA(p) =NEW( ).
  • E. o = NEW string( ).

正解: A,B,C

 

質問 16
In a Custom Business Object you want to implement a determination for a node with the ID SALESORDER. What kind of parameter is the SALESORDER parameter?

  • A. Returning
  • B. Exporting
  • C. Importing
  • D. Changing

正解: D

 

質問 17
Which of the following ways can you use to address input parameter X in the CDS view definition? Note:
There are 2 correct Answers to this question.

  • A. :X
  • B. $parameters.X
  • C. @parameters.X
  • D. @X

正解: A,B

 

質問 18
You plan to migrate an SAP ERP system to SAP S/4HANA. Which of the following tasks are recommended but NOT mandatory?
There are 2 correct answers to this question.

  • A. SAP S/4HANA checks
  • B. Performance tuning
  • C. Custom code evaluation
  • D. Functional adaption

正解: B,C

 

質問 19
Which of the following Open SQL statements are syntactically correct in release 7.50? Note: There are 3 correct Answers to this question.

  • A. SELECT carrid connid loccuram loccurkey. FROM sbook. INTO TABLE lt_booking . WHERE customid = lv_customer.
  • B. SELECT carrid connid loccuram loccurkey . FROM sbook . WHERE customid = lv_customer . INTO TABLE lt_booking.
  • C. SELECT carrid, connid, loccuram, loccurkey . FROM sbook . INTO TABLE @lt_booking . WHERE customid = @lv_customer.
  • D. SELECT FROM sbook . FIELDS carrid, connid, loccuram, loccurkey . INTO TABLE @lt_booking . WHERE customid = @lv_customer.
  • E. SELECT FROM sbook. FIELDS carrid, connid, loccuram, loccurkey . WHERE customid = @lv_customer . INTO TABLE @lt_booking.

正解: C,D,E

 

質問 20
Which of the following are features of the ABAP Test Cockpit? Note: There are 2 correct Answers to this question.

  • A. Request and approve exemptions
  • B. Schedule global check runs
  • C. Measure the consumption of database time
  • D. Check how often code is executed

正解: A,B

 

質問 21
You want to use the extensibility app, Custom Fields and Logic, to define custom fields for an SAP Fiori app. Which of the following conditions is a prerequisite for this activity?

  • A. You must release the SAP Fiori app for extensibility using the Enable Fields for Use transaction in the Custom Fields and Logic (SCFD_EUI) app.
  • B. You must release the SAP Fiori app for extensibility via transaction Setup Adaptation Transport Organizer for Key User Tools (S_ATO_SETUP).
  • C. There is no specific requirement. Custom fields can basically be created for any SAP Fiori app.
  • D. Custom fields can only be created for SAP Fiori apps that have been enabled by SAP for this type of extension.

正解: D

 

質問 22
Which of the following Open SQL statements are syntactically correct in release 7.50?
There are 3 correct answers to this question.

  • A. SELECT FROM sbook. FIELDS carrid, connid, loccuram, loccurkey . WHERE customid
    =@lv_customer. INTOTABLE @lt_booking.
  • B. SELECT carrid connid loccuram loccurkey. FROM sbook. INTOTABLE lt_booking . WHERE customid = lv_customer.
  • C. SELECT FROM sbook . FIELDS carrid, connid, loccuram, loccurkey . INTO TABLE @lt_booking .
    WHERE customid = @lv_customer.
  • D. SELECT carrid, connid, loccuram, loccurkey . FROM sbook .INTO TABLE @lt_booking . WHERE customid = @lv_customer.
  • E. SELECT carrid connid loccuram loccurkey . FROM sbook . WHERE customid = lv_customer.
    INTOTABLE lt_booking.

正解: A,B,D

 

質問 23
Which of the following make up the behavior of a BOPF Business Object?
There are 3 correct answers to this question.

  • A. Determinations
  • B. Actions
  • C. Associations
  • D. Validations
  • E. Authorizations

正解: A,B,D

 

質問 24
You want to create a new CDS view VIEW1 that reads from CDS view VIEW2. VIEW2 has 2 input parameters, par1 and par2, with data type abap.char(10).
Which of the following is the correct way to supply the input parameters?
Please choose the correct answer.

  • A. select from VIEW2( par1: IText1I, par2: IText2I )
  • B. select from VIEW2( par1 = IText1I, par2 = IText2I )
  • C. select from VIEW2( par1= IText1I par2= IText2I )
  • D. select from VIEW2( par1: IText1I par2: IText2I )

正解: A

 

質問 25
You maintain a transactional app for sales orders that is built with the ABAP Programming model for SAP Fiori. For which of the following tasks would you implement a determination of the BOPF Business Object?
There are 3 correct answers to this question.

  • A. Calculate the sales order sum
  • B. Save the sales order data
  • C. Check the creation date
  • D. Dynamically allow or disallow editing
  • E. Assign the sales order ID

正解: A,B,E

 

質問 26
Which of the following are benefits of draft-enabling an application? Note: There are 3 correct Answers to this question.

  • A. Re-use of existing business logic
  • B. Implicit authorization checks
  • C. Support for continuous work
  • D. Support for device switching
  • E. Early feedback from validations

正解: C,D,E

 

質問 27
What can you do with the SQL Trace Tool (ST05)?
There are 3 correct answers to this question.

  • A. Display record of all database access
  • B. Locate database-related performance issues
  • C. Detect all deleted database records
  • D. Locate database-related functional issues
  • E. Detect redundant statements

正解: B,D,E

 

質問 28
In SAP S/4HANA, a replacement object is assigned to transparent table ANEA. Which uses of table ANEA do you have to correct when migrating an SAP ERP system to SAP S/4HANA? Note: There are 2 correct Answers to this question.

  • A. In the FROM clause of a DELETE statement
  • B. As the line type of a table type in the ABAP Dictionary
  • C. As the data source of a database view in the ABAP Dictionary
  • D. In the FROM clause of a SELECT statement

正解: A,D

 

質問 29
You implement an ABAP Managed Database Procedure (AMDP). You want to access some other objects from within your script code. Which of the following objects must you list after the USING addition?
There are 2 correct answers to this question.

  • A. Calculation Views
  • B. Stored Procedures
  • C. AMDP Functions
  • D. Database Views

正解: C,D

 

質問 30
You want to define a CDS-based BOPF Business Object that consists of a root node (ZI_DocumentTP) and a child node (ZI_ItemTP). Which annotation is mandatory in the data definition of CDS view ZI_ItemTP?

  • A. @ObjectModel.compositionRoot: false
  • B. @ObjectModel.writeActivePersistence: '...'
  • C. @ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
  • D. @ObjectModel.transactionalProcessingEnabled: true

正解: C

 

質問 31
Which of the following do you use as a separator between a table and a field name in Open SQL?

  • A. Minus (-)
  • B. Pointer(->)
  • C. Tilde (~)
  • D. Period (.)

正解: C

 

質問 32
Which of the following are extensibility apps from the Extensibility Business Catalog? Note: There are 3 correct Answers to this question.

  • A. Custom CDS Views
  • B. Custom Database Fields
  • C. Data Source Extensions
  • D. Custom Fields and Logic
  • E. Configure Software Packages

正解: A,D,E

 

質問 33
Which of the following are valid ways to insert a comment in a Data Definition (DDL source)?
There are 2 correct answers to this question.

  • A. /* comment */
  • B. // comment
  • C. -- comment
  • D. * comment

正解: A,B

 

質問 34
You want to add a validation to a Custom Business Object. Which pattern do you choose for your custom logic?

  • A. Before Save
  • B. After Save
  • C. After Modification
  • D. Before Modification

正解: A

 

質問 35
......

有効な問題最新版を試そうC-S4HDEV1909テスト解釈C-S4HDEV1909有効な試験ガイド:https://www.jpntest.com/shiken/C-S4HDEV1909-mondaishu

弊社を連絡する

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

オンラインサポート時間:( UTC+9 ) 9:00-24:00
月曜日から土曜日まで

サポート:現在連絡