MUNDOSAP

MUNDOSAP (foro/index.php)
-   Programación ABAP IV (foro/forumdisplay.php?f=4)
-   -   Ahi van unas cuantas preguntas del examen de certificación de abap (foro/showthread.php?t=3585)

atomv 20/06/08 18:26:35

Gracias
 
Se agradece. muiy buen esfuerzo espero a todos les ayude tanto como a mi.


DavidXD_XD 20/06/08 21:30:08

Hola foro, yo tbm toy proximo a certificarme en ABAP, xfas les agradeceria si me pueden enviar los screenshots a mi correo , muchisimas gracias de antemano :D

ordazjl 02/07/08 17:20:19

Gracias
 
Hola raza, yo tmb estoy proximo a certificarme en ABAP, por favor les agradeceria si me pueden enviar los screenshots a mi correo , muchisimas gracias por su apoyo.Saludos

Alfredosite 04/07/08 20:32:57

algunas respuestas
 
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 16: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 o a
de verdad es muy buen material...
Saludos! :)

lamosquita 10/11/08 17:14:55

Hola
 
Podes subir lo que guardaste? o mandar por mail?
Gracias :)


raul.gomez 01/04/09 21:33:07

Screenshots
 
Agradeceria que me enviaran los screen desde ya muchas gracias

:D

marc_rmz 16/04/09 03:14:34

screenshots de mi examen
 
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



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

o21joaco 28/04/09 23:43:48

Chequen http://www.codeexcellence.com/
 
chequen .

Muy buena.

Luz031 05/06/09 08:21:23

holaaa
 

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 16:46:33

yo tambien
 
disculpen si no es molestia tambien quisiera los screenshots!! de antemano muchas gracias

ferney23 08/02/10 17:45:16

examen de abap
 
No se me gusrria intercamiar los scren show del exaen de abap para discutir las repuestas
si alguien desea escribanme a

para discutir las respuestas y ver cual es la correcta

conrad10ar 08/02/10 19:44:09

Acá les dejo unas cuantas preguntas más:



Saludos!

pancho2909 30/10/10 14:29:48

Screenshots
 
Hola, Me podrias enviar los screenshots tambien?

Te dejo mi correo:

Muchas Gracias

cramr 24/11/10 08: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 17:21:48

Hola, también estoy interesado en los screenshots me los podrían enviar a mi mail desde ya muchas gracias.. saludos.-

jmikelbalto 24/08/11 16:26:50

hola marc
 

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

dagoca 26/09/11 22:07:43

scrrenshots
 
Me los podrian enviar a mi correo Se lo agradeceria muchisimo!

MARIALUDYBENJUMEAGUEVARA 16/11/11 15:28:17

Solicitud
 
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 16:26:42

Info para la certificacion
 
Hola, también estoy interesada en los screenshots me los podrían enviar a mi mail desde ya muchas gracias.
Saludos.-

ernestogarmendia 15/05/13 18: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 23:04:03

screen shots
 
alguien me puede pasar los screen shots a .....

Gracias.:)

NITJM 08/08/13 09:34:14


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 09: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 23:31:35

Buscando material para taw10, taw12
 

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 .
Gracias de antemano por todo.

fgarcia763 21/10/13 21:36:41


Holaaa Me los puedes enviar al correo muchas gracias

ximena251 17/12/13 18:22:48

Preguntas
 
Hola a mi me gustaría que me mandaran preguntas y las pantallas, quisiera estudiar en ellas para presentar mi examen abap.



Gracias de antemano

rugarmen 23/01/14 07:49:20

Puedes ayudarme con los screenshots
 
Yo quiero certificarme dentro de poco y quiero saber si me puedes apoyar con el material que indicas.
mi correo es

tate 11/02/14 11:02:53

Alguien me lo podria mandar a mi tambien?? me gustaria presentarme y ver como es el examen.

Mi correo es:

Gracias

HectorGA 25/02/14 05:20:12

Que tal, me puedes pasar por favor estos cursos a mi correo, es el , gracias e antemano


dariofo77 10/04/14 14: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 12:25:16

Hola,

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

lucasagar 23/09/14 09: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 15:15:37


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

Muchas gracias

amilan 26/09/14 04:09:57

Abap-sap
 
Buen dia, saben donde puedo tomar en Cd. de Mexico cursos de ABAP-SAP

gracias

alonso.a 18/10/14 12:28:17

Certificación SAP ABAP
 
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!

alonso.a 24/10/14 08:29:58

test
 
Fueron subidas o comentadas las respuestas de este test?

Gracias!

jamiguel77 19/01/15 19:25:31

Me interesa tambien.

Saludos.

tate 11/03/15 16:51:56

Si alguien me pudiera mandar los manuales para la certificacion Abap en castellano, se lo agradeceria.

Mi correo es:

Un saludo y gracias.

Anthony Martinez 05/06/15 05:24:54

Leer contenido web con SAP
 
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


Husos Horarios son GMT. La hora en este momento es 15:26:42.

www.mundosap.com 2006 - Spain
software crm, crm on demand, software call center, crm act, crm solutions, crm gratis, crm web