Which of the following dictionary types are mapped to ABAP data type P (packed number)? Note: There are 2 correct answers to this question.
CLNT
CURR
CUKY
DEC
Which of the following are building blocks of the SAP Fiori design approach?
Note: There are 3 correct answers.
SAP Fiori elements
SAP Business Application Studio
SAP HANA Cloud
SAPUI5
Python
Which of the following string functions are predicate functions? (2 correct)
find_any_not_of ( )
count_any_of ( )
contains_any_of ( )
matches ( )
The term "Local Platform APIs" is directly associated with which of the following? (2 corrects)
SAP BTP, ABAP environment
SAP HANA
SAP S/4HANA Cloud, ABAP environment
Which of the following are types of indirect modifications? Note: There are 3 correct answers to this question.
Clones of SAP objects
Implicit enhancements
Class method overwrites
Changes pursuant to an SAP Note
Creation of Interfaces
Which of the following features of SAP Build is oriented towards a citizen developer?
Integrated debugger
Intuitive graphical tools utilizing code generation
Advanced testing capabilities
Utilization of a particular language and/or programming model
Given the following Core Data Service View Entity Data Definition:
AccessControl.authorizationCheck: #NOT REQUIRED
DEFINE VIEW ENTITY demo_sales_cds_so_i_ve
AS SELECT FROM demo_sales_so_i
ASSOCIATION TO PARENT demo_sales_cds_so_ve AS SalesOrder
ON $projection.parent key = SalesOrder.so_key
COMPOSITION [0..*] OF demo_sales_cds_i_sl_ve AS _ScheduleLine
ASSOCIATION [0..1] TO demo_sales_cds_material_ve AS _Material
ON Sprojection.material Material.material
{
key so_item_key,
parent_key,
posnr,
_SalesOrder,
_ScheduleLine,
_Material.material as mat
}
Using ABAP SQL, which select statement selects the mat field on line "_Material.material as mat"?
SELECT mat FROM demo_sales_cds_so_i_ve...
SELECT mat FROM demo_sales_cds_material_ve...
SELECT mat FROM Material...
SELECT mat FROM demo_sales_so_i...
What would be the correct expression to change a given string value 'mr joe doe' into 'JOE' in an ABAP SQL field list?
SELECT FROM TABLE dbtab1
FIELDS
f1,
substring(upper('mr joe doe'), 4, 3) AS f2_sub_up,
f3,...
FIELDSf1,
left(lower(substring( 'mr joe doe', 4, 3)), 3) AS f2_left_lo_sub,
f3,
upper(left( 'mr joe doe', 6)) AS f2_up_left,
substring(lower(upper( 'mr joe doe' ) ), 4, 3) AS f2_sub_lo_up,
Which patterns raise an exception? Note: There are 3 correct answers to this question.
DATA: gv_target TYPE p DECIMALS 2.
CONSTANTS: gco_intl TYPE i VALUE 3.
gv_target = EXACT #( 2 / gco_intl ).
(Richtig)
DATA: gv_target TYPE c LENGTH 5.
CONSTANTS: gco_string TYPE string VALUE '0123456789ABCDEF'.
gv_target = EXACT #( gco_string+5(6) ).
DATA: gv_target TYPE string.
CONSTANTS: gco_string TYPE c LENGTH 16 VALUE '@123456789ABCDEF'.
gv_target = EXACT #( gco_string+5(5) ).
DATA: gv_target TYPE d.
CONSTANTS: gco_date TYPE d VALUE '20331233'.
gv_target = EXACT ( gco_date ).
DATA: gv_target TYPE p DECIMALS 3.
CONSTANTS: gco_intl TYPE i VALUE 2.
Zuletzt geändertvor 8 Monaten