PDA

Ver la Versión Completa : Ahi van unas cuantas preguntas del examen de certificación de abap


tracer
29/01/07, 16:57:38
Rebuscando por el sdn de sap he encontrado algunas preguntillas sacadas de los exámenes de certificación abap. Algunas son muy sencillas y otras un poco más rebuscadas pero yo creo que todas son más o menos asequibles.

Están en inglés, idioma que por otra parte como ya comente en varios post considero el más adecuado para realizar una certificación abap, no hay nada que duela más a la vista que ver una "LLamada a transacción" en lugar de CALL TRANSACTION... :D

http://www.mundosap.com/foro/images/certificacion_abap.jpg

Haber quien se aventure a dar las respuestas :D :D :D , hemos pensado nombrar al ganador miembro honorario de esta ya numerosa comunidad osea que no os cortéis con las respuestas aunque no hace falta dar la solución de todas, solo las que os parezcan.

En fin espero que os sea de utilidad y os guie un poco en el futuro por si alguno tiene pensado presentarse a alguna certificación de abap.


ABAP CERTIFICATION QUESTIONS


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 PROGRAM

3. Name the type of ABAP Dictionary table that has these characteristics:

Same number of fields as the database table
Same name as database table
Maps 1:1 to database table

A: Pooled
B: Cluster
C: Transparent
D: View

4. An event starts with an event keyword and ends with:
A: Program execution.
B: END-OF-EVENT.
C: Another event keyword.
D: END-EVENT.

5. What is the system field for the current date?
A: SY-DATUM
B: SY-DATE
C: SY-DATID
D: SY-SDATE

6. The following code indicates:

SELECT fld1 fld2 FROM tab1 APPENDING TABLE itab
WHERE fld1 IN sfld1.

A: Add rows to the existing rows of itab.
B: Add rows to itab after first deleting any existing rows of itab.
C: Select rows from tab1 for matching itab entries.
D: Nothing, this is a syntax error.

7. You may change the following data object as shown below so that it equals 3.14.
CONSTANTS: PI type P decimals 2 value '3.1'.

PI = '3.14'.

A: True
B: False

8. The SAP service that ensures data integrity by handling locking is called:
A: Update
B: Dialog
C: Enqueue/Dequeue
D: Spool

9. Which of these sentences most accurately describes the GET VBAK LATE. event?
A: This event is processed before the second time the GET VBAK event is processed.
B: This event is processed after all occurrences of the GET VBAK event are completed.
C: This event will only be processed after the user has selected a basic list row.
D: This event is only processed if no records are selected from table VBAK.

10. Which of the following is not a true statement in regard to a hashed internal table type?
A: Its key must always be UNIQUE.
B: May only be accessed by its key.
C: Response time for accessing a row depends on the number of entries in the table.
D: Declared using internal table type HASHED TABLE.

11. TO include database-specific SQL statements within an ABAP program, code them between:
A: NATIVE SQL_ENDNATIVE.
B: DB SQL_ENDDB.
C: SELECT_ENDSELECT.
D: EXEC SQL_ENDEXEC.

12. To measure how long a block of code runs, use the ABAP statement:
A: GET TIME .
B: SET TIME FIELD .
C: GET RUN TIME FIELD .
D: SET CURSOR FIELD .

13. When a secondary list is being processed, the data of the basic list is available by default.
A: True
B: False

14. Given:

DATA: BEGIN OF itab OCCURS 10,
qty type I,
END OF itab.
DO 25 TIMES. itab-qty = sy-index. APPEND itab. ENDDO.
LOOP AT itab WHERE qty > 10.
WRITE: /1 itab-qty.
ENDLOOP.

This will result in:
A: Output of only those itab rows with a qty field less than 10
B: Output of the first 10 itab rows with a qty field greater than 10
C: A syntax error
D: None of the above

15. After a DESCRIBE TABLE statement SY-TFILL will contain
A: The number of rows in the internal table.
B: The current OCCURS value.
C: Zero, if the table contains one or more rows.
D: The length of the internal table row structure.

16. You may declare your own internal table type using the TYPES keyword.
A: True
B: False

17. After adding rows to an internal table with COLLECT, you should avoid adding more rows with APPEND.
A: True
B: False

18. Which of the following is not a component of control break processing when looping at an internal table?
A: AT START OF
B: AT FIRST
C: AT LAST
D: AT NEW

19. A dictionary table is made available for use within an ABAP program via the TABLES statement.
A: True
B: False

20. Which of the following would be best for hiding further selection criteria until a function is chosen?
A: AT NEW SELECTION-SCREEN
B: SELECTION-SCREEN AT LINE-SELECTION
C: SUBMIT SELECTION-SCREEN
D: CALL SELECTION-SCREEN

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)?
A: ON INPUT
B: CHAIN
C: FIELD
D: ON REQUEST

22. The AT USER-COMMAND event is triggered by functions defined in the ____.
A: screen painter
B: ABAP report
C: menu painter status
D: ABAP Dictionary

23. In regard to a function group, which of the following is NOT a true statement?
A: Combines similar function modules.
B: Shares global data with all its function modules.
C: Exists within the ABAP workbench as an include program.
D: Shares subroutines with all its function modules.

24. In regard to SET PF-STATUS, you can deactivate unwanted function codes by using ____.
A: EXCLUDING
B: IMMEDIATELY
C: WITHOUT
D: HIDE

25. In regard to data transported in PAI when the FIELD statement is used, which of the following is NOT a true statement?
A: Fields in PBO are transported directly from PAI.
B: Fields with identical names are transported to the ABAP side.
C: Fields not defined in FIELD statements are transported first.
D: Fields that are defined in FIELD statements are transported when their corresponding module is called.

26. The order in which an event appears in the ABAP code determines when the event is processed.
A: True
B: False

27. A field declared as type T has the following internal representation:
A: SSMMHH
B: HHMMSS
C: MMHHSS
D: HHSSMM

28. Which of the following is NOT a component of the default standard ABAP report header?
A: Date and Time
B: List title
C: Page number
D: Underline

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?
A: AT USER-COMMAND.
B: AT PFn.
C: AT SELECTION-SCREEN.
D: END-OF-SELECTION.

30. In regard to field selection, what option of the SELECT statement is required?
A: FOR ALL ENTRIES
B: WHERE
C: INTO
D: MOVE-CORRESPONDING

31. The following program outputs what?

report zjgtest1
write: /1 'Ready_'.
PARAMETER: test.
INITIALIZATION.
write: /1 'Set_'.
START-OF-SELECTION.
write: /1 'GO!!'.

A: Set_ GO!! (each on its own line)
B: Set_ Ready_ GO!! (all on their own lines)
C: Ready_ GO!! (each on its own line)
D: Ready_ Set_ GO!! (all on their own lines)

32. To declare a selection criterion that does not appear on the selection screen, use:
A: NO-DISPLAY
B: INVISIBLE
C: MODIF ID
D: OBLIGATORY

33. An internal table that is nested within another internal table should not contain a header line.
A: True
B: False

34. What is output by the following code?

DATA: BEGIN OF itab OCCURS 0, letter type c, END OF itab.
itab-letter = 'A'. APPEND itab. itab-letter = 'B'. APPEND itab.
itab-letter = 'C'. APPEND itab. itab-letter = 'D'. APPEND itab.
LOOP AT itab.
SY-TABIX = 2.
WRITE itab-letter.
EXIT.
ENDLOOP.

A: A
B: A B C D
C: B
D: B C D

35. To select all database entries for a certain WHERE clause into an internal table in one step, use
A: SELECT_INTO TABLE itab_
B: SELECT_INTO itab_
C: SELECT_APPENDING itab
D: SELECT_itab_

36. After a successful SELECT statement, what does SY-SUBRC equal?
A: 0
B: 4
C: 8
D: Null

37. This selection screen syntax forces the user to input a value:
A: REQUIRED-ENTRY
B: OBLIGATORY
C: DEFAULT
D: SELECTION-SCREEN EXCLUDE

38. If the following code results in a syntax error, the remedy is:

DATA: itab TYPE SORTED TABLE OF rec_type WITH UNIQUE KEY field1
WITH HEADER LINE.
itab-field1 = 'Company'. itab-field2 = '1234'. INSERT TABLE itab.
itab-field1 = 'Bank'. itab-field2 = 'ABC'. INSERT TABLE itab.
SORT itab.
LOOP AT itab.
write: /1 itab-field1, itab-field2.
ENDLOOP.

A: There is no syntax error here
B: Remove the SORT statement
C: Change INSERT to APPEND
D: Add a WHERE clause to the loop

39. If this code results in an error, the remedy is:

SELECT fld1 fld2 FROM tab1 WHERE fld3 = pfld3.
WRITE: /1 tab1-fld1, tab1-fld2.
ENDSELECT.

A: Add a SY-SUBRC check.
B: Change the WHERE clause to use fld1 or fld2.
C: Remove the /1 from the WRITE statement.
D: Add INTO (tab1-fld1, tab1-fld2).

40. When modifying an internal table within LOOP AT itab. _ ENDLOOP. you must include an index number.
A: True
B: False

41. To allow the user to enter values on the screen for a list field, use:
A: OPEN LINE.
B: SET CURSOR FIELD.
C: WRITE fld AS INPUT FIELD.
D: FORMAT INPUT ON.

42. Before a function module may be tested, it must first be:
A: Linked
B: Authorized
C: Released
D: Active

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?
A: PBO module include program
B: TOP include program
C: PAI module include program
D: Subroutine include program

44. If a table contains many duplicate values for a field, minimize the number of records returned by using this SELECT statement addition.
A: MIN
B: ORDER BY
C: DISTINCT
D: DELETE

45. The system internal table used for dynamic screen modification is named:
A: ITAB
B: SCREEN
C: MODTAB
D: SMOD

46. Within the source code of a function module, errors are handled via the keyword:
A: EXCEPTION
B: RAISE
C: STOP
D: ABEND

47. Which system field contains the contents of a selected line?
A: SY-CUCOL
B: SY-LILLI
C: SY-CUROW
D: SY-LISEL

48. The following statement writes what type of data object?
WRITE: /1 'Total Amount:'.
A: Text literal
B: Text variable
C: In-code comment
D: Text integer

49. For the code below, second_field is of what data type?
DATA: first_field type P, second_field like first_field.
A: P
B: C
C: N
D: D

50. Which of the following describes the internal representation of a type D data object?
A: DDMMYYYY
B: YYYYDDMM
C: MMDDYYYY
D: YYYYMMDD

51. A BDC program is used for all of the following except:
A: Downloading data to a local file
B: Data interfaces between SAP and external systems
C: Initial data transfer
D: Entering a large amount of data

52. In regard to PERFORM, which of the following is NOT a true statement?
A: May be used within a subroutine.
B: Requires actual parameters.
C: Recursive calls are allowed in ABAP.
D: Can call a subroutine in another program.

53. What is the transaction code for the ABAP Editor?
A: SE11
B: SE38
C: SE36
D: SE16

54. In regard to HIDE, which of the following is NOT a true statement?
A: Saves the contents of variables in relation to a list line's row number.
B: The hidden variables must be output on a list line.
C: The HIDE area is retrieved when using the READ LINE statement.
D: The HIDE area is retrieved when an interactive event is triggered.

55. Database locks are sufficient in a multi-user environment.
A: True
B: False

56. The complete technical definition of a table field is determined by the field's:
A: Domain
B: Field name
C: Data type
D: Data element

57. In regard to LEAVE, which of the following is NOT a true statement?
A: May be used to return immediately to a calling program.
B: May be used to stop the current loop pass and get the next.
C: May be used to start a new transaction.
D: May be used to go to the next screen.

58. The following code indicates:

SELECT fld6 fld3 fld2 fld1 FROM tab1 INTO CORRESPONDING FIELDS OF TABLE itab
WHERE fld3 = pfld3.

A: The order of the fields in itab does not matter.
B: Fill the header line of itab, but not the body.
C: Table itab can only contain fields also in table tab1.
D: None of the above.

59. The ABAP statement below indicates that the program should continue with the next line of code if the internal table itab:

CHECK NOT itab[] IS INITIAL.

A: Contains no rows
B: Contains at least one row
C: Has a header line
D: Has an empty header line

60. What will be output by the following code?

DATA: BEGIN OF itab OCCURS 0, fval type i, END OF itab.
itab-fval = 1. APPEND itab.
itab-fval = 2. APPEND itab.
FREE itab.
WRITE: /1 itab-fval.

A: 2
B: 0
C: blank
D: 1

61. To allow the user to enter a range of values on a selection screen, use the ABAP keyword:
A: DATA.
B: RANGES.
C: PARAMETERS.
D: SELECT-OPTIONS.

62. If an internal table is declared without a header line, what else must you declare to work with the table's rows?
A: Another internal table with a header line.
B: A work area with the same structure as the internal table.
C: An internal table type using the TYPES statement.
D: A PARAMETER.

63. Assuming an internal table contains 2000 entries, how many entries will it have after the following line of code is executed?

DELETE itab FROM 1500 TO 1700.

A: This is a syntax error.
B: 1801
C: 1800
D: 1799

64. To remove lines from a database table, use ____.
A: UPDATE
B: MODIFY
C: ERASE
D: DELETE

65. All of the following may be performed using SET CURSOR except:
A: Move the cursor to a specific field on a list.
B: Move the cursor to a specific list line.
C: Move the cursor to a specific pushbutton, activating that function.
D: Move the cursor to a specific row and column on a list.

66. When is it optional to pass an actual parameter to a required formal parameter of a function module?
A: The actual parameter is type C.
B: The formal parameter contains a default value.
C: The formal parameter's \"Reference\" attribute is turned on.
D: It is never optional.

67. Coding two INITIALIZATION events will cause a syntax error.
A: True
B: False

68. Adding a COMMIT WORK statement between SELECT_ENDSELECT is a good method for improving performance.
A: True
B: False

69. To save information on a list line for use after the line is selected, use this keyword.
A: APPEND
B: EXPORT
C: WRITE
D: HIDE

70. To bypass automatic field input checks, include this in PAI.
A: AT EXIT-COMMAND
B: ON INPUT
C: ON REQUEST
D: LEAVE TO SCREEN 0.

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:
A: SY-MSGTY
B: SY-MSGNO
C: SY-MSGV1
D: SY-MSGWA

72. The following code indicates:

REPORT ZLISTTST.
START-OF-SELECTION.
WRITE: text-001.
FORMAT HOTSPOT ON.
WRITE: text-002.
FORMAT HOTSPOT OFF.
AT LINE-SELECTION.
WRITE / text-003.

A: Text-002 may not be selected.
B: The value of text-002 is stored in a special memory area.
C: Text-002 may be clicked once to trigger the output of text-003.
D: None of the above.

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.
A: Database view
B: Projection view
C: Help view
D: Entity view

74. A concrete field is associated with a field-symbol via ABAP keyword
A: MOVE
B: WRITE
C: ASSIGN
D: VALUE

75. The output for the following code will be:

report zabaprg.
DATA: char_field type C.
char_field = 'ABAP data'.
WRITE char_field.

A: ABAP data
B: A
C: Nothing, there is a syntax error
D: None of the above

76. Page footers are coded in the event:
A: TOP-OF-PAGE.
B: END-OF-SELECTION.
C: NEW-PAGE.
D: END-OF-PAGE.

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.
A: True
B: False

78. The TABLES statement declares a data object.
A: True
B: False

79. Assuming tab1-fld7 is not a key field, how can you prevent reading all the table rows?

SELECT fld1 fld2 fld3 FROM tab1 INTO (fld4, fld5, fld6)
WHERE fld7 = pfld7.
WRITE: /1 fld4, fld5, fld6.
ENDSELECT.

A: Take fld7 out of the WHERE clause.
B: Create an index in the ABAP Dictionary for tab1-fld7.
C: Use INTO TABLE instead of just INTO.
D: Take the WRITE statement out of the SELECT_ENDSELECT.

80. Which of the following is NOT a required attribute when creating an ABAP program?
A: Application
B: Title
C: Status
D: Type

81. When creating a transparent table in the ABAP Dictionary, which step automatically creates the table in the underlying database?
A: Adding technical settings to the table
B: Checking the table syntax
C: Saving the table
D: Activating the table

82. Within the ABAP program attributes, Type = 1 represents:
A: INCLUDE program
B: Online program
C: Module pool
D: Function group
E: Subroutine pool

83. If this code results in an error, the remedy is:

SELECT fld1 SUM( fld1 ) FROM tab1 INTO_

A: Remove the spaces from SUM( fld1 ).
B: Move SUM( fld1 ) before fld1.
C: Add GROUP BY f1.
D: Change to SUM( DISTINCT f1 ).

84. Which keyword adds rows to an internal table while accumulating numeric values?
A: INSERT
B: APPEND
C: COLLECT
D: GROUP

85. Assuming itab has a header line, what will be output by the following code?

READ TABLE itab INDEX 3 TRANSPORTING field1.
WRITE: /1 itab-field1, itab-field2.

A: The contents of the third row's itab-field1.
B: The contents of the third row's itab-field1 and itab-field2.
C: The contents of the third row's itab-field2.
D: Nothing.

86. The following code indicates:

SELECTION-SCREEN BEGIN OF BLOCK B1.
PARAMETERS: myparam(10) type C,
Myparam2(10) type N,
SELECTION-SCREEN END OF BLOCK.

A: Draw a box around myparam and myparam2 on the selection screen.
B: Allow myparam and myparam2 to be ready for input during an error dialog.
C: Do not display myparam and myparam2 on the selection screen.
D: Display myparam and myparam2 only if both fields have default values.

87. Which statement will sort the data of an internal table with fields FRUIT, QTY, and PRICE so that it appears as follows?

FRUIT QTY PRICE
Apples 12 22.50
Apples 9 18.25
Oranges 15 17.35
Bananas 20 10.20
Bananas 15 6.89
Bananas 5 2.75

A: SORT itab DESCENDING BY QTY PRICE.
B: SORT itab BY PRICE FRUIT.
C: SORT itab.
D: SORT itab BY PRICE DESCENDING.

88. Which keyword adds a line anywhere within an internal table?
A: APPEND
B: MODIFY
C: ADD
D: INSERT

89. To read a single line of an internal table, use the following:
A: LOOP AT itab. _ ENDLOOP.
B: READ itab.
C: SELECT SINGLE * FROM itab.
D: READ TABLE itab.

90. Which Open SQL statement should not be used with cluster databases?
A: UPDATE
B: MODIFY
C: DELETE
D: INSERT

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?
A: PBO module include program
B: TOP include program
C: PAI module include program
D: Subroutine include program

92. This flow logic statement is used to make multiple fields open for input after an error or warning message.
A: GROUP
B: FIELD-GROUP
C: CHAIN
D: LOOP AT SCREEN

93. Given:

PERFORM subroutine USING var.

The var field is known as what type of parameter?

A: Formal
B: Actual
C: Static
D: Value




Un saludo a todo el foro de sap :) .

Jacampos
29/01/07, 19:15:26
Hola amig@s:


Aqui os dejo algunas mas, para entretenimiento.

google_adsense2

143

Espero que os sirva, saludos.

Diogo
31/01/07, 16:38:45
Hola Jacampos,
tengo una pregunta disculpa dond puedo constatar las preguntas del archivo que haz dejado??

Hola amig@s:


Aqui os dejo algunas mas, para entretenimiento.

143

Espero que os sirva, saludos.

DCErick
01/02/07, 19:44:24
OK Lo voy a checar este fin de semana para ver como ando jeje..:D

Washburn
05/02/07, 13:25:42
Hola!
Esta muy bueno el cuestionario, pero ¿como puedo validar mis respuestas? hay algun download que las tenga.

Muchísimas gracias!

mrchecho
06/02/07, 05:58:52
Hola:
un lugar muy bueno para los que quieran medir sus conocimientos para certificarce:

http://www.sapdomain.com

:D

nikok
22/02/07, 18:34:10
hola a tudo el mundo SAp...
yesterday i get the MM SAp certification!:D
Adios

tracer
26/02/07, 09:28:45
Ole nikok, pues enhorabuena, seguro que ahora podrás echar una mano a muchos miembros ;) .

Un saludo a todo el foro de sap :) .

sergiokb
09/03/07, 12:13:08
Hola, donde se pueden encontrar las respuestas a los test?

gracias, saludos.

ARAN
09/03/07, 13:50:54
Hola a todos!

Alguien sabe si los libros oficiales para prepararse para un exámen de certificación se pueden comprar?

Sabéis de algún centro en Alava o Vizcaya que imparta cursos oficiales para certificaciones?

Gracias a todos. Saludos.

crounly
03/04/07, 08:26:36
Yo encontre los libros a traves de amazon (www.amazon.com)

majg2002
06/04/07, 14:47:54
Tengo que certificarme en ABAP IV.

Si alguien fuera tan amable de enviar sus respuestas las validarías con las mías y aquellas que coincidadan las podemos dar por válidas.

Después colgaría el documento con las respuestas.

sergiobessoni
04/05/07, 20:22:14
Alguien puede pasarme las respuestas del test para controlarlas con las mias.

Gracias

FranOchoa
28/05/07, 14:26:48
Muchas Gracias Tracer el Test es muy bueno para practicar, pero si alguien podiera publicar las respuestas pues seria aun mejor.

Y si alguien conoce algun libro, manual o similar para certificarse en ABAP le estaria muy agradecido porque me lo estoy preparando para este verano.

Muchas gracias.

Franciso J. Ochoa.

mario_ici
28/05/07, 17:52:30
Hola tengo preguntas del examen de MM, estoy certificado y puedo ayudarles a responder las preguntas en forma práctica, es decir que cada pregunta se verificara en SAP.

camaron
23/07/07, 16:31:27
Excelente amigo tracer pero Tu tienes las respuestas si las tienes publicalas

Rebuscando por el sdn de sap he encontrado algunas preguntillas sacadas de los exámenes de certificación abap. Algunas son muy sencillas y otras un poco más rebuscadas pero yo creo que todas son más o menos asequibles.

Están en inglés, idioma que por otra parte como ya comente en varios post considero el más adecuado para realizar una certificación abap, no hay nada que duela más a la vista que ver una "LLamada a transacción" en lugar de CALL TRANSACTION... :D

http://www.mundosap.com/foro/images/certificacion_abap.jpg

Haber quien se aventure a dar las respuestas :D :D :D , hemos pensado nombrar al ganador miembro honorario de esta ya numerosa comunidad osea que no os cortéis con las respuestas aunque no hace falta dar la solución de todas, solo las que os parezcan.

En fin espero que os sea de utilidad y os guie un poco en el futuro por si alguno tiene pensado presentarse a alguna certificación de abap.


ABAP CERTIFICATION QUESTIONS


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 PROGRAM

3. Name the type of ABAP Dictionary table that has these characteristics:

Same number of fields as the database table
Same name as database table
Maps 1:1 to database table

A: Pooled
B: Cluster
C: Transparent
D: View

4. An event starts with an event keyword and ends with:
A: Program execution.
B: END-OF-EVENT.
C: Another event keyword.
D: END-EVENT.

5. What is the system field for the current date?
A: SY-DATUM
B: SY-DATE
C: SY-DATID
D: SY-SDATE

6. The following code indicates:

SELECT fld1 fld2 FROM tab1 APPENDING TABLE itab
WHERE fld1 IN sfld1.

A: Add rows to the existing rows of itab.
B: Add rows to itab after first deleting any existing rows of itab.
C: Select rows from tab1 for matching itab entries.
D: Nothing, this is a syntax error.

7. You may change the following data object as shown below so that it equals 3.14.
CONSTANTS: PI type P decimals 2 value '3.1'.

PI = '3.14'.

A: True
B: False

8. The SAP service that ensures data integrity by handling locking is called:
A: Update
B: Dialog
C: Enqueue/Dequeue
D: Spool

9. Which of these sentences most accurately describes the GET VBAK LATE. event?
A: This event is processed before the second time the GET VBAK event is processed.
B: This event is processed after all occurrences of the GET VBAK event are completed.
C: This event will only be processed after the user has selected a basic list row.
D: This event is only processed if no records are selected from table VBAK.

10. Which of the following is not a true statement in regard to a hashed internal table type?
A: Its key must always be UNIQUE.
B: May only be accessed by its key.
C: Response time for accessing a row depends on the number of entries in the table.
D: Declared using internal table type HASHED TABLE.

11. TO include database-specific SQL statements within an ABAP program, code them between:
A: NATIVE SQL_ENDNATIVE.
B: DB SQL_ENDDB.
C: SELECT_ENDSELECT.
D: EXEC SQL_ENDEXEC.

12. To measure how long a block of code runs, use the ABAP statement:
A: GET TIME .
B: SET TIME FIELD .
C: GET RUN TIME FIELD .
D: SET CURSOR FIELD .

13. When a secondary list is being processed, the data of the basic list is available by default.
A: True
B: False

14. Given:

DATA: BEGIN OF itab OCCURS 10,
qty type I,
END OF itab.
DO 25 TIMES. itab-qty = sy-index. APPEND itab. ENDDO.
LOOP AT itab WHERE qty > 10.
WRITE: /1 itab-qty.
ENDLOOP.

This will result in:
A: Output of only those itab rows with a qty field less than 10
B: Output of the first 10 itab rows with a qty field greater than 10
C: A syntax error
D: None of the above

15. After a DESCRIBE TABLE statement SY-TFILL will contain
A: The number of rows in the internal table.
B: The current OCCURS value.
C: Zero, if the table contains one or more rows.
D: The length of the internal table row structure.

16. You may declare your own internal table type using the TYPES keyword.
A: True
B: False

17. After adding rows to an internal table with COLLECT, you should avoid adding more rows with APPEND.
A: True
B: False

18. Which of the following is not a component of control break processing when looping at an internal table?
A: AT START OF
B: AT FIRST
C: AT LAST
D: AT NEW

19. A dictionary table is made available for use within an ABAP program via the TABLES statement.
A: True
B: False

20. Which of the following would be best for hiding further selection criteria until a function is chosen?
A: AT NEW SELECTION-SCREEN
B: SELECTION-SCREEN AT LINE-SELECTION
C: SUBMIT SELECTION-SCREEN
D: CALL SELECTION-SCREEN

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)?
A: ON INPUT
B: CHAIN
C: FIELD
D: ON REQUEST

22. The AT USER-COMMAND event is triggered by functions defined in the ____.
A: screen painter
B: ABAP report
C: menu painter status
D: ABAP Dictionary

23. In regard to a function group, which of the following is NOT a true statement?
A: Combines similar function modules.
B: Shares global data with all its function modules.
C: Exists within the ABAP workbench as an include program.
D: Shares subroutines with all its function modules.

24. In regard to SET PF-STATUS, you can deactivate unwanted function codes by using ____.
A: EXCLUDING
B: IMMEDIATELY
C: WITHOUT
D: HIDE

25. In regard to data transported in PAI when the FIELD statement is used, which of the following is NOT a true statement?
A: Fields in PBO are transported directly from PAI.
B: Fields with identical names are transported to the ABAP side.
C: Fields not defined in FIELD statements are transported first.
D: Fields that are defined in FIELD statements are transported when their corresponding module is called.

26. The order in which an event appears in the ABAP code determines when the event is processed.
A: True
B: False

27. A field declared as type T has the following internal representation:
A: SSMMHH
B: HHMMSS
C: MMHHSS
D: HHSSMM

28. Which of the following is NOT a component of the default standard ABAP report header?
A: Date and Time
B: List title
C: Page number
D: Underline

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?
A: AT USER-COMMAND.
B: AT PFn.
C: AT SELECTION-SCREEN.
D: END-OF-SELECTION.

30. In regard to field selection, what option of the SELECT statement is required?
A: FOR ALL ENTRIES
B: WHERE
C: INTO
D: MOVE-CORRESPONDING

31. The following program outputs what?

report zjgtest1
write: /1 'Ready_'.
PARAMETER: test.
INITIALIZATION.
write: /1 'Set_'.
START-OF-SELECTION.
write: /1 'GO!!'.

A: Set_ GO!! (each on its own line)
B: Set_ Ready_ GO!! (all on their own lines)
C: Ready_ GO!! (each on its own line)
D: Ready_ Set_ GO!! (all on their own lines)

32. To declare a selection criterion that does not appear on the selection screen, use:
A: NO-DISPLAY
B: INVISIBLE
C: MODIF ID
D: OBLIGATORY

33. An internal table that is nested within another internal table should not contain a header line.
A: True
B: False

34. What is output by the following code?

DATA: BEGIN OF itab OCCURS 0, letter type c, END OF itab.
itab-letter = 'A'. APPEND itab. itab-letter = 'B'. APPEND itab.
itab-letter = 'C'. APPEND itab. itab-letter = 'D'. APPEND itab.
LOOP AT itab.
SY-TABIX = 2.
WRITE itab-letter.
EXIT.
ENDLOOP.

A: A
B: A B C D
C: B
D: B C D

35. To select all database entries for a certain WHERE clause into an internal table in one step, use
A: SELECT_INTO TABLE itab_
B: SELECT_INTO itab_
C: SELECT_APPENDING itab
D: SELECT_itab_

36. After a successful SELECT statement, what does SY-SUBRC equal?
A: 0
B: 4
C: 8
D: Null

37. This selection screen syntax forces the user to input a value:
A: REQUIRED-ENTRY
B: OBLIGATORY
C: DEFAULT
D: SELECTION-SCREEN EXCLUDE

38. If the following code results in a syntax error, the remedy is:

DATA: itab TYPE SORTED TABLE OF rec_type WITH UNIQUE KEY field1
WITH HEADER LINE.
itab-field1 = 'Company'. itab-field2 = '1234'. INSERT TABLE itab.
itab-field1 = 'Bank'. itab-field2 = 'ABC'. INSERT TABLE itab.
SORT itab.
LOOP AT itab.
write: /1 itab-field1, itab-field2.
ENDLOOP.

A: There is no syntax error here
B: Remove the SORT statement
C: Change INSERT to APPEND
D: Add a WHERE clause to the loop

39. If this code results in an error, the remedy is:

SELECT fld1 fld2 FROM tab1 WHERE fld3 = pfld3.
WRITE: /1 tab1-fld1, tab1-fld2.
ENDSELECT.

A: Add a SY-SUBRC check.
B: Change the WHERE clause to use fld1 or fld2.
C: Remove the /1 from the WRITE statement.
D: Add INTO (tab1-fld1, tab1-fld2).

40. When modifying an internal table within LOOP AT itab. _ ENDLOOP. you must include an index number.
A: True
B: False

41. To allow the user to enter values on the screen for a list field, use:
A: OPEN LINE.
B: SET CURSOR FIELD.
C: WRITE fld AS INPUT FIELD.
D: FORMAT INPUT ON.

42. Before a function module may be tested, it must first be:
A: Linked
B: Authorized
C: Released
D: Active

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?
A: PBO module include program
B: TOP include program
C: PAI module include program
D: Subroutine include program

44. If a table contains many duplicate values for a field, minimize the number of records returned by using this SELECT statement addition.
A: MIN
B: ORDER BY
C: DISTINCT
D: DELETE

45. The system internal table used for dynamic screen modification is named:
A: ITAB
B: SCREEN
C: MODTAB
D: SMOD

46. Within the source code of a function module, errors are handled via the keyword:
A: EXCEPTION
B: RAISE
C: STOP
D: ABEND

47. Which system field contains the contents of a selected line?
A: SY-CUCOL
B: SY-LILLI
C: SY-CUROW
D: SY-LISEL

48. The following statement writes what type of data object?
WRITE: /1 'Total Amount:'.
A: Text literal
B: Text variable
C: In-code comment
D: Text integer

49. For the code below, second_field is of what data type?
DATA: first_field type P, second_field like first_field.
A: P
B: C
C: N
D: D

50. Which of the following describes the internal representation of a type D data object?
A: DDMMYYYY
B: YYYYDDMM
C: MMDDYYYY
D: YYYYMMDD

51. A BDC program is used for all of the following except:
A: Downloading data to a local file
B: Data interfaces between SAP and external systems
C: Initial data transfer
D: Entering a large amount of data

52. In regard to PERFORM, which of the following is NOT a true statement?
A: May be used within a subroutine.
B: Requires actual parameters.
C: Recursive calls are allowed in ABAP.
D: Can call a subroutine in another program.

53. What is the transaction code for the ABAP Editor?
A: SE11
B: SE38
C: SE36
D: SE16

54. In regard to HIDE, which of the following is NOT a true statement?
A: Saves the contents of variables in relation to a list line's row number.
B: The hidden variables must be output on a list line.
C: The HIDE area is retrieved when using the READ LINE statement.
D: The HIDE area is retrieved when an interactive event is triggered.

55. Database locks are sufficient in a multi-user environment.
A: True
B: False

56. The complete technical definition of a table field is determined by the field's:
A: Domain
B: Field name
C: Data type
D: Data element

57. In regard to LEAVE, which of the following is NOT a true statement?
A: May be used to return immediately to a calling program.
B: May be used to stop the current loop pass and get the next.
C: May be used to start a new transaction.
D: May be used to go to the next screen.

58. The following code indicates:

SELECT fld6 fld3 fld2 fld1 FROM tab1 INTO CORRESPONDING FIELDS OF TABLE itab
WHERE fld3 = pfld3.

A: The order of the fields in itab does not matter.
B: Fill the header line of itab, but not the body.
C: Table itab can only contain fields also in table tab1.
D: None of the above.

59. The ABAP statement below indicates that the program should continue with the next line of code if the internal table itab:

CHECK NOT itab[] IS INITIAL.

A: Contains no rows
B: Contains at least one row
C: Has a header line
D: Has an empty header line

60. What will be output by the following code?

DATA: BEGIN OF itab OCCURS 0, fval type i, END OF itab.
itab-fval = 1. APPEND itab.
itab-fval = 2. APPEND itab.
FREE itab.
WRITE: /1 itab-fval.

A: 2
B: 0
C: blank
D: 1

61. To allow the user to enter a range of values on a selection screen, use the ABAP keyword:
A: DATA.
B: RANGES.
C: PARAMETERS.
D: SELECT-OPTIONS.

62. If an internal table is declared without a header line, what else must you declare to work with the table's rows?
A: Another internal table with a header line.
B: A work area with the same structure as the internal table.
C: An internal table type using the TYPES statement.
D: A PARAMETER.

63. Assuming an internal table contains 2000 entries, how many entries will it have after the following line of code is executed?

DELETE itab FROM 1500 TO 1700.

A: This is a syntax error.
B: 1801
C: 1800
D: 1799

64. To remove lines from a database table, use ____.
A: UPDATE
B: MODIFY
C: ERASE
D: DELETE

65. All of the following may be performed using SET CURSOR except:
A: Move the cursor to a specific field on a list.
B: Move the cursor to a specific list line.
C: Move the cursor to a specific pushbutton, activating that function.
D: Move the cursor to a specific row and column on a list.

66. When is it optional to pass an actual parameter to a required formal parameter of a function module?
A: The actual parameter is type C.
B: The formal parameter contains a default value.
C: The formal parameter's \"Reference\" attribute is turned on.
D: It is never optional.

67. Coding two INITIALIZATION events will cause a syntax error.
A: True
B: False

68. Adding a COMMIT WORK statement between SELECT_ENDSELECT is a good method for improving performance.
A: True
B: False

69. To save information on a list line for use after the line is selected, use this keyword.
A: APPEND
B: EXPORT
C: WRITE
D: HIDE

70. To bypass automatic field input checks, include this in PAI.
A: AT EXIT-COMMAND
B: ON INPUT
C: ON REQUEST
D: LEAVE TO SCREEN 0.

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:
A: SY-MSGTY
B: SY-MSGNO
C: SY-MSGV1
D: SY-MSGWA

72. The following code indicates:

REPORT ZLISTTST.
START-OF-SELECTION.
WRITE: text-001.
FORMAT HOTSPOT ON.
WRITE: text-002.
FORMAT HOTSPOT OFF.
AT LINE-SELECTION.
WRITE / text-003.

A: Text-002 may not be selected.
B: The value of text-002 is stored in a special memory area.
C: Text-002 may be clicked once to trigger the output of text-003.
D: None of the above.

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.
A: Database view
B: Projection view
C: Help view
D: Entity view

74. A concrete field is associated with a field-symbol via ABAP keyword
A: MOVE
B: WRITE
C: ASSIGN
D: VALUE

75. The output for the following code will be:

report zabaprg.
DATA: char_field type C.
char_field = 'ABAP data'.
WRITE char_field.

A: ABAP data
B: A
C: Nothing, there is a syntax error
D: None of the above

76. Page footers are coded in the event:
A: TOP-OF-PAGE.
B: END-OF-SELECTION.
C: NEW-PAGE.
D: END-OF-PAGE.

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.
A: True
B: False

78. The TABLES statement declares a data object.
A: True
B: False

79. Assuming tab1-fld7 is not a key field, how can you prevent reading all the table rows?

SELECT fld1 fld2 fld3 FROM tab1 INTO (fld4, fld5, fld6)
WHERE fld7 = pfld7.
WRITE: /1 fld4, fld5, fld6.
ENDSELECT.

A: Take fld7 out of the WHERE clause.
B: Create an index in the ABAP Dictionary for tab1-fld7.
C: Use INTO TABLE instead of just INTO.
D: Take the WRITE statement out of the SELECT_ENDSELECT.

80. Which of the following is NOT a required attribute when creating an ABAP program?
A: Application
B: Title
C: Status
D: Type

81. When creating a transparent table in the ABAP Dictionary, which step automatically creates the table in the underlying database?
A: Adding technical settings to the table
B: Checking the table syntax
C: Saving the table
D: Activating the table

82. Within the ABAP program attributes, Type = 1 represents:
A: INCLUDE program
B: Online program
C: Module pool
D: Function group
E: Subroutine pool

83. If this code results in an error, the remedy is:

SELECT fld1 SUM( fld1 ) FROM tab1 INTO_

A: Remove the spaces from SUM( fld1 ).
B: Move SUM( fld1 ) before fld1.
C: Add GROUP BY f1.
D: Change to SUM( DISTINCT f1 ).

84. Which keyword adds rows to an internal table while accumulating numeric values?
A: INSERT
B: APPEND
C: COLLECT
D: GROUP

85. Assuming itab has a header line, what will be output by the following code?

READ TABLE itab INDEX 3 TRANSPORTING field1.
WRITE: /1 itab-field1, itab-field2.

A: The contents of the third row's itab-field1.
B: The contents of the third row's itab-field1 and itab-field2.
C: The contents of the third row's itab-field2.
D: Nothing.

86. The following code indicates:

SELECTION-SCREEN BEGIN OF BLOCK B1.
PARAMETERS: myparam(10) type C,
Myparam2(10) type N,
SELECTION-SCREEN END OF BLOCK.

A: Draw a box around myparam and myparam2 on the selection screen.
B: Allow myparam and myparam2 to be ready for input during an error dialog.
C: Do not display myparam and myparam2 on the selection screen.
D: Display myparam and myparam2 only if both fields have default values.

87. Which statement will sort the data of an internal table with fields FRUIT, QTY, and PRICE so that it appears as follows?

FRUIT QTY PRICE
Apples 12 22.50
Apples 9 18.25
Oranges 15 17.35
Bananas 20 10.20
Bananas 15 6.89
Bananas 5 2.75

A: SORT itab DESCENDING BY QTY PRICE.
B: SORT itab BY PRICE FRUIT.
C: SORT itab.
D: SORT itab BY PRICE DESCENDING.

88. Which keyword adds a line anywhere within an internal table?
A: APPEND
B: MODIFY
C: ADD
D: INSERT

89. To read a single line of an internal table, use the following:
A: LOOP AT itab. _ ENDLOOP.
B: READ itab.
C: SELECT SINGLE * FROM itab.
D: READ TABLE itab.

90. Which Open SQL statement should not be used with cluster databases?
A: UPDATE
B: MODIFY
C: DELETE
D: INSERT

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?
A: PBO module include program
B: TOP include program
C: PAI module include program
D: Subroutine include program

92. This flow logic statement is used to make multiple fields open for input after an error or warning message.
A: GROUP
B: FIELD-GROUP
C: CHAIN
D: LOOP AT SCREEN

93. Given:

PERFORM subroutine USING var.

The var field is known as what type of parameter?

A: Formal
B: Actual
C: Static
D: Value




Un saludo a todo el foro de sap :) .

ArturoAMH
28/07/07, 19:55:35
Hola amig@s:


Aqui os dejo algunas mas, para entretenimiento.



143

Espero que os sirva, saludos.
Saludos.

Podrias pasarme las preguntas que tienes de la certificació.
Mi correo es amh_sis@hotmail.com

gracias.

marc_rmz
28/08/07, 15:06:27
hola hace 10 dias me certifique en ABAP y pude guardar unos screenshots de las preguntas del examen son alrededor de 40 preguntas,nose si a alguien les interesa,es asi como tal el examen je

parmaso
04/09/07, 18:44:16
no se si tengas algunas preguntas del examen de certificacion del modulo hr

vayaxdio
12/09/07, 13:20:49
Hola, a ver si alguien puede informarme. Querría hacer un curso de SAP Logística, pero los cursos que encuentro son increíblemente caros. sabeis si ¿puedo estudiar por mi cuenta y conseguir la certificación SAP por libre? ¿Cómo practico si no dispongo del software SAP en casa ni en el trabajo? Gracias a todos.

misa
19/10/07, 12:04:29
Alguien tiene las respuestas del examen??????
Estoy haciendo estos examenes preparatorios para la certificacion, y me gustaria tener las respuestas para ver como voy de nivel...

Gracias

raulet18
22/10/07, 16:35:27
Saludos a toda la gente...

Me voy a estrenar en en el foro por la puerta grande, ya que veo que la gente no se anima a publicar las respuestas de las preguntas que Trace nos ha facilitado...Gracias Crack! asi que creo que toca estrenarse en el foro rompiendo un poco el hielo.

Asi que, alla van!!! estas respuestas estan cotejadas por un Junior como yo :) y mi compi Senior asi que, seguramente esten bien la mayoria...Por favor si encontrais algun error seguid este post y debatimos las mas chungas.

SALUDOS DESDE VALENCIA!!!:D

(Por favor si alguien encuentra por ahi mas preguntas de Examenes mas recientes por favor ke COMPARTA!!!, Gracias)

kowalto
31/10/07, 14:42:35
hola hace 10 dias me certifique en ABAP y pude guardar unos screenshots de las preguntas del examen son alrededor de 40 preguntas,nose si a alguien les interesa,es asi como tal el examen je

Hola,
podrias enviarme los screenshots por favor?
muchas gracias
saludos

xania
24/11/07, 12:19:49
hola hace 10 dias me certifique en ABAP y pude guardar unos screenshots de las preguntas del examen son alrededor de 40 preguntas,nose si a alguien les interesa,es asi como tal el examen je
Hola!

Quiero hacer el examen de certificación en ABAP en Diciembre, ¿podrías pasarme esas screenshots?

Muchas gracias!!!

pviralta
06/12/07, 17:52:35
Yo también deseo hacer el exámen puedes enviarme los pantallazos que grabaste porfa. Las preguntas que están zipeadas del compañero raulet18 no son las que preguntan en el exámen, a mi en la academia me las pasaron para "entrenar" pero ya lo he rendido 2 veces y son muy diferentes a esas. Me parece que ese tipo de preguntas se hácían antes hace muchos años atrás. Yo tengo también algunas prints_screen, pero prefiero actualizarlo mañana cuando la rinda con las respuestas que voy a poner puesto que asi se certifican más personas. Es bastante difícil, yo me conseguí las fotos de algunas preguntas para la segunda prueba, que casi apruebo pues tuve 69%, pero mañana la tercera es la vencida...

Si alguien quiere las fotos me manda un correito no más.

Que estén muy bien.

zehiter
07/01/08, 23:00:17
Solo quiero hacer extensivo mi agradecimiento a este foro, gracias a la gente que contacté y la información que pude recavar eh conseguido certificarme en SAP modulo ABAP en el mes de diciembre del año que acaba de terminar.

Suerte a los próximos en sus intentos por conseguir la certificación.

Saludos !!!

pepezorro
31/01/08, 04:11:14
Originalmente Escrito por marc_rmz
hola hace 10 dias me certifique en ABAP y pude guardar unos screenshots de las preguntas del examen son alrededor de 40 preguntas,nose si a alguien les interesa,es asi como tal el examen je




Oigan me podrian mandar a mi correo los screen shots presento en una semana el de certificacion abap y quiero prepararme mejor se los agradeceria mi correo es pepe_zorro@hotmail.com gracias..

alanzam
13/02/08, 04:40:25
hola hace 10 dias me certifique en ABAP y pude guardar unos screenshots de las preguntas del examen son alrededor de 40 preguntas,nose si a alguien les interesa,es asi como tal el examen je

Claro que me interesa, Ayer presente y saque 65. La verdad es que esta bien dificil. y me serian de gran ayuda porque voy a volver a presentar. De antemano gracias. Mi email es alanzam@hotmail.com

alanzam
13/02/08, 05:05:39
Yo también deseo hacer el exámen puedes enviarme los pantallazos que grabaste porfa. Las preguntas que están zipeadas del compañero raulet18 no son las que preguntan en el exámen, a mi en la academia me las pasaron para "entrenar" pero ya lo he rendido 2 veces y son muy diferentes a esas. Me parece que ese tipo de preguntas se hácían antes hace muchos años atrás. Yo tengo también algunas prints_screen, pero prefiero actualizarlo mañana cuando la rinda con las respuestas que voy a poner puesto que asi se certifican más personas. Es bastante difícil, yo me conseguí las fotos de algunas preguntas para la segunda prueba, que casi apruebo pues tuve 69%, pero mañana la tercera es la vencida...

Si alguien quiere las fotos me manda un correito no más.

Que estén muy bien.

Pues claro que estoy interesadisimo pero no dejaste tu correo. Bueno, el mio es: alanzam@hotmail.com
Gracias

cARLOSaGREDA
14/02/08, 15:19:52
Si puedes envias los screenshot a mi correo también. carlosagreda@gmail.com

larmadovr
14/02/08, 15:32:43
Me pueden pasar los screenshots a mi correo por favor: larmandovr@hotmail.com

Gracias!!

wincho74
17/02/08, 13:21:15
Hola todos, tambien estoy interesado en elos screenshots, mi correo es gilbertog74@gmail.com. Muchas gracias

garanda
05/03/08, 15:38:23
Hola me puedes pasar los screenshots a mi correo por favor es bastante urgente en un par de días presento mi certificación, mil gracias: garanda21@gmail.com

Gracias!!

D@niel_B
24/03/08, 23:29:33
Hola.

Estoy proximo a presentar el examen. Sera que alguien que tenga los screenshots me los puede enviar?

Gracias.

Mi correo es daniel.desarrollos@gmail.com

Adonay Diaz
04/05/08, 04:38:05
Hola estoy a 3 semanas de pesentar el examen de la academia de ABAP me puedes enviar los screenshots mi correo es. calin699@hotmail.com

someltaker
04/05/08, 22:43:18
gracias

le sacare provecho:D

luciani216
09/05/08, 01:42:13
por favor si tienes las pantallas pasamelas a mi correo.

luciani216@hotmail.com

se los agradeceria presento en unas semanas.

Gracias.

raulet18
12/05/08, 17:15:34
Hola Saperos!!!

Estoy muy interesado en los pantallazos de las preguntas ABAP, Puesto que ya veo a lo lejos, la ansiada Certificacion!
Hace unos meses deje en un post un supuesto examen resuelto, Espero que a alguien le sirviera aunque sea, para entrenar.

Estoy viendo, que van rulando por ahi unos pantallazos de preguntas actualizadas, asique, por favor, recordad que compartir conocimiento es la clave de los foros, Asi que si alguien tiene unos minutos y puede meter en un zip o un rar los pantallazos y compartirlos seria estupendo.

Y si nadie puede...Pasadmelas que ya las subo YO!!! raulet18@hotmail.com

Muchas Gracias a todos.
Un SapLudo!:cool:

osoublette
19/05/08, 23:14:53
Hola a todos.
Les comento que yo tambien estoy próximo a presentar el examen de certificacion ABAP, por lo que me ayudarían mucho si me pasan esos pantallazos. Mi correo es osoublette@gmail.com.
De antemano muchas gracias.
Saludos !!!!!

Alison
17/06/08, 17:52:07
Podrían pasarme los screenshots del examen de certificación a ACABANELAS@YAHOO.COM. Desde ya muchas gracias.

atomv
20/06/08, 17:26:35
Se agradece. muiy buen esfuerzo espero a todos les ayude tanto como a mi.

Saludos a toda la gente...

Me voy a estrenar en en el foro por la puerta grande, ya que veo que la gente no se anima a publicar las respuestas de las preguntas que Trace nos ha facilitado...Gracias Crack! asi que creo que toca estrenarse en el foro rompiendo un poco el hielo.

Asi que, alla van!!! estas respuestas estan cotejadas por un Junior como yo :) y mi compi Senior asi que, seguramente esten bien la mayoria...Por favor si encontrais algun error seguid este post y debatimos las mas chungas.

SALUDOS DESDE VALENCIA!!!:D

(Por favor si alguien encuentra por ahi mas preguntas de Examenes mas recientes por favor ke COMPARTA!!!, Gracias)

DavidXD_XD
20/06/08, 20:30:08
Hola foro, yo tbm toy proximo a certificarme en ABAP, xfas les agradeceria si me pueden enviar los screenshots a mi correo dcarballido@bizpartner.biz, muchisimas gracias de antemano :D

ordazjl
02/07/08, 16:20:19
Hola raza, yo tmb estoy proximo a certificarme en ABAP, por favor les agradeceria si me pueden enviar los screenshots a mi correo doblejl@yahoo.com.mx, muchisimas gracias por su apoyo.Saludos

Alfredosite
04/07/08, 19:32:57
SAP ABAP FAQ - Frequently Asked Questions
The ANSWERS is in BOLD.
Please note that not all questions have answers.

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 PROGRAM

3. Name the type of ABAP Dictionary table that has these characteristics:
Same number of fields as the database table
Same name as database table
Maps 1:1 to database table

A: Pooled
B: Cluster
C: Transparent
D: View

4. An event starts with an event keyword and ends with:

A: Program execution.
B: END-OF-EVENT.
C: Another event keyword.
D: END-EVENT.

5. What is the system field for the current date?

A: SY-DATUM
B: SY-DATE
C: SY-DATID
D: SY-SDATE

6. The following code indicates: A
SELECT fld1 fld2 FROM tab1 APPENDING TABLE itab WHERE fld1 IN sfld1.

A: Add rows to the existing rows of itab.
B: Add rows to itab after first deleting any existing rows of itab.
C: Select rows from tab1 for matching itab entries.
D: Nothing, this is a syntax error.


7. You may change the following data object as shown below so that it equals 3.14.
CONSTANTS: PI type P decimals 2 value '3.1'.
PI = '3.14'.

A: True
B: False

8. The SAP service that ensures data integrity by handling locking is called:

A: Update
B: Dialog
C: Enqueue/Dequeue
D: Spool

9. Which of these sentences most accurately describes the GET VBAK LATE. event?

A: This event is processed before the second time the GET VBAK event is processed.
B: This event is processed after all occurrences of the GET VBAK event are completed.
C: This event will only be processed after the user has selected a basic list row.
D: This event is only processed if no records are selected from table VBAK.


10. Which of the following is not a true statement in regard to a hashed internal table type?

A: Its key must always be UNIQUE.
B: May only be accessed by its key.
C: Response time for accessing a row depends on the number of entries in the table.
D: Declared using internal table type HASHED TABLE.

11. TO include database-specific SQL statements within an ABAP program, code them between:

A: NATIVE SQL_ENDNATIVE.
B: DB SQL_ENDDB.
C: SELECT_ENDSELECT.
D: EXEC SQL_ENDEXEC.

12. To measure how long a block of code runs, use the ABAP statement:

A: GET TIME .
B: SET TIME FIELD .
C: GET RUN TIME FIELD .
D: SET CURSOR FIELD .

13. When a secondary list is being processed, the data of the basic list is available by default.

A: True
B: False

14. Given:
DATA: BEGIN OF itab OCCURS 10,
qty type I,
END OF itab.

DO 25 TIMES. itab-qty = sy-index. APPEND itab.
ENDDO.

LOOP AT itab WHERE qty > 10.
WRITE: /1 itab-qty.
ENDLOOP.

This will result in:

A: Output of only those itab rows with a qty field less than 10
B: Output of the first 10 itab rows with a qty field greater than 10
C: A syntax error
D: None of the above

15. After a DESCRIBE TABLE statement SY-TFILL will contain

A: The number of rows in the internal table.
B: The current OCCURS value.
C: Zero, if the table contains one or more rows.
D: The length of the internal table row structure.

16. You may declare your own internal table type using the TYPES keyword.

A: True
B: False

17. After adding rows to an internal table with COLLECT, you should avoid adding more rows with APPEND.

A: True
B: False

18. Which of the following is not a component of control break processing when looping at an internal table?

A: AT START OF
B: AT FIRST
C: AT LAST
D: AT NEW

19. A dictionary table is made available for use within an ABAP program via the TABLES statement.

A: True
B: False

20. Which of the following would be best for hiding further selection criteria until a function is chosen?

A: AT NEW SELECTION-SCREEN
B: SELECTION-SCREEN AT LINE-SELECTION
C: SUBMIT SELECTION-SCREEN
D: CALL SELECTION-SCREEN

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)?

A: ON INPUT
B: CHAIN
C: FIELD
D: ON REQUEST

22. The AT USER-COMMAND event is triggered by functions defined in the ____.

A: screen painter
B: ABAP report
C: menu painter status
D: ABAP Dictionary

23. In regard to a function group, which of the following is NOT a true statement?

A: Combines similar function modules.
B: Shares global data with all its function modules.
C: Exists within the ABAP workbench as an include program.
D: Shares subroutines with all its function modules.

24. In regard to SET PF-STATUS, you can deactivate unwanted function codes by using ____.

A: EXCLUDING
B: IMMEDIATELY
C: WITHOUT
D: HIDE

25. In regard to data transported in PAI when the FIELD statement is used, which of the following is NOT a true statement?

A: Fields in PBO are transported directly from PAI.
B: Fields with identical names are transported to the ABAP side.
C: Fields not defined in FIELD statements are transported first.
D: Fields that are defined in FIELD statements are transported when their corresponding module is called.

26. The order in which an event appears in the ABAP code determines when the event is processed.

A: True
B: False

27. A field declared as type T has the following internal representation:

A: SSMMHH
B: HHMMSS
C: MMHHSS
D: HHSSMM

28. Which of the following is NOT a component of the default standard ABAP report header?

A: Date and Time
B: List title
C: Page number
D: Underline

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?

A: AT USER-COMMAND.
B: AT PFn.
C: AT SELECTION-SCREEN.
D: END-OF-SELECTION.

30. In regard to field selection, what option of the SELECT statement is required?

A: FOR ALL ENTRIES
B: WHERE
C: INTO
D: MOVE-CORRESPONDING

2terry1
02/10/08, 15:46:06
Hola a todos....
me certifique el viernes pasado de ABAP y tengo un BUENISIMO materialde verdad... con sus respuestas y todo...
Bueno los que esten interesados manden un correo a Er3c70@hotmail.com o a arcs2105@gmail.com
de verdad es muy buen material...
Saludos! :)

lamosquita
10/11/08, 16:14:55
Podes subir lo que guardaste? o mandar por mail?
Gracias :)

hola hace 10 dias me certifique en ABAP y pude guardar unos screenshots de las preguntas del examen son alrededor de 40 preguntas,nose si a alguien les interesa,es asi como tal el examen je

raul.gomez
01/04/09, 20:33:07
Agradeceria que me enviaran los screen desde ya muchas gracias

raul.gomez@live.cl :D

marc_rmz
16/04/09, 02:14:34
lo siento no habia podido subirlas y mandarselas el trabajo pero aqui las subo para que se descarguen directamente

bueno no pude subirlo al foro pero lo subi a otro lugar
son 39 preguntas

disculpen si no les hice caso pero aqui esta

http://rapidshare.com/files/221874323/exa.rar

ojo no todas las preguntas estan correctas lo cual sugiero que las chequen muy bien.

o21joaco
28/04/09, 22:43:48
chequen http://www.codeexcellence.com/.

Muy buena.

Luz031
05/06/09, 07:21:23
Hola amig@s:


Aqui os dejo algunas mas, para entretenimiento.



143

Espero que os sirva, saludos.

hola amigo oye porfis estoy a punto de mi examen de certificacion no se si me podrias proporcionar las preguntas que dices grax

checolin_84
24/08/09, 15:46:33
disculpen si no es molestia tambien quisiera los screenshots!! checolin_84@hotmail.com de antemano muchas gracias

ferney23
08/02/10, 16:45:16
No se me gusrria intercamiar los scren show del exaen de abap para discutir las repuestas
si alguien desea escribanme a ferney23@hotmail.com

para discutir las respuestas y ver cual es la correcta

conrad10ar
08/02/10, 18:44:09
Acá les dejo unas cuantas preguntas más:

Preguntas certificación SAP ABAP

Saludos!

pancho2909
30/10/10, 13:29:48
Hola, Me podrias enviar los screenshots tambien?

Te dejo mi correo: psychic_2909@yahoo.com.ar

Muchas Gracias

cramr
24/11/10, 07:37:35
Entonces para aprobar el examen hay que tener bien el 70% no?

Sigue habiendo preguntas con dos rspuestas??

Es que me examino el mes que viene en la certificación de ABAP

mdinamarca
07/03/11, 16:21:48
Hola, también estoy interesado en los screenshots me los podrían enviar a mi mail madinamarca@hotmail.com desde ya muchas gracias.. saludos.-

jmikelbalto
24/08/11, 15:26:50
hola hace 10 dias me certifique en ABAP y pude guardar unos screenshots de las preguntas del examen son alrededor de 40 preguntas,nose si a alguien les interesa,es asi como tal el examen je

hola q tal estoy apunto de presntaar el examen de certificacion podrias ayudarme psando los scrrenshots por favor te lo agardeceria infinitamente muchas gracias mi correo es dreicon_4444@hotmail.com

dagoca
26/09/11, 21:07:43
Me los podrian enviar a mi correo dagoca200@gmail.com Se lo agradeceria muchisimo!

MARIALUDYBENJUMEAGUEVARA
16/11/11, 14:28:17
Hola buenos dias


con toda atenciòn solicito orientaciòn me encuentro nueva en el mundo SAP me puede orientar por donde empiezo para ir conociendo del tema, cuales deberian de ser mis primeras clases. me encuentro con mucha expectativa por conocer del tema pero no se por donde empiezo. le agradezco cualquier informaciòn


cordialmente,


MARIA LUDY BENJUMEA GUEVARA

Yanina Rada
11/04/12, 15:26:42
Hola, también estoy interesada en los screenshots me los podrían enviar a mi mail yani.arg@gmail.com desde ya muchas gracias.
Saludos.-

ernestogarmendia
15/05/13, 17:36:31
Hola, también estoy interesado en los screenshots me los podrían enviar a mi mail ---- desde ya muchas gracias.
Saludos.

mltinoco
29/05/13, 22:04:03
alguien me puede pasar los screen shots a .....
No está permitido anotar correos personales, ya que generan flood y spam en los foros

Gracias.:)

NITJM
08/08/13, 08:34:14
hola a tudo el mundo SAp...
yesterday i get the MM SAp certification!:D
Adios

Congratulation NIKOK.

Yo quería preguntarte si a la certificación de ABAP te puedes presentar por tu cuenta , si preparártela es muy complicado y si es muy caro.

Saludos,

msan2212
08/08/13, 08:55:36
Hola NITJM,

si no recuerdo mal eso viene en la web de SAP, y creo q son 420 euros más iva.

Para prepararte la certificación de ABAP lo que necesitas son los TAW10, TAW 12 y NET310, al menos con esos aprobé la certificación este año. También es recomendable el TAW11.

Si me pasas tu correo puedo enviartelos.

Un saludo

ruben.ramiro
25/09/13, 22:31:35
Hola NITJM,

si no recuerdo mal eso viene en la web de SAP, y creo q son 420 euros más iva.

Para prepararte la certificación de ABAP lo que necesitas son los TAW10, TAW 12 y NET310, al menos con esos aprobé la certificación este año. También es recomendable el TAW11.

Si me pasas tu correo puedo enviartelos.

Un saludo

Yo tengo pensado certificarme al final de año, estoy haciendo un curso ABAP, pero quiero presentarme por mi cuenta a la certificación, prodigas enviármelo a mi también porfavor. Otra cuestión, estoy perdidisimo y tras ver el contenido del taw10 y taw12, no se donde buscar materias para estudiar, cuales son tus consejos, muchísimas gracias. Y si puedes por favor , te agradecería que me mandases lo poco que puedas a extradibarius@hotmail.com .
Gracias de antemano por todo.

fgarcia763
21/10/13, 20:36:41
Hola NITJM,

si no recuerdo mal eso viene en la web de SAP, y creo q son 420 euros más iva.

Para prepararte la certificación de ABAP lo que necesitas son los TAW10, TAW 12 y NET310, al menos con esos aprobé la certificación este año. También es recomendable el TAW11.

Si me pasas tu correo puedo enviartelos.

Un saludo

Holaaa Me los puedes enviar al correo fgarcia763@gmail.com muchas gracias

ximena251
17/12/13, 17:22:48
Hola a mi me gustaría que me mandaran preguntas y las pantallas, quisiera estudiar en ellas para presentar mi examen abap.

ximena.mariles@outlook.es

Gracias de antemano

rugarmen
23/01/14, 06:49:20
Yo quiero certificarme dentro de poco y quiero saber si me puedes apoyar con el material que indicas.
mi correo es rugarmen@gmail.com
hola hace 10 dias me certifique en ABAP y pude guardar unos screenshots de las preguntas del examen son alrededor de 40 preguntas,nose si a alguien les interesa,es asi como tal el examen je

tate
11/02/14, 10:02:53
Alguien me lo podria mandar a mi tambien?? me gustaria presentarme y ver como es el examen.

Mi correo es: david_1983mad@hotmail.com

Gracias

HectorGA
25/02/14, 04:20:12
Que tal, me puedes pasar por favor estos cursos a mi correo, es el h.gavila@yahoo.com, gracias e antemano

Hola NITJM,

si no recuerdo mal eso viene en la web de SAP, y creo q son 420 euros más iva.

Para prepararte la certificación de ABAP lo que necesitas son los TAW10, TAW 12 y NET310, al menos con esos aprobé la certificación este año. También es recomendable el TAW11.

Si me pasas tu correo puedo enviartelos.

Un saludo

dariofo77
10/04/14, 13:13:48
Hola,

yo me presenté el viernes de la semana pasada, suspendiéndolo (38% de aciertos), ¿me podrías pasar la documentacion de los TAW10, TAW12 y TAW11?, por favor. Te he enviado mi dirección de correo electronico por mensaje privado.

No pude copiar ninguna pregunta porque se pusieron muy estrictos con las hojas que se podían utilizar, teniendo que entregarlas al terminar el examen, la próxima vez estaré más vivo e intentaré sacar algunas :P.

Muchas gracias

agor
15/06/14, 11:25:16
Hola,

Yo tambien te he enviado mi correo por privado por si pudieses enviarme los manuales. MUchas gracias

lucasagar
23/09/14, 08:24:32
Hola,
Hay alguien que tenga las ultimas versiones de los TAW10 y TAW12 ?
Yo solo tengo la versión del 2008. Se que hay una version del 2011-2013 pero soy incapaz de encontrarla.
Un saludo.

fbueno
25/09/14, 14:15:37
Hola NITJM,

si no recuerdo mal eso viene en la web de SAP, y creo q son 420 euros más iva.

Para prepararte la certificación de ABAP lo que necesitas son los TAW10, TAW 12 y NET310, al menos con esos aprobé la certificación este año. También es recomendable el TAW11.

Si me pasas tu correo puedo enviartelos.

Un saludo

Hola, mi correo es msanchez@seidor.es yo también estoy interesado en tus manuales.

Muchas gracias

amilan
26/09/14, 03:09:57
Buen dia, saben donde puedo tomar en Cd. de Mexico cursos de ABAP-SAP

gracias

alonso.a
18/10/14, 11:28:17
Buenos días a todos!

Alguien dispone de las preguntas del examen de certificación sap ABAP? En castellano. He encontrado algunos hilos, pero son todos bastante antiguos, no se si algo habrá cambiado...
Muchas gracias de antemano si alguien puede ayudarme!http://www.mundosap.com/foro/images/icons/icon7.gif

alonso.a
24/10/14, 07:29:58
Fueron subidas o comentadas las respuestas de este test?

Gracias!

jamiguel77
19/01/15, 18:25:31
Me interesa tambien.

Saludos.

tate
11/03/15, 15:51:56
Si alguien me pudiera mandar los manuales para la certificacion Abap en castellano, se lo agradeceria.

Mi correo es: davidsh83@gmail.com

Un saludo y gracias.

Anthony Martinez
05/06/15, 04:24:54
Buenas noches, si hay alguno que haya tocado el mismo caso que estoy viendo agradecería su ayuda, sucede que necesito una función o método para leer el contenido web de una URL.
Me explico: necesito hacer un programa abap al que yo le ingrese una URL(dirección web) y que luego el programa tenga la capacidad de poder devolverme las lineas de texto de lo que contenga la pagina web de la dirección web que ingrese.

Saludos

ditek
01/12/16, 14:43:39
Hola amigos, existen algunas preguntas mas de la certificación ABAP actualizadas?? Un saludo!!

bzstyle
23/09/20, 13:53:06
hola amigo como están espero que muy bien , soy nuevo en el foro la verdad encima es la primera ves en mi vida que entro en un foro jaja . pero me urge una solución me estoy por capacitar en abap4 y no puedo encontrar el MINISAP por ningún lado la verdad todos los links que se encuentran esta caducados hasta uno que tienen en un tema de este foro que donde hablan del minisap , bueno ojala puedan ayudarme desde ya muchas gracias :)

xavirl.2011
16/01/21, 08:01:16

youngny16
08/06/22, 02:27:25
Big Ass Photos - Free Huge Butt Porn, Big Booty Pics
http://animevirginpornkurten.alexysexy.com/?melany
porn star listing blackcat lesbian porn hendrix porn porn dvds euro italian download jackhammer porn

Kaostic
13/03/24, 04:02:49
No strings attached relationships, relax and enjoy
Actual Women