option
Cuestiones
ayuda
daypo
buscar.php
TEST BORRADO, QUIZÁS LE INTERESE: Test Certificación SAP TAW12_750
COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
Test Certificación SAP TAW12_750

Descripción:
200 preguntas. Actualizadas a agosto de 2020

Autor:
AVATAR
RaulMBF
OTROS TESTS DEL AUTOR

Fecha de Creación:
16/08/2020

Categoría: Otros

Número Preguntas: 200
COMPARTE EL TEST
COMENTARNuevo Comentario
No hay ningún comentario sobre este test.
Temario:
Select the valid customer defined Message Stement. MESSAGE Y123. MESSAGE E123 (9999). MESSAGE ID 'AT' TYPE 'S' NUMBER 100 MESSAGE E123 by Fielda Fieldb.
What happens when a 1 to many relationship is encountered with an inner Join? Redundant data is not returned to the resultant set Redundant data from the outer table is included A runtime error Redundant data from the inner table is included.
What must be assigned to help parameters? Data element Domain Values Nothing.
What is contained in the system variable sy-linsz? Row count of the current line Height of the current line Width of the current line Size of vertical bars in your list.
Identify the line number that will cause the break for at NEW CONNECTION: CARRIER CONNECTION FLIGHTDAT 10 AA FFF Jan 2 20 AA FFF Jan 3 30 DL FFF Jan 4 All rows will cause a break 20 30 No rows will cause a break.
On what line does the output ‘AAAA’ appear in the following code? REPORT ZPGM NO STANDARD PAGE HEADING. DO 8 TIMES. WRITE / ' '. ENDDO. SKIP. WRITE 'AAAA'. 9 2 1 10.
What determines if a table is a client specific versus client independent? The first field is mandt with a external data type CLNT and specified as a key field Depends how Basis has configured the client The option 'Client Specified' is added to the Select stement The first field is mandt with a domain CLNT but not specified as a key field.
What is true about the primary index of a table? There are 2 correct answers. The primary index is automatically created when the table is activated The key fields of the the table make up the primary index The primary index ID is designated by the Database Administrator The developer designates the fields to be used as the primary index.
Default page headings are created on which type of list? All lists Basic Secondary.
Identify the dictionary type of field catalog used for the ALV control. fieldcat catalog alv_catalog lvc_t_fcat.
Program A issues the following statement SUBMIT PROGRAM B. What takes place? Program A becomes active in the same internal session of Program B Program B becomes active in the same internal session of Program A User Context is flushed Program B runs in a new internal session.
What are valid methods for including text elements in your program? There are 2 correct answers. Write: 'Hello'(001) Write: TEXT-001 Write: 001(Hello) Write: TEXT-001'Hello'.
Refer to the following code, if there are no entries in my_itab, what is the result? SELECT * FROM my_table FOR ALL ENTRIES IN my_itab WHERE key1 = my_itab-key1. Runtime error All entries are retrieved Only distinct values for key1 No entries are retrieved.
When writing a list, what command would allow you to overwrite a line? Back Overtype Reserve Write:/ 1.
What condition apply for a left outer join in open SQL? Only 'Or' can be used as a logical operator in the ON condition A Left Outer Join is not permitted in OPEN SQL A join statement is found to the right of the join operator At least one field form the table on the right is required for comparison in the ON condition.
What does a LDB provide? Consistent and flexible user interface A method to access the data in a random manner Centrally defined authorization checks Central performance improvements for update accesses.
What is needed to ensure a check field is verified against the referred key field of the check table? Same data type only is required for check field and referenced field All key fields MUST have domain equality between check table and foreign key table Same domain is required for check field and referenced field Same data element is required for check field and referenced field.
Select the example of organizational data: Sales Order Country Keys Cost Centres Vendors.
Identify the valid attributes of domain. There are 3 correct answers. Header Label Length Fixed values Type.
For called program component that are type transaction or report, what is true about the roll area (assuming processing will resume in the calling program). Share the same roll area They run in their own roll area They run in the roll area of the caller.
What are the main functions of the data dictionary? There are 2 correct answers. To insulate the ABAP/4 developer from the dabase To provide data security at the application level To connect to the operating system To support the creation and management of metadata.
What is true about SAP query? Users can access only the fields which are assigned to a functional group A user master record is generated when the query is defined SAP user can be assigned to only one user groups Functional Area can be a special view of a logical dabase.
Programs that extends beyond transaction limits and want to pass data should use: SAP Memory Tables ABAP/4 memory.
Which of the following is an invalid method for populating an internal table? Insert Append Read table Select Collect.
Identify the clause that is used in suppress standard headers No Standard Heading No Standard Page Heading Suppress Standard System>List>Save.
What appears in the standard header of list? There are 3 correct answers. Page number User Program title Date Underline.
You have made change to an existing table that contains data. ¿What takes place when the Database Conversion utility is executed? There are 3 correct answers. Data in the table is automatically deleted and must be reloaded The table in the database is renamed and eventually deleted The indexes for the table needs to manually be reconstructed in the ABAP Dictionary The revised table in the ABAP/4 Dictionary is activated The table in the database is recreated.
After a READ LINE on a List, what happens to the HIDE data? Nothing, the data remains in the hidden area The hide data is restored to shared memory The hide data is not available to the program It is transferred back to the fields defined in the program.
Where does information comes from when you press F1 on a screen fileld? Data element documention Domain short text Search help Domain Help values.
What will cause the AT USER-COMMAND to fire? Type S Function Codes Type T Functions Codes Normal Function Codes Function Codes that Start with P.
What are the coordinates of the following model dialogue Box? Window Starting at 10 20 Ending at 20 30 Starting at Column 10, Row 20 Ending at Column 20, Row 30 Starting at Column 10, Row 30 Ending at Column 20, Row 20 Starting at Row 10, Column 20 Ending at Row 20, Column 30.
What is the effect of the collect statement if any entry with the same key already exists? Appends a new line Adds the numeric fields to an existing entry Creates a new entry.
How are buffers used by inner and outer joins? Buffers are always used Buffers are always bypassed The choice can be made to use or bypass buffers.
Mark the code that will display the selection screen of the called program ZIST. There are 2 correct answers. SUBMIT ZTST USING SELECTION-SET 'VAR1' SUBMIT ZTST VIA SELECTION-SCREEN SUBMIT ZTST AND RETURN SUBMIT ZTST VIA SELECTION-SCREEN USING SELECTION-SET 'VAR1'.
During interactive reporting, at what point does sy-Isind get incremented by the system? When you programmatically increment it At the end of an interactive processing block At the beginning of an interactive processing block.
What requirement exists if a field is defined in the dictionary of type CURR? Decimals must be defined in the domain The field must be numeric The field must be linked to another field of type CUKY No other requirement exists.
Identify the case where table buffering should be set off For Global Master Data When the most current data is not required When the most current data is required For Small Static non volatile tables.
What is true about views? There are 2 correct answers. A view contains data Maintenance Views are not updateable A view is automatically created on the database upon activation Views can be buffered.
READ CURRENT LINE makes use of what system variables? There are 2 correct answers. SY-CUROW SY-PAGNO SY-CPAGE SY-INDEX.
When does a table get physically created in the underlying database? When you activate a transparent table in the ABAP Workbench When you create a transparent table When Basis creates the tablespace at the OS layer When you activate a transparent table in the Dictionary.
When you EXPORT an internal table that has a header line to ABAP/4 memory, what is the result? The header line and contents of the internal table are stored You cannot EXPORT an internal table with a header line. Only the header line is stored Only the contents of the internal table is stored.
What is the code required in order to scroll the third detail list to page? Scroll LIST Index 3 to Page 5 Scroll LIST sy-index 3 to Page 5 Scroll LIST sy-lsind 3 to Page 5 Scroll LIST 3 5.
In the context of a logical database, which is not a valid ABAP/ 4 keyword event? Get Initialization At Selection-Screen End-Of-Selection Put.
Mark the sort statement that is more efficient. Sort Ib Ascending Sort IB Sort IB BY (fieldname) Sort IB by keys.
Select the methods used to access data on the dabase. There are 3 correct answers. Read table Get node Native SQL ABAP/4 Open SQL LDB.
Where does the system store the data after a Read Line has been performed on a list? In Memory In an Internal table SY-LISTI SY-LISEL.
What is true about sorting an extract (intermediate) database? You can sort an extract dataset even without a header The extract dataset is typically sorted in the Start-of- Selection processing block The sequence of the control breaks in the Loop does not have to correspond to the extract dataset sort sequence The extract dataset must be sorted for processing to begin.
What is Top-Of-Page event triggered? When the Top-Of-Page event is encountered in sequence After Number of lines per page, as specified in the REPORT, have been written to the list buffer When the report starts When the first WRITE statement is encountered.
What is the purpose of nodes statement in an ABAP program? Points to cluster tables Indicates the nodes from the logical database Specifies the logical database Sets up an address pointer to the nodes in the shared memory buffers.
What happens when an EXIT statement is executed in the AT event? The program ends The remainder of the current processing block is executed The output list is displayed The system leaves the processing block and branches to the processing block of the next event.
What makes a text table? The type of foreign key field defined must be "No Key /Candidates" The key of the text table consists of the key of the check table plus an additional language key Cardinality must be defined as 1:1.
Mark the event keyword that links reporting processing at logical database Put Read Get Select.
Why is subquery usually more efficient? Data is filtered in the SAP GUI Data is filtered at the application server Data is filtered in the database Data is filtered on the network.
The user default for the date format is set to YYYY.MM.DD. Assume that today’s date is January 15, 1999, Whats is the displayed output of the date field in the following code? DATA: datum TYPE d. datum = sy-datum. WRITE: / datum mm/dd/yyyy. 01/15/1999 1999/01/15 19990115 1999.01.15.
Which statement would be used to create a box with a frame title on a selection screen? Begin of Block, End of Block Begin of Selection, End of Selection Begin of Frame, End of Frame Begin of Box, End of Box.
What is the default screen that is generated for a selection screen? 100 1000 1001 1100.
What is the recommended method to modify a standard search help to include customer defined search paths? Add an elementary search help to the standard search help Add a collective search help to the standard search help Perform a modification to the standard search help Enhance the standard search help with an append search help.
What authorization object is required to main queries? S_Query S_Program S_Query_All S_Mainin.
What happens if message E046 is raised in the following code? AT SELECTION-SCREEN ON sales. IF sales < 600. MESSAGE e046. ENDIF. Field Sales is open for input and all other fields are not available for input The program ends All fields are open for input and cursor is positioned on field sales The initialization event is fired again.
What is true about the result set of an inner join at the database level? Contains all entries from both tables Contains all entries from the left table Contains only entries that match Contains all entries from the right table.
What is structured type in the ABAP dictionary that has no physical table definition in the underlying database referred to as? Structured type Table type Structure Table.
An ABAP program has a selection screen. The ABAP program is to be included as a step in the Background job. What other field must be filled in when creating the job step? Print Specifications Variant Language Mandatory Fields.
Suppose LFA1 is the root node, LFBK and LFB1, are branches of LFA1, and LFA1 is a branch of LFB1. If the report conins only one single GET statement for LFB1, the processing passes through which table. LFA1,LFBK,LFB1.LFC1 LFA1, LFBK, LFB1 LFA1 and LFB1.
Where are dictionary changes made available to ABAP programs? Next time user signs on Immediately, providing the object is activated After Database is re-organized Next time program is re-generated.
If the program has a START-OF-SELECTION event and you program a statement between the REPORT statement and the first event keyword or form statement, the statement are included with which processing block START-OF-SELECTION END-OF-SELECTION INITIALIZATION No Processing Block.
What methods can be used to set the values for printing an online list? There are 3 correct answers. NEW-PAGE PRINT ON Function SET_PRINT_PARAMETERS Function GET_PRINT_PARAMETERS Include SET_PRINT_PARAMTERS.
What can be assigned directly to a data element? There are 2 correct answers. Domain Built-in type Table type Check table Table field.
Which program is used to refine the values returned by a search help? Administration data Export Restrict value range Import.
How can records from the left table be omitted in an outer join? Specify conditions in the WHERE clause There is no way to omit records from the left table Specify conditions in the ON clause Specify conditions in the FROM clause.
Table T wants to ensure that the key field T1-filedata entered is valid against a field T2 fieldata in the table T2. Which is foreign key table? T1 T3 from the dictionary T2.
What is not a valid functional type? Program Joined tables Sequential Dataset LDB Search Help.
Define logical database. A Reporting tool A method to update data Definition of a Relational Data Model An ABAP/4 Reading Program used to read and process data.
What is the option on the “Parameters” statement in a report program to include a SPA/GPA Parameter ID? Memory ID Parameter ID Value Default Parameter ID.
Which system variable contains the number of detail list that is being generated? SY-INDEX SY-LISTI SY-LSIND SY-BIX.
Identify the item that are not considered Data Dictionary technical settings when creating a dictionary table. There are 2 correct answers. Buffering Data Class Field Name Size category Status.
What is true about the new-page statement? There are 2 correct answers. It is an event Requires at least one write stement before it can be executed Increments the page counter Used to generate a blank page.
What does the following code achieve? AT SELECTION SCREEN FOR VALUE-REQUEST FOR sales. CALL SCREEN 100 When the user presses F1, Screen 100 is displayed in addition to the normal help screen. When the user presses F1, Screen 100 is displayed instead of the normal possible values search. help. When the user presses F4, Screen 100 is displayed instead of the normal possible values search help. When the user presses F4, Screen 100 is displayed in addition to the normal help screen.
Tables with indices, result in reduced performance in what Kind of OPEN SQL operation. Database modify All database access Database retrieval Database updates.
In what can lists be saved? There are 3 correct answers. Local File to the application server SAPOFFICE HTML Format on local PC ABAP Editor Report Tree.
Identify the valid methods for setting the value of a SELECT-OPTION selection field. There are 2 correct answers. INITIALIZATION. ZFLIGHTS-CARRID = 'AA'. START-OF-SELECTION. ZFLIGHTS-CARRID = 'AA'. SELECT-OPTIONS AIRLINE FOR ZFLIGHTSCARRID MEMORY ID CAR. SELECT-OPTIONS AIRLINE FOR ZFLIGHTSCARRID DEFAULT 'AA'.
When does a processing block for a Get statement end? When the END GET statement is encountered When the next keyword event is encountered When all data has been retrieved for the Get After each PUT in the LDB.
What is true about the result set of an left outer join at the database level? There are 2 correct answers. Contains all entries from the left table Contains only entries that match in the on clause Fields from unmatched rows in the right table are null filled Fields from unmatched rows in the left table are null filled Contains all entries from the right table.
What is required to establish an interactive list? There are 2 correct answers. The user interface allows actions to trigger interactive list type events Corresponding interactive events are programmed The Hide command is programmed into the report.
Which is not a valid option for a WRITE statement? Input NO-GAP No-Zero As Radio Box Centered Under.
Mark the valid logical nodes. There are 3 correct answers. Table Structure Node File Complex Data Object.
At what point does a parameter ID get reset? Program Execution Ends User sign off Free Memory When you Flush the SPA/GPA memory.
What type of ABAP Query list would be appropriate if the user wanted to determine the ten top sales people? Statistics Ranked lists Percentage Basic lists.
Which of the following will trigger the AT LINE_SELECTION event? There are 4 correct answers. Double Click a line on a list Function Code P+ F2 Function Code PICK Menu Option EDIT>Choose Function Code CHOOSE.
What happens to memory when the EXPORT is executed without specifying ID? SAP Memory is overwritten ABAP memory sets up a new default area The ABAP memory is completely overwritten.
Mark the valid usage of READ statement. There are 2 correct answers. DO. Read Line SY-INDEX. ENDDO. Read Line 3 of Current Page Read Line 3 of Next Page Read Current Line of ble IB.
Which of the following dictionary objects gets stored as a runtime object? Tables All of the answers are correct Structures Data Elements Table Types.
What are the three main sub objects of the LDB? There are 3 correct answers. Search Helps DB Program Tables Structure Selection screen.
The cardinality of a foreign key relationship is defined as 1:N. What does this imply? One record of the check table is assigned to many records of the foreign key table Many records of the check table are assigned to one record of the foreign key table One record of the foreign key table is assigned to one record in the check table.
Table ZMYBLE is created in the dictionary. When does the table get created in the underlying database? When the database administrator physically creates the table At the end of the table creation after it is saved When the table is activated At the beginning of the table creation It does not correspond to an object in the underlying database and does not get created.
What is the order of events that fire? 10 START-OF-SELECTION 20 END-OF-SELECTION 30 INITIALIZATION 40 GET 50 AT SELECTION-SCREEN 30 50 10 40 20 50 10 40 10 20 30 10 50 40 20.
Identify the object that cannot have a search help atached to it? Table Table field Type check table data element.
Identify the different type categories in the ABAP dictionary. There are 3 correct answers. Table Types Data models Structures Data definitions Data elements.
Which modulation unit do not use ABAP/4 to pass data? Remove this record Function modules Parameter Ids Transactions Reports called with SUBMIT and Return.
How many statistics or ranked lists allowed per query? 10 Unlimited 9 1.
What is true about the end-of-page Event? There are 2 correct answers. Used to create Footers Occurs when the page break has been triggered by the New-Page statement Automatically creates a footer on the last page of a list Works only if you reserve space in the Report Statement using the line-count statement.
What is the effect of the hide statement? The variable appears on the current line as indicated by sy-linno The system stores the field name and values for each field hidden The fields are invisible and cannot be written to the list.
Which statement prevents duplicate internal table entries? Insert Append Delete duplicates Collect.
When does system reset the formatting values on a write statement? When explicitly changed using the Format statement All answers are correct At any New Event Using the Reset option of the Format statement.
Given the logical dabase F1S, identify the database program that is created. Your user defined Program Name SAPMZF1S SAPDBF1S DBF1SSEL.
What is true about functional areas and User groups in ABAP Query? There are 3 correct answers. The queries of a user group belong only to the person that created the query The user can access only designated queries in a given user group Users belonging to the same authorization group have the same query privilege A Functional area can be assigned to several user groups Several Functional areas can be assigned to one user group.
What is the READ LINE statement used for? There are 2 correct answers. Reading Secondary Lists Reading the Basic List Reading Database tables Reading Internal tables.
When is it better to buffer the table? When a table is linked to check tables When a table is read infrequently When a table is read frequently and the data seldom changes When a table is read frequently and the data is always changing.
Which object would you integrate to determine the length of a field on a screen? Repository Data element Value table Dictionary Domain.
What techniques would you use to fix the 10 leftmost columns on a list when scrolling to the right? Scroll List Left Scroll List PS+<10> Set Left Scroll-Boundary Column 10 Set Right Scroll-Boundary Column 10.
Which report statement option determines the width of a list? Line-Width Line-Count Report Size Line-Size.
Refer to the following code. Why the literal ‘Hello’ would not be displayed on your list? There are 2 correct answers. WRITE: “Hello’ (001) Text elements cannot be used in a WRITE statement The text element is missing from the program Your logon language is different than the original language The text element does not contain the value 'Hello'.
When does the GET <node> late event fire? After the next da record for the same node is read and before all subordinate nodes have been processed After the END GET At the end of all Get events After all subordinate nodes have been processed and before the next data record for the same node is read.
What internal table fields are generated using a SELECT-OPTION? There are 4 correct answers. Low Between Option High Sign Operator.
What is true about extract database? There are 3 correct answers. An extract dataset may consist of records with different structures More than one Extract Dataset is allowed per program The Header Must be defined as one of the field groups The field group HEADER is part of each extract record Definition of a field group immediately reserves storage space for the fields.
Values supplied to variants are stored in which table? T006 TVAR TVARV PARM.
Where do you define a LDB to a program? Data Statement Program Attributes Get Statement Tables Statement.
What is the event that could be used to create a header on a detail list? Top-of-page Top-of-page During Line-Selection New-page At line-selection.
Where do dictionary runtime object get stored? In the dictionary In work processes In structures In table "nameb".
Identify the basic objects of the data dictionary Data Models Tables Data Elements Documentation Domains.
Upon what condition will a transaction be directly called from a GUI status? The Function Type is set to T The Function Type is set to S The Transaction Type is set to T The Function Code is left blank.
What is the result of following code? DO 4 TIMES. IF sy-index = 2. CONTINUE. ENDIF. WRITE sy-index. ENDDO. 1 3 4 2 1 2 3 4.
Structure MY-STRUCTURE is created in the dictionary. When does the structure get created in the underlying database? When the daTAbase administrator physically creates the TAble At the end of the table creation after it is saved. When the table is activated At the beginning of the table creation It does not correspond to an object in the underlying database and does not get created.
At what point does the standard selection screen (as a result of a selection-option) get displayed? After Initialization event Prior to Initialization event Before the Report Statement At Srt-of-Selection event.
A view called znyview is created in the dictionary. What gets physically created on the underlying database? Views are not created with the dictionary A view named v_zmyview Views do not get created on the database A view named zmyview.
What is true about a structure? The STRUCTURES statement is used to define a structure in a program Structures contain data beyond the runtime of a program. The TABLES stement is used to define a structure in a program A physical database ble is created for a structure.
Within the AT USER-COMMAND processing block which system variable is used to check the function code? SY-UCOMM SY-KEY SY-GUI SY-FCODE.
Which type is not a GUI status? List status Dialog box Context menu Online status.
From the list below, which is not a data class in the Dictionary? Master data Organizational data System data Project data.
If table which is an LDB are hierarchically higher in a structure than the table defined in the report, what takes place? The selection screen will not display selection criteria for the higher tables The selection screen will display selection criteria for the higher tables The selection screen will display selection criteria for the higher tables at the time of the Get for the lower level tables The selection screen will display selection criteria for the higher tables only if you issue a Get for the higher level table.
Where do the fixed values of a domain get checked? In Screens only When a SQL Insert is performed When a SQL Update is performed When user presses F1 - Technical info.
Which are valid ABAP Query report types? There are 3 correct answers. Ranked lists Statistics Basic lists Select Lists Summary.
Mark the three system fields that are continuously mainined by the list. There are 3 correct answers. SY-LINSZ SY-TITLE SY-LINNO SY-COLNO SY-PAGNO.
Identify the key assignments for function keys in a GUI stus? There are 3 correct answers. Random Function Keys Suggested Function Keys Recommended Function Keys Freely Assigned Function Keys Reserved Function Keys.
Mark the valid values for a checkbox. There are 2 correct answers. X Space 1 0 Any alpha character.
Which of the following does not physically exist in the underlying database? There are 2 correct answers. Transparent table Internal table Structure View.
Where would the cancel button typically be located? Standard toolbar Menu bar Application toolbar Title bar.
What controls the dialogue behavior of a search help? There are 2 correct answers. Admin data DPOS SPOS LPOS Value Range.
Which linking method will leave current processing and not return? There are 2 correct answers. Call Function Submit Call Transaction Leave to transaction.
Full buffering would be appropriate for what type of table? Small Static tables Internal tables Transaction tables Tables with generic Keys.
What system variables contains the contents of the selected line in interactive reporting? SY-LSIND None of the answers are correct SY-LISEL SY-LINNO.
What DOES NOT determines the behavior of the search help? the interface of the search help dialog behavior user master record parameters the selection method that determines the values to be displayed.
What does the DESCRIBE TABLE stement provide to the program? Access Type Key Definition Key Uniqueness Key length.
Where would you typically see the code "Call Selection-Screen"? Top-of-Page Start-of-Selection At Line-Selection At Selection-Screen.
What is true about a check table? Check table fields can accept only values which exist in the check table Foreign key fields can accept any values regardless of the check table Foreign key fields can accept only values which exist in the check table.
Why is it a good idea to use a backup version of the OK_CODE? For example, lv_okcode= OK_CODE. OK_CODE is a system reserved variable and cannot be accessed directly Because the OK_CODE gets reset at the beginning of each execution of PAI processing To prevent accidental setting of the OK_CODE in a different screen So the OK_CODE is freed up for sub screens.
What would be a reason for choosing to use asynchronous update in your ABAP program? There are 2 correct answers. To improve user response time your updates need to run together as a logical unit Immediate updates to the Dabase are required your program need the updates completed in order to continue processing.
How many 'At Exit-command' Modules are allowed in the PBO? 0 2 Unlimited 1.
Identify the synchronous update technique. There are 2 correct answers. Update table... PERFORM... ON COMMIT and WAIT COMMIT WORK AND WAIT CALL FUNCTION in Update sk.
What type of memory is typically used as default values for screen fields? SAP memory ABAP/4 memory Shared Memory.
Using screen painter, how do you logically relate radio buttons? Ensure the prefix name of the radio buttons is the same Encompass them in a Radio Button Group Define a Group box Make sure each one has the same Screen Group Name.
Which stement would conclude a SAP LUW? There are 2 correct answers. ROLLBACK WORK CALL Transaction MESSAGE S101 COMMIT WORK.
Where should the CANCEL (RED x) button on the standard toolbar take the user? To where the transaction was called To the initial screen of the transaction To the previous screen To the Cancel area.
What message type does not implicitly trigger dabase commits for the table updates specified in your program? I type MESSAGE stement A type MESSAGE stement E type MESSAGE stement W type MESSAGE stement S type MESSAGE stement.
What statement allows you to generate a report from an online transaction? LEAVE TO BASIC LIST LEAVE TO LIST-PROCESSING CALL REPORT report_name GENERATE list.
What is true about V2 updates within the same SAP LUW? An error in one V2 function module cause all other V2 functions to be rolled back Each V2 function module for a given COMMIT WORK always runs in its own (separate) DB LUW V2 errors cause V1 updates to be rolled back They are usually time critical updates.
What methods could be used to specify the next Screen to be displayed? There are 2 correct answers. Set Screen Use the Next Screen Option on the Screen Attributes Loop at Screen Submit Screen.
What is true about flow logic? There are 2 correct answers. The flow logic is conined in Modules Dialog Programs do not require a transaction to execute the module pool Screens are optional in a dialog program Transactions are a vehicle to execute dialog programs Update and enqueue techniques are important.
What is true about subscreen? There are 2 correct answers. Multiple subscreens are possible in a single screen You can also specify the subscreens dynamically at runtime Can set their own titlebar Can set their own GUI stus have their own OK_CODE.
What happens when number range interval buffering is active for internal numbers? There are 2 correct answers. Duplicate numbers will never be encountered in the system Perceived improved performance can be achieved The programmer can choose to ignore buffering on request The numbering sequence is contiguous.
After a user action is performed, what event is triggered in dialog program? Case OK_CODE PAI Module User_command PBO.
What statement will srt a new internal session in the same external session? There are 2 correct answers. Leave to transaction Call Transaction Submit.. .. and Return Submit.
The following statement ‘MESSAGE S001 (AT)’ is issued in a PAI module of a Dynpro. Where does the message appear? On the same screen On the next screen After the AT-EXIT Module In the System Log.
Which statement will ensure processing returns to the calling point after the user presses F3 to exit the list? CALL report AND RETURN SUBMIT report LEAVE TO LIST-PROCESSING SUBMIT ZPGMA and Return SUBMIT ZPGMA with selection-set.. ..
Where would you typically see the code “Call Selection Screen”? At Line-Selection Start-of-Selection Top-of-Page At Selection-Screen.
Program A makes a call to Program B with “Submit Program B and return”. How many SAP LUW’s are involved? 3 2 0 1.
When would you use one of the F4_IF* functions? In the module that perform OKCODE processing In the PAI when Process on Value-Request dialog event is triggered In the PBO when Process on Value-Request dialog event is triggered In the PAI when Process on Help-Request dialog event is triggered.
If you want to Work with the standard number range functionality, you only need the function modules in the function group... SNR3 SNR2 SNR1 SNR4.
What is difference between call screen and set screen? There is no difference Call Screen is used only for external screens. Set screen is only for screens in the same module pool Call screen executes and returns to the point of call. Set Screen does not Set screen executes and returns to the point of call. Call Screen does not.
Indicate the functions that are capable of transporting data to screen fields? There are 2 correct answers. DYNP_VALUES_UPDATE DYNP_VALUES_READ DYNPREAD F4IF_FIELD_VALUE_REQUEST.
If you are building a tabstrip to be handled at the presentation level. What function type should be assigned to the tab title? There are 2 correct answers. P T Blank F E.
What includes are generated in module pool SAPMZABC if only DYNPRO 100 exists, refering to the Flow logic for Dynpro 100? There are 2 correct answers. MZABCTOP USER_COMMAND_0100 MZABCO01 MZABCI01.
What is required in the flow logic in order to process a table control? A loop .. endloop stement for the ble control only in the PAI A loop .. endloop stement for the ble control in both the PBO and the PAI A loop .. endloop stement for the ble control only in the USER_COMMAND module A loop .. endloop stement for the ble control only in the PBO.
What stement in Dialog Programming names screen fields available for input. Field Module Check Case.
What is proper coding practice in the flow logic of a Dynpro when a subscreen is defined on the screen? Call Subscreen in the PAI and PBO The Call Subscreen stement is not required Call Subscreen in the PAI only Call Subscreen in the PBO only.
How would you define a lock object? Use the Data Browser Through a Function Call Create it as an object in the dictionary.
What takes step after each dialogue step? A Commit Work is executed System passes a Database commit to the database system The application gathers da for update processing The SAP LUW is concluded.
Where does the Modification GROUP assignment of fields get defined? Using the SET GROUP stement Do you really care In the Dynpro In the screen painter.
What is true about performing in commit? Parameter passing is allowed Multiple calls to a FORM result in single execution of the FORM Commit Work is allowed in the form RollBack Work is allowed in the FORM.
Refer to the following code, how would you program a generic lock on all rows of a tble that have key values 'AA', '111' for the first 2 fields? CALL FUNCTION Enqueue_ESMYLOCK EXPORTING Field1 = … Field2 = … Field3 = … It is not possible in this case Field1 = Generic, Field2 = Generic, Field3 = Space Field 1 = ’AA’, FIELD2 = ’111’, Field3 = Initial Field 1 = ’AA’, FIELD2 = ’111’, Field3 = Space.
"Call Function Starting New sk" is an example of what type of call? Batch Asynchronous Synchronous Direct.
How many modification groups are allowed per screen field? 4 1 3 Unlimited 2.
What attribute in a table control must be defined in order to activate row selection functionality? TOP_LINE w/selcolumn LINE_SEL_MODE Function code.
What would trigger a rollback? An RFC Function Call that terminates normally A program that issues a MESSAGE type 'A'. A user cancels the transaction A program that issues a Commit Work statement.
What order is recommended when setting and releasing locks in your program? Read data, lock data, update database, release locks Lock data, read data, release locks, update database Lock data, read data, update database, release locks.
Mark the Program Attribute that is used to define a Dialog Program. R D 1 M.
You have issued a Set Title bar in the PBO of your screen. How long will the title remain active? Until the Next screen change Until the next Set Titlebar statement Until the next DB LUW.
What is the order of transport in PBO when a table control is defined in your module pool? Screen fields followed by ble control fields All fields regardless of table control definition are transported at the beginning of PBO Table control fields followed by the remaining screen fields Dictionary Fields followed by Program Fields.
What transaction is used to handle termination updates? SM13 CCMS SM12 SE80.
Mark the valid name for a text field in screen painter. _mytext !mytext ?mytext.
What table is used to store transaction codes? tstc txncodes tstct txn.
A commit work is issued in a transaction that employs asynchronous updating, what takes place?. There are 3 correct answers. SAP LUW is concluded User is notified of updates Update requests are processed Database commit is triggered.
In what case are tabstrips good candidates? There are 2 correct answers. When users need the ability to navigate freely between components When Navigation between components is predetermined in a fixed manner When several components of an application need to be displayed on one screen.
What technique is used to ensure remote functions are still processed even if the partner computer is not active? Asynchronous RFC Synchronous RFC Transactional RFC.
If you trigger a lock object and it is already locked by some other user, what exception would be raised? 03 - Already_Locked 08 - General_Failure 01 - Foreign_Lock 02 - System Failure.
Mark the items that are true with the Asynchronous Update technique in a SAP LUM. There are 3 correct answers. Update sk functions are logged in the SM12 log bles Requests are not passed directly to the DB You can combine update requests from consecutive dialog steps COMMIT concludes the SAP LUW All updates are performed or none at all.
The Scope Parameter for your lock object function module has been set to 2, What does this imply? There are 2 correct answers. You must release the locks programmatically Locks generated in the dialog program are passed on to the update program An update termination error holds the locks The locks are automatically released when the updates complete.
Where would you typically program dynamic screen changes? In a PBO module In a PAI Module PAI screen event in Flow logic PBO screen event in Flow logic.
Three locks have been set in a transaction, what are methods that would cause the release of all of them. There are 3 correct answers. End the transaction Reset Command CALL FUNCTION DEQUEUE_ALL Commit Work Program ends abnormally.
F4 is pressed for a screen field. What is the order of precedence that takes place Resume that all "possible values" options have been defined for the screen field? a) The corresponding check ble will be referenced and displayed b) Process on Value-Request is executed c) A search help is referenced and displayed d) The corresponding domain values will be displayed b, c, a, d a, b, c, d b, d, a, c d, a, c, b.
What table do you automatically get in a dynpro without having to declare it in your module pool? Subscreen Sy-table Screen Screen_IB.
Denunciar Test