C-ABAPD-2507 試験問題を無料オンラインアクセス
| 試験コード: | C-ABAPD-2507 |
| 試験名称: | SAP Certified Associate - Back-End Developer - ABAP Cloud |
| 認定資格: | SAP |
| 無料問題数: | 80 |
| 更新日: | 2026-06-02 |
You have two database tables - ZDEPARTMENTS and ZEMPLOYEES. They are linked by a foreign key relationship: ZEMPLOYEES is the foreign key table and ZDEPARTMENTS is the check table. A department may have any number of employees (including none at all).
What is the correct cardinality of the foreign key relationship?
What RESTful Application Programming feature is used to ensure the uniqueness of a semantic key?
Given the following code which defines an SAP HANA database table in SAP S/4HANA Cloud, public edition:
@EndUserText.label : 'Draft table for entity /DMO/R_AGENCY'
@AbapCatalog.tableCategory : #TRANSPARENT
@AbapCatalog.deliveryClass : #A
@AbapCatalog.dataMaintenance : #RESTRICTED
define table /dmo/agency_d {
key mandt : mandt not null;
key agencyid : /dmo/agency_id not null;
key draftuuid : sdraft_uuid not null;
name : /dmo/agency_name;
street : /dmo/street;
postalcode : /dmo/postal_code;
city : /dmo/city;
}
You are a consultant and the client wants you to extend this SAP database table with a new field called zz_countrycode on line #14.
Which of the following is the correct response?