
What is needed to ensure a check field is verified against the referenced key field of the check table?Ī) same data element is required for check field and referenced fieldī) same domain is required for check field and referenced fieldĬ) same data type only is required for check field and referenced fieldĭ) all key fields MUST have domain equality between check table andn foreign key tableġ01. What are the 3 main sub objects of a LDB? More than one answer is correct.ġ00.

Which is not a valid option of the Write Statement?ĩ9. What is not a valid functional area type?ĩ8.
#Refresh and clear itab abap code#
Select the line that would execute in the following code after the EXIT statementĩ0 write:/ 'No more processing for this Carrier'.ĩ7. For called program components that are of type transaction or report, what is true about the roll area (assuming processing will resume in the calling program).ī) They run in the roll area of the callerĩ6. What is the code required in order to scroll the 3rd detail list to page 5 ?ĩ5. What takes place?Ī) Program B becomes active in the same internal session of Program Aī) Program A becomes active in the same internal session of Program BĬ) Program B runs in a new internal sessionĩ4. Program A issues the following statement SUBMIT PROGRAM B. Which of the following are valid logical database types? More than one answer is correct.ĩ3. What does the following code achieve?Īt Selection-Screen on value-request for sales.Ī) When the user presses F4, 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 F1, Screen 100 is displayed in addition to the normal help screenĩ2. Which type is not a valid GUI Status type?ĩ1. When does the system reset the formatting on a Write statement?Ī) When explicitly changed using the Format statementĬ) Using the Reset option of the Format statementĩ0. What is the output of the above code after execution?Ĩ9. READ TABLE ICODE WITH KEY FIELD1 = 'Sam'. Which dictionary structure contains system fields?Īn internal table ICODE contains the following entries: Dialog programs have which naming convention?ĩ. Which one of the following statements creates a GUI-status in a dialog program?a) set pf-status '0100?.Ĩ. A GUI-Status is created in which transaction?ħ. What is an object which CANNOT be transported?Ħ. Which one of the following commands is used in drill-down reporting?ĥ. What is the result after executing the above code?Ĥ. Which one of the following is true about a function module?Ī) Function modules are locally accessible objects.ī) Function modules have inbound and outbound parameters.Ĭ) Function modules have no built-in exception handling.ĭ) Function modules CANNOT be created by a programmer.Į) Function modules use a shared memory area. What is the fastest way to move one internal table to another internal table (assuming two tables of similar structure)?Ģ. Posted: Fri 2:31 pm Post subject: ABAP certification questionsġ. Russian ABAP Developer's Club Forum Index -> E-Courses | Электронные курсы Home - FAQ - Search - Memberlist - Usergroups - Profile - Log in to check your private messages - Register - Log in - English If so, the memory is released.SAP R/3 форум ABAP консультантов View topic - ABAP certification questions The IF statement uses the expression itab IS INITIAL to find out whether itab is empty. System has to allocate new memory space to the lines.ĭATA itab2 LIKE TABLE OF line WITH HEADER LINE.Īn internal table itab is filled and then initialized with REFRESH.


Required for its header (currently 256 bytes). The initial memory requirement, without first using the REFRESH or Initialize an internal table and to release its entire memory space, including Initial memory requirement fort he table remains reserved. That the table itself has been initialized, you can use theĪpplies to the body of the table. Table itself, not the header line, during initialization using CLEAR, you must Using internal tables with header lines, remember that the header line and theīody of the table have the same name. Space required for the table is released, except for the initial memory = refresh itab = CLEAR itabyou can test by the following sample codeĭata objects, you can initialize internal tables with the

= refresh itab -> only clear body of table CLEAR itab( Notice:no bracket) -> clear body and headerĢ.when Internal Tables without header lineĬLEAR itab.
