ABAP CERTI SHSM-1
![]() |
![]() |
![]() |
Title of test:![]() ABAP CERTI SHSM-1 Description: ABAP CERTI SHSM-1 Creation Date: 2023/01/12 Category: Others Number of questions: 40
|




New Comment |
---|
NO RECORDS |
What pre-defined ABAP data type is deep?. STRING. N. X. DECFLOAT34. What are some of the new features of open SQL in SAPNetweaver 7.5? (2). Intersection. Full join. String expressions. CASE expressions. Which of the following components are part of SAP Net weavers AS ABAP version 7.1x and higher? (2). Software Deployment manager (SDM). SAP GUI for Java. Message Server. Internet communication manager (ICM). Which of the following rules must you follow when you create a static constructor? (3). You CANNOT define parameters. You must name the method CONSTRUCTOR. You can define class-based or classic exceptions. You must define the method as public. Which enhancement can provide a screen exit? (3). Customer exits. Explicit enhancement points. New BADIS. Classic BADIS. Explicit enhancement sections. Which of the following actions can you perform in both the ABAP Editor and in the ABAP Debugger?. Create a breakpoint for a specific statement. Create a breakpoint for a specific Message. Create a breakpoint for a specific line. Create a watch point for a specific variable. What type of ABAP Dictionary view is implemented as an INNER JOIN?. Database view. Projection view. Maintenance view. Help views. Which database objects can you create in the ABAP Dictionary? (2). Foreign key relationships. Views. Indexes. Logical databases. The code of an executable program does NOT contain any event keywords. What event block does the code belong to?. LOAD-OF-PROGRAM. AT SELECTION-SCREEN. INITIALIZATION. START-OF-SELECTION. 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_struc INDEX 1. What are the possible type definitions for parameter ct_itab?(3). Sorted Table. Standard Table O Index Table. Any Table. Hashed Table. What is data binding?. Connecting one web dynpro component to another web dynpro component. Connecting an outbound plug of one view to the inbound plug of another view. Connecting the values of user interface elements to the context attributes of the corresponding controller. Connecting a context node in one controller to a context node in another controller. You have created table ZTAB and you want to create a foreign-key relationship to table SAPTAB Under which conditions is this possible? (2). The check field in ZTAB must have a data element that does NOT refer to a domain. The check field in ZTAB Must have the same ABAP Dictionary type as the corresponding field of check table SAPTAB. The check field in ZTAB must have the same domain as the corresponding field of check table SAPTAB. The check field in ZTAB must have the same name as the corresponding field of check table SAPTAB. What must you do create a singleton class? (2). Set the class instantiation to private. Create the object in a static method of the class itself. Store the reference to the singleton object of an instance attribute of the object itself. Define the class as abstract. What properties will be set when you define a table type in the ABAP Dictionary? (3). Access mode. Primary key. Get/SET Parameter. Line type. A costumer has asked that you improve performance for a small table with frequent read accesses, what buffering type do you recommend?. Single record. Full table. Column store. Primary key. 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 tomeet this requirement?. CASTING (arg FOR type). CASTING (arg AS type). CAST (arg AS type). CAST (arg FOR type). You defined database view A and maintenance view B in the ABAP Dictionary. What restrictions apply to these views? (2). The join of both A and B is an inner join. Only A can be used in the FROM clause of a SELECT statement. The tables joined in A must have foreign key relationships. The tables joined in B must have foreign key relationship. Which data types are incomplete ABAP standard data types? (3). I. D. C. N. P. What are advantages of defining text symbol in executable programs? (2). They are easier to maintain than literals. They facilitate multilingual functionality. The text of the text symbol can be changed at runtime. They can store up to 256 characters. What parameters can you set when you run the code inspector? (3). Check vanant name. Background job name. Object set name. Inspection name. Work process name. You have been asked to review the following expression AND which processes character string result = find (val = 'ababABAP' sub = 'A' occ = 2 case = *X'). What is the expected value of a result?. 22. 6. 4. 1. What is the purpose of the enqueue work process?. It processes requests for a print output. It processes update requests. It processes logical lock requests. It processes requests triggered by an active user. You are creating an inspection using the code inspector, which entities can you select for inspections? (3). Contents of a transport request. Contents of a single object. Contents of a package. Contents of an object set. Contents of named user's objects. What ABAP statements can you use to create instance of class CL_GUI_CUSTOM_CONTAINER in an ABAP program?. DATA: go_containerTYPE CL_GUI_CUSTOM_CONTAINER CREATEOBJECT go_container... DATA: go_containerTYPE CL_GUI_CUSTOM_CONTAINER. CREATEDATA go_container... DATA: go_containerTYPE REFTO CL_GUI_CUSTOM_CONTAINER. CREATEOBJECT go_container... DATA: go_containerTYPE REFTO CL_GUI_CUSTOM_CONTAINER. CREATEDATA go_container... You need to create a piece of code that can be used by multiple programs. Which of the following techniques does SAP recommend? (2). Use an include program. Use a method in a local class. Use a method is a global class. Use a function module in function group. You build a dialog screen with an input field in an ABAP Program. How do you ensure that the contents of the screen field can be accessed in the program?. Enter the name of a data object in the parameter ID attribute of the screen field. Use a MOVE statement in a PAO module to copy the data object. Use the GET statement in the program to transport the data from the screen field. Define a data object in the program with the same name as the screen field. An ABAP Program processes the following expression r=a/b+c which of the following data declarations would cause the runtime environment to use fixed-point arithmetic for the above expression to calculate the value of"/'?. DATA r TYPE p. a TYPE I VALUE201. B TYPE I VALUE 200. c TYPE f. DATA r TYPE D DECIMALS 2. A TYPE I VALUE 201. B TYPE I VALUE 200. C TYPE f. DATA r TYPE a DECIMAL2; a TYPE I CALUE201. B TYPE I VALUE200. C TYPE p. DATA r TYPE f. a TYPE I VALUE201. b TYPE i VALUE200. c TYPE f. Your program performs a database update by calling function modules in an update task. IT Certification Guaranteed, The Easy Way! Which ABAP statement can be used in the program to discard all update request for the current SAP ※ Logical unit of work (LUW)? (3). MESSAGE TYPE E. MESSAGE TYPE K. MESSAGE TYPE X. MESSAGE TYPE A. MESSAGE TYPE W. What can be implemented using an implicit enhancement option? (3). Overwrite methods for SAP function modules. Overwrite methods for global SAP classes. Additional exceptions in SAP function modules. Additional parameters in SAP function modules. Additional attributes for global SAP classes. To which of the following can you assign a search help? (3). Data element. Check table. Table type. Domain. Structure component. Which of the following standard hook methods exist in all web Dynpro controllers? (2). Wddoexit. Wddoinit. Wddoafterraction. Wddobeforenavigation. A scree-n has the following PAI flow login: PROCESS AFTER INPUT. FIELD A MODULE check_A FIELD B MODULE Check_b CHAIN FIELD C AND D. MODULE check_CD ENDCHAIN CHAIN FIELD: C AND B MODULE check_CB ENDCHAIN. What happens is the application sends a type E message during the check_CB module processing?. The screen is displayed again without processing the PBO flow logic . All fields are ready for input. The screen is NOT displayed again processing terminates, and the user must restart the ABAP program. The screen is displayed again without processing the PBO flow logic only fields B and care ready for input. The screen is displayed again and the PBO flow logic is processes only fields B and care ready for input. Which of the following statement create a data object? (3). CLASS. CONSTANT. class-data. type. parameters. How can you search for classic Business Add-ins (BADIs)? (2). Search the relevant component in the implementation Guide (IMG). Search in the application program for the GET BADI statement. Search in the application program for the method GET_INSTANCE of class CL_EXITHANDLER. Search in the application program for the CALL BADI statement. What do you need to consider when creating a secondary index on table? (2). The index can be created for specific database systems only. The most frequently selected field should be the first positions in the index. The index must always be unique. The table will be updated more quickly if you create more indexes. Which ABAP Dictionary object can reference a domain?. Data element. Table type. Database table field. Structure. Where can you define data types that can be used throughout the system? (2). In a function module. In a method. In a global interface. In the ABAP Dictionary. Which additions to the PARAMETERS statements can you use to fill the input field on the selection screen with a suggested value? (2). VALUE-CHECK. MEMORY ID. DEFAULT. MODIF ID. You call a lock module, Which exceptions could the lock module raise when a logical lock CANNOT be set? (2). CX_SY_OPEN_SQL_ERROR. SYSTEM_FAILURE. CX_SY_DATA_ACCESS_ERROR. FOREIGN_LOCK. How is data shred between web Dynpro controllers? (2). By using data binding from a view controller to another view controller. By using context mapping from a view controller to another view controller. By using context mapping from a view controller to a custom controller. By using context mapping from a view controller to the component controller. |