<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sap Consultant &#124;  Sap Danışmanlık &#124; Sap Türkiye &#124; Business Objects &#187; abap danışmanı</title>
	<atom:link href="http://www.proits.net/sap-turkiye/abap-danismani/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.proits.net</link>
	<description>Sap Danışmanlık, sap bw,business objects, sap consultant sap türkiye sitesi.</description>
	<lastBuildDate>Fri, 28 Oct 2011 06:15:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Abap sertifika soruları</title>
		<link>http://www.proits.net/2009/10/abap-sertifika-sorulari/</link>
		<comments>http://www.proits.net/2009/10/abap-sertifika-sorulari/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 06:29:24 +0000</pubDate>
		<dc:creator>MuratSener</dc:creator>
				<category><![CDATA[Teknik Kısmı]]></category>
		<category><![CDATA[abap danışmanı]]></category>
		<category><![CDATA[abap danışmanlık]]></category>
		<category><![CDATA[freelance abap danışmanı]]></category>
		<category><![CDATA[sap abap danışmanı]]></category>
		<category><![CDATA[sap abap danışmanları]]></category>
		<category><![CDATA[sap consultant]]></category>

		<guid isPermaLink="false">http://www.proits.net/?p=203</guid>
		<description><![CDATA[Abap danışmanı olmak için ( abap consultant ), sap abap sertifikasyonunda çıkan sorular.




1. If a table does not have MANDT as part of the primary key, it is ____.
A: A structure
B: Invalid
C: Client-independent
D: Not mandatory
2. In regard to CALL, which of the following is NOT a valid statement?
A: CALL FUNCTION
B: CALL SCREEN
C: CALL TRANSACTION
D: CALL [...]]]></description>
			<content:encoded><![CDATA[<p>Abap danışmanı olmak için ( abap consultant ), sap abap sertifikasyonunda çıkan sorular.</p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="642" valign="top">
<p>1. If a table does not have MANDT as part of the primary key, it is ____.</p>
<p>A: A structure<br />
B: Invalid<br />
C: Client-independent<br />
D: Not mandatory</p>
<p>2. In regard to CALL, which of the following is NOT a valid statement?</p>
<p>A: CALL FUNCTION<br />
B: CALL SCREEN<br />
C: CALL TRANSACTION<br />
D: CALL PROGRAM</p>
<p>3. Name the type of ABAP Dictionary table that has these characteristics:</p>
<p>Same number of fields as the database table<br />
Same name as database table<br />
Maps 1:1 to database table</p>
<p>A: Pooled<br />
B: Cluster<br />
C: Transparent<br />
D: View</p>
<p>4. An event starts with an event keyword and ends with:</p>
<p>A: Program execution.<br />
B: END-OF-EVENT.<br />
C: Another event keyword.<br />
D: END-EVENT.</p>
<p>5. What is the system field for the current date?</p>
<p>A: SY-DATUM<br />
B: SY-DATE<br />
C: SY-DATID<br />
D: SY-SDATE</p>
<p>6. The following code indicates:</p>
<p>SELECT fld1 fld2 FROM tab1 APPENDING TABLE itab<br />
WHERE fld1 IN sfld1.</p>
<p>A: Add rows to the existing rows of itab.<br />
B: Add rows to itab after first deleting any existing rows of itab.<br />
C: Select rows from tab1 for matching itab entries.<br />
D: Nothing, this is a syntax error.</p>
<p>7. You may change the following data object as shown below so that it equals   3.14.</p>
<p>CONSTANTS: PI type P decimals 2 value '3.1'.<br />
PI = '3.14'.</p>
<p>A: True<br />
B: False</p>
<p>8. The SAP service that ensures data integrity by handling locking is called:</p>
<p>A: Update<br />
B: Dialog<br />
C: Enqueue/Dequeue<br />
D: Spool</p>
<p>9. Which of these sentences most accurately describes the GET VBAK LATE.   event?</p>
<p>A: This event is processed before the second time the GET VBAK event is   processed.<br />
B: This event is processed after all occurrences of the GET VBAK event are   completed.<br />
C: This event will only be processed after the user has selected a basic list   row.<br />
D: This event is only processed if no records are selected from table VBAK.</p>
<p>10. Which of the following is not a true statement in regard to a hashed   internal table type?</p>
<p>A: Its key must always be UNIQUE.<br />
B: May only be accessed by its key.<br />
C: Response time for accessing a row depends on the number of entries in the   table.<br />
D: Declared using internal table type HASHED TABLE.</p>
<p>11. TO include database-specific SQL statements within an ABAP program, code   them between:</p>
<p>A: NATIVE SQL_ENDNATIVE.<br />
B: DB SQL_ENDDB.<br />
C: SELECT_ENDSELECT.<br />
D: EXEC SQL_ENDEXEC.</p>
<p>12. To measure how long a block of code runs, use the ABAP statement:</p>
<p>A: GET TIME .<br />
B: SET TIME FIELD .<br />
C: GET RUN TIME FIELD .<br />
D: SET CURSOR FIELD .</p>
<p>13. When a secondary list is being processed, the data of the basic list is   available by default.</p>
<p>A: True<br />
B: False</p>
<p>14. Given:</p>
<p>DATA: BEGIN OF itab OCCURS 10,<br />
qty type I,<br />
END OF itab.</p>
<p>DO 25 TIMES. itab-qty = sy-index. APPEND itab. ENDDO.</p>
<p>LOOP AT itab WHERE qty &gt; 10.<br />
WRITE: /1 itab-qty.<br />
ENDLOOP.</p>
<p>This will result in:</p>
<p>A: Output of only those itab rows with a qty field less than 10<br />
B: Output of the first 10 itab rows with a qty field greater than 10<br />
C: A syntax error<br />
D: None of the above</p>
<p>15. After a DESCRIBE TABLE statement SY-TFILL will contain</p>
<p>A: The number of rows in the internal table.<br />
B: The current OCCURS value.<br />
C: Zero, if the table contains one or more rows.<br />
D: The length of the internal table row structure.</p>
<p>16. You may declare your own internal table type using the TYPES keyword.</p>
<p>A: True<br />
B: False</p>
<p>17. After adding rows to an internal table with COLLECT, you should avoid   adding more rows with APPEND.</p>
<p>A: True<br />
B: False</p>
<p>18. Which of the following is not a component of control break processing   when looping at an internal table?</p>
<p>A: AT START OF<br />
B: AT FIRST<br />
C: AT LAST<br />
D: AT NEW</p>
<p>19. A dictionary table is made available for use within an ABAP program via   the TABLES statement.</p>
<p>A: True<br />
B: False</p>
<p>20. Which of the following would be best for hiding further selection criteria   until a function is chosen?</p>
<p>A: AT NEW SELECTION-SCREEN<br />
B: SELECTION-SCREEN AT LINE-SELECTION<br />
C: SUBMIT SELECTION-SCREEN<br />
D: CALL SELECTION-SCREEN</p>
<p>21. What must you code in the flow logic to prevent a module from being   called unless a field contains a non-initial value (as determined by its data   type)?</p>
<p>A: ON INPUT<br />
B: CHAIN<br />
C: FIELD<br />
D: ON REQUEST</p>
<p>22. The AT USER-COMMAND event is triggered by functions defined in the ____.</p>
<p>A: screen painter<br />
B: ABAP report<br />
C: menu painter status<br />
D: ABAP Dictionary</p>
<p>23. In regard to a function group, which of the following is NOT a true   statement?</p>
<p>A: Combines similar function modules.<br />
B: Shares global data with all its function modules.<br />
C: Exists within the ABAP workbench as an include program.<br />
D: Shares subroutines with all its function modules.</p>
<p>24. In regard to SET PF-STATUS, you can deactivate unwanted function codes by   using ____.</p>
<p>A: EXCLUDING<br />
B: IMMEDIATELY<br />
C: WITHOUT<br />
D: HIDE</p>
<p>25. In regard to data transported in PAI when the FIELD statement is used,   which of the following is NOT a true statement?</p>
<p>A: Fields in PBO are transported directly from PAI.<br />
B: Fields with identical names are transported to the ABAP side.<br />
C: Fields not defined in FIELD statements are transported first.<br />
D: Fields that are defined in FIELD statements are transported when their   corresponding module is called.</p>
<p>26. The order in which an event appears in the ABAP code determines when the   event is processed.</p>
<p>A: True<br />
B: False</p>
<p>27. A field declared as type T has the following internal representation:</p>
<p>A: SSMMHH<br />
B: HHMMSS<br />
C: MMHHSS<br />
D: HHSSMM</p>
<p>28. Which of the following is NOT a component of the default standard ABAP   report header?</p>
<p>A: Date and Time<br />
B: List title<br />
C: Page number<br />
D: Underline</p>
<p>29. Assuming a pushbutton with function code 'FUNC' is available in the   toolbar of a list report, what event is processed when the button is clicked?</p>
<p>A: AT USER-COMMAND.<br />
B: AT PFn.<br />
C: AT SELECTION-SCREEN.<br />
D: END-OF-SELECTION.</p>
<p>30. In regard to field selection, what option of the SELECT statement is   required?</p>
<p>A: FOR ALL ENTRIES<br />
B: WHERE<br />
C: INTO<br />
D: MOVE-CORRESPONDING</p>
<p>31. The following program outputs what?</p>
<p>report zjgtest1</p>
<p>write: /1 'Ready_'.</p>
<p>PARAMETER: test.</p>
<p>INITIALIZATION.<br />
write: /1 'Set_'.</p>
<p>START-OF-SELECTION.<br />
write: /1 'GO!!'.</p>
<p>A: Set_ GO!! (each on its own line)<br />
B: Set_ Ready_ GO!! (all on their own lines)<br />
C: Ready_ GO!! (each on its own line)<br />
D: Ready_ Set_ GO!! (all on their own lines)</p>
<p>32. To declare a selection criterion that does not appear on the selection   screen, use:</p>
<p>A: NO-DISPLAY<br />
B: INVISIBLE<br />
C: MODIF ID<br />
D: OBLIGATORY</p>
<p>33. An internal table that is nested within another internal table should not   contain a header line.</p>
<p>A: True<br />
B: False</p>
<p>34. What is output by the following code?</p>
<p>DATA: BEGIN OF itab OCCURS 0, letter type c, END OF itab.</p>
<p>itab-letter = 'A'. APPEND itab. itab-letter = 'B'. APPEND itab.<br />
itab-letter = 'C'. APPEND itab. itab-letter = 'D'. APPEND itab.</p>
<p>LOOP AT itab.<br />
SY-TABIX = 2.<br />
WRITE itab-letter.<br />
EXIT.<br />
ENDLOOP.</p>
<p>A: A<br />
B: A B C D<br />
C: B<br />
D: B C D</p>
<p>35. To select all database entries for a certain WHERE clause into an   internal table in one step, use</p>
<p>A: SELECT_INTO TABLE itab_<br />
B: SELECT_INTO itab_<br />
C: SELECT_APPENDING itab<br />
D: SELECT_itab_</p>
<p>36. After a successful SELECT statement, what does SY-SUBRC equal?</p>
<p>A: 0<br />
B: 4<br />
C: 8<br />
D: Null</p>
<p>37. This selection screen syntax forces the user to input a value:</p>
<p>A: REQUIRED-ENTRY<br />
B: OBLIGATORY<br />
C: DEFAULT<br />
D: SELECTION-SCREEN EXCLUDE</p>
<p>38. If the following code results in a syntax error, the remedy is:</p>
<p>DATA: itab TYPE SORTED TABLE OF rec_type WITH UNIQUE KEY field1<br />
WITH HEADER LINE.</p>
<p>itab-field1 = 'Company'. itab-field2 = '1234'. INSERT TABLE itab.<br />
itab-field1 = 'Bank'. itab-field2 = 'ABC'. INSERT TABLE itab.</p>
<p>SORT itab.</p>
<p>LOOP AT itab.<br />
write: /1 itab-field1, itab-field2.<br />
ENDLOOP.</p>
<p>A: There is no syntax error here<br />
B: Remove the SORT statement<br />
C: Change INSERT to APPEND<br />
D: Add a WHERE clause to the loop</p>
<p>39. If this code results in an error, the remedy is:</p>
<p>SELECT fld1 fld2 FROM tab1 WHERE fld3 = pfld3.<br />
WRITE: /1 tab1-fld1, tab1-fld2.<br />
ENDSELECT.</p>
<p>A: Add a SY-SUBRC check.<br />
B: Change the WHERE clause to use fld1 or fld2.<br />
C: Remove the /1 from the WRITE statement.<br />
D: Add INTO (tab1-fld1, tab1-fld2).</p>
<p>40. When modifying an internal table within LOOP AT itab. _ ENDLOOP. you must   include an index number.</p>
<p>A: True<br />
B: False</p>
<p>41. To allow the user to enter values on the screen for a list field, use:</p>
<p>A: OPEN LINE.<br />
B: SET CURSOR FIELD.<br />
C: WRITE fld AS INPUT FIELD.<br />
D: FORMAT INPUT ON.</p>
<p>42. Before a function module may be tested, it must first be:</p>
<p>A: Linked<br />
B: Authorized<br />
C: Released<br />
D: Active</p>
<p>43. To include a field on your screen that is not in the ABAP Dictionary,   which include program should contain the data declaration for the field?</p>
<p>A: PBO module include program<br />
B: TOP include program<br />
C: PAI module include program<br />
D: Subroutine include program</p>
<p>44. If a table contains many duplicate values for a field, minimize the   number of records returned by using this SELECT statement addition.</p>
<p>A: MIN<br />
B: ORDER BY<br />
C: DISTINCT<br />
D: DELETE</p>
<p>45. The system internal table used for dynamic screen modification is named:</p>
<p>A: ITAB<br />
B: SCREEN<br />
C: MODTAB<br />
D: SMOD</p>
<p>46. Within the source code of a function module, errors are handled via the   keyword:</p>
<p>A: EXCEPTION<br />
B: RAISE<br />
C: STOP<br />
D: ABEND</p>
<p>47. Which system field contains the contents of a selected line?</p>
<p>A: SY-CUCOL<br />
B: SY-LILLI<br />
C: SY-CUROW<br />
D: SY-LISEL</p>
<p>48. The following statement writes what type of data object?</p>
<p>WRITE: /1 'Total Amount:'.</p>
<p>A: Text literal<br />
B: Text variable<br />
C: In-code comment<br />
D: Text integer</p>
<p>49. For the code below, second_field is of what data type?</p>
<p>DATA: first_field type P, second_field like first_field.</p>
<p>A: P<br />
B: C<br />
C: N<br />
D: D</p>
<p>50. Which of the following describes the internal representation of a type D   data object?</p>
<p>A: DDMMYYYY<br />
B: YYYYDDMM<br />
C: MMDDYYYY<br />
D: YYYYMMDD</p>
<p>51. A BDC program is used for all of the following except:</p>
<p>A: Downloading data to a local file<br />
B: Data interfaces between SAP and external systems<br />
C: Initial data transfer<br />
D: Entering a large amount of data</p>
<p>52. In regard to PERFORM, which of the following is NOT a true statement?</p>
<p>A: May be used within a subroutine.<br />
B: Requires actual parameters.<br />
C: Recursive calls are allowed in ABAP.<br />
D: Can call a subroutine in another program.</p>
<p>53. What is the transaction code for the ABAP Editor?</p>
<p>A: SE11<br />
B: SE38<br />
C: SE36<br />
D: SE16</p>
<p>54. In regard to HIDE, which of the following is NOT a true statement?</p>
<p>A: Saves the contents of variables in relation to a list line's row number.<br />
B: The hidden variables must be output on a list line.<br />
C: The HIDE area is retrieved when using the READ LINE statement.<br />
D: The HIDE area is retrieved when an interactive event is triggered.</p>
<p>55. Database locks are sufficient in a multi-user environment.</p>
<p>A: True<br />
B: False</p>
<p>56. The complete technical definition of a table field is determined by the   field's:</p>
<p>A: Domain<br />
B: Field name<br />
C: Data type<br />
D: Data element</p>
<p>57. In regard to LEAVE, which of the following is NOT a true statement?</p>
<p>A: May be used to return immediately to a calling program.<br />
B: May be used to stop the current loop pass and get the next.<br />
C: May be used to start a new transaction.<br />
D: May be used to go to the next screen.</p>
<p>58. The following code indicates:</p>
<p>SELECT fld6 fld3 fld2 fld1 FROM tab1 INTO CORRESPONDING FIELDS OF TABLE itab<br />
WHERE fld3 = pfld3.</p>
<p>A: The order of the fields in itab does not matter.<br />
B: Fill the header line of itab, but not the body.<br />
C: Table itab can only contain fields also in table tab1.<br />
D: None of the above.</p>
<p>59. The ABAP statement below indicates that the program should continue with   the next line of code if the internal table itab:</p>
<p>CHECK NOT itab[] IS INITIAL.</p>
<p>A: Contains no rows<br />
B: Contains at least one row<br />
C: Has a header line<br />
D: Has an empty header line</p>
<p>60. What will be output by the following code?</p>
<p>DATA: BEGIN OF itab OCCURS 0, fval type i, END OF itab.</p>
<p>itab-fval = 1. APPEND itab.<br />
itab-fval = 2. APPEND itab.</p>
<p>FREE itab.<br />
WRITE: /1 itab-fval.</p>
<p>A: 2<br />
B: 0<br />
C: blank<br />
D: 1</p>
<p>61. To allow the user to enter a range of values on a selection screen, use   the ABAP keyword:</p>
<p>A: DATA.<br />
B: RANGES.<br />
C: PARAMETERS.<br />
D: SELECT-OPTIONS.</p>
<p>62. If an internal table is declared without a header line, what else must   you declare to work with the table's rows?</p>
<p>A: Another internal table with a header line.<br />
B: A work area with the same structure as the internal table.<br />
C: An internal table type using the TYPES statement.<br />
D: A PARAMETER.</p>
<p>63. Assuming an internal table contains 2000 entries, how many entries will   it have after the following line of code is executed?</p>
<p>DELETE itab FROM 1500 TO 1700.</p>
<p>A: This is a syntax error.<br />
B: 1801<br />
C: 1800<br />
D: 1799</p>
<p>64. To remove lines from a database table, use ____.</p>
<p>A: UPDATE<br />
B: MODIFY<br />
C: ERASE<br />
D: DELETE</p>
<p>65. All of the following may be performed using SET CURSOR except:</p>
<p>A: Move the cursor to a specific field on a list.<br />
B: Move the cursor to a specific list line.<br />
C: Move the cursor to a specific pushbutton, activating that function.<br />
D: Move the cursor to a specific row and column on a list.</p>
<p>66. When is it optional to pass an actual parameter to a required formal   parameter of a function module?</p>
<p>A: The actual parameter is type C.<br />
B: The formal parameter contains a default value.<br />
C: The formal parameter's \"Reference\" attribute is turned on.<br />
D: It is never optional.</p>
<p>67. Coding two INITIALIZATION events will cause a syntax error.</p>
<p>A: True<br />
B: False</p>
<p>68. Adding a COMMIT WORK statement between SELECT_ENDSELECT is a good method   for improving performance.</p>
<p>A: True<br />
B: False</p>
<p>69. To save information on a list line for use after the line is selected,   use this keyword.</p>
<p>A: APPEND<br />
B: EXPORT<br />
C: WRITE<br />
D: HIDE</p>
<p>70. To bypass automatic field input checks, include this in PAI.</p>
<p>A: AT EXIT-COMMAND<br />
B: ON INPUT<br />
C: ON REQUEST<br />
D: LEAVE TO SCREEN 0.</p>
<p>71. Within a function module's source code, if the MESSAGE_RAISING statement   is executed, all of the following system fields are filled automatically   except:</p>
<p>A: SY-MSGTY<br />
B: SY-MSGNO<br />
C: SY-MSGV1<br />
D: SY-MSGWA</p>
<p>72. The following code indicates:</p>
<p>REPORT ZLISTTST.<br />
START-OF-SELECTION.<br />
WRITE: text-001.<br />
FORMAT HOTSPOT ON.<br />
WRITE: text-002.<br />
FORMAT HOTSPOT OFF.<br />
AT LINE-SELECTION.<br />
WRITE / text-003.</p>
<p>A: Text-002 may not be selected.<br />
B: The value of text-002 is stored in a special memory area.<br />
C: Text-002 may be clicked once to trigger the output of text-003.<br />
D: None of the above.</p>
<p>73. The ____ type of ABAP Dictionary view consists of one or more transparent   tables and may be accessed by an ABAP program using Open SQL.</p>
<p>A: Database view<br />
B: Projection view<br />
C: Help view<br />
D: Entity view</p>
<p>74. A concrete field is associated with a field-symbol via ABAP keyword</p>
<p>A: MOVE<br />
B: WRITE<br />
C: ASSIGN<br />
D: VALUE</p>
<p>75. The output for the following code will be:</p>
<p>report zabaprg.<br />
DATA: char_field type C.</p>
<p>char_field = 'ABAP data'.</p>
<p>WRITE char_field.</p>
<p>A: ABAP data<br />
B: A<br />
C: Nothing, there is a syntax error<br />
D: None of the above</p>
<p>76. Page footers are coded in the event:</p>
<p>A: TOP-OF-PAGE.<br />
B: END-OF-SELECTION.<br />
C: NEW-PAGE.<br />
D: END-OF-PAGE.</p>
<p>77. The event AT SELECTION-SCREEN OUTPUT. occurs before the selection screen   is displayed and is the best event for assigning default values to selection   criteria.</p>
<p>A: True<br />
B: False</p>
<p>78. The TABLES statement declares a data object.</p>
<p>A: True<br />
B: False</p>
<p>79. Assuming tab1-fld7 is not a key field, how can you prevent reading all   the table rows?</p>
<p>SELECT fld1 fld2 fld3 FROM tab1 INTO (fld4, fld5, fld6)<br />
WHERE fld7 = pfld7.<br />
WRITE: /1 fld4, fld5, fld6.<br />
ENDSELECT.</p>
<p>A: Take fld7 out of the WHERE clause.<br />
B: Create an index in the ABAP Dictionary for tab1-fld7.<br />
C: Use INTO TABLE instead of just INTO.<br />
D: Take the WRITE statement out of the SELECT_ENDSELECT.</p>
<p>80. Which of the following is NOT a required attribute when creating an ABAP   program?</p>
<p>A: Application<br />
B: Title<br />
C: Status<br />
D: Type</p>
<p>81. When creating a transparent table in the ABAP Dictionary, which step   automatically creates the table in the underlying database?</p>
<p>A: Adding technical settings to the table<br />
B: Checking the table syntax<br />
C: Saving the table<br />
D: Activating the table</p>
<p>82. Within the ABAP program attributes, Type = 1 represents:</p>
<p>A: INCLUDE program<br />
B: Online program<br />
C: Module pool<br />
D: Function group<br />
E: Subroutine pool</p>
<p>83. If this code results in an error, the remedy is:</p>
<p>SELECT fld1 SUM( fld1 ) FROM tab1 INTO_</p>
<p>A: Remove the spaces from SUM( fld1 ).<br />
B: Move SUM( fld1 ) before fld1.<br />
C: Add GROUP BY f1.<br />
D: Change to SUM( DISTINCT f1 ).</p>
<p>84. Which keyword adds rows to an internal table while accumulating numeric   values?</p>
<p>A: INSERT<br />
B: APPEND<br />
C: COLLECT<br />
D: GROUP</p>
<p>85. Assuming itab has a header line, what will be output by the following   code?</p>
<p>READ TABLE itab INDEX 3 TRANSPORTING field1.<br />
WRITE: /1 itab-field1, itab-field2.</p>
<p>A: The contents of the third row's itab-field1.<br />
B: The contents of the third row's itab-field1 and itab-field2.<br />
C: The contents of the third row's itab-field2.<br />
D: Nothing.</p>
<p>86. The following code indicates:</p>
<p>SELECTION-SCREEN BEGIN OF BLOCK B1.<br />
PARAMETERS: myparam(10) type C,<br />
Myparam2(10) type N,<br />
SELECTION-SCREEN END OF BLOCK.</p>
<p>A: Draw a box around myparam and myparam2 on the selection screen.<br />
B: Allow myparam and myparam2 to be ready for input during an error dialog.<br />
C: Do not display myparam and myparam2 on the selection screen.<br />
D: Display myparam and myparam2 only if both fields have default values.</p>
<p>87. Which statement will sort the data of an internal table with fields   FRUIT, QTY, and PRICE so that it appears as follows?</p>
<p>FRUIT QTY PRICE</p>
<p>Apples 12 22.50<br />
Apples 9 18.25<br />
Oranges 15 17.35<br />
Bananas 20 10.20<br />
Bananas 15 6.89<br />
Bananas 5 2.75</p>
<p>A: SORT itab DESCENDING BY QTY PRICE.<br />
B: SORT itab BY PRICE FRUIT.<br />
C: SORT itab.<br />
D: SORT itab BY PRICE DESCENDING.</p>
<p>88. Which keyword adds a line anywhere within an internal table?</p>
<p>A: APPEND<br />
B: MODIFY<br />
C: ADD<br />
D: INSERT</p>
<p>89. To read a single line of an internal table, use the following:</p>
<p>A: LOOP AT itab. _ ENDLOOP.<br />
B: READ itab.<br />
C: SELECT SINGLE * FROM itab.<br />
D: READ TABLE itab.</p>
<p>90. Which Open SQL statement should not be used with cluster databases?</p>
<p>A: UPDATE<br />
B: MODIFY<br />
C: DELETE<br />
D: INSERT</p>
<p>91. To include a field on your screen that is not in the ABAP Dictionary,   which include program should contain the data declaration for the field?</p>
<p>A: PBO module include program<br />
B: TOP include program<br />
C: PAI module include program<br />
D: Subroutine include program</p>
<p>92. This flow logic statement is used to make multiple fields open for input   after an error or warning message.</p>
<p>A: GROUP<br />
B: FIELD-GROUP<br />
C: CHAIN<br />
D: LOOP AT SCREEN</p>
<p>93. Given:</p>
<p>PERFORM subroutine USING var.</p>
<p>The var field is known as what type of parameter?</p>
<p>A: Formal<br />
B: Actual<br />
C: Static<br />
D: Value</td>
</tr>
<tr>
<td width="642"></td>
</tr>
<tr>
<td width="642" valign="top"></td>
</tr>
<tr>
<td width="642" valign="top"></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.proits.net/2009/10/abap-sertifika-sorulari/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

