My journey to ABAP Certification

My journey to ABAP Certification

Check out the article to read my experience of certification exam.It includes the questions asked in exam along with the answers.

Author : Raj

Author's Website | Articles from Raj

Raj is an Application Developer focusing on Custom Development - particularly in the areas of ABAP ,WD4A , JAVA , APO , Enterprise services and PI Developer/consultant . He is also certified in ABAP and PI. FacebookTwitter

<p>Exam time</p>

My heart was beating at a speed of 110 beats per min. As my exam was about to begin. Thousand of thoughts were whirling in my mind (and why not,  I was appearing for the certification with only one month of preparation). So at that time the next 3 hours were going to decide whether I am impotent in abap or not.

So here comes the first question , It was the most simplest question one could ever encounter.

1. You have newly joined a development team and your team member is developing a report. He wants to put the validation for the vendor No. In which event he should put the error message so that in case when wrong vendor is entered error message should appear and focus the cursor on that field.

A.   Start-of-selection
B.  End-of-selection
C.  At selection screen on field
D.  Initialization

It boosted  my confidence  and the answer is : C . At selection screen on  field.

2 . Business want to change the F1 help for the field for all Reports At what level you will change So that it reflect for all place.

A. Domain
B.  Data element
C.  Change all table field
D. Code at selection screen on help-request in all the reports

As data element store the schematic information.  It can be used and the idea of changing the code of all reports with D option is useless .So the answer is : B  Data element

3.   which statement can be used to read a single record from the internal table.

A. Move it_tab to wa_taab with <i>.
B. Read table it_tab into wa_tab index <i>.
C. Move-corrosponding it_tab to it_taab1.
D. None of the above.

The answer is : B

4.  Which one of these event will be triggered first when you execute the program ?

A. INITIALIZATION
B. LOAD-OF-PROGRAM
C. START-OF-SELECTION
D. END-OF-SELECTION

This one also does not take much time as loading of the program is the first thing which is done and after that it will start looking into the code. So the answer is : LOAD-OF-PROGRAM

5. What is the valid combination among these for SAP R/3.

A. 2 –Application server and 1-data base server
B. 2-database server and 1- Application server
C. 2-Application server and 2-Database server
D. 3-Application Server and 2-Database server

The question is not that clear but As far as SAP is concern it believes in Central instance, So answer is A.

6.  There is one function group name AG which contains three function module FM1 ,FM2 and  FMR .It also has one global variable Gl_val .FM1 and FM2 has a simple code of adding  1 into that variable And FMR has the code of returning that global variable.

So what will be the output of falling code.

Report test_fungrp.

Data : gl_val type i.

Data : ret_val type i.

Call Function FM1.

Clear gl_val.

Call Function FM2.

Call function FMR importing VAL = Ret_val.

Write : / Ret_val.

A. 1
B. 2
C. 3
D. 4

HHhmmm…need to use little mind in this As function Group will have only one instance through out the program run so only one copy of that global variable: Answer is : b.2

7. Which layer will be used to convert the OPEN SQL into the database specific query.

A. WORK Process
B. DATA BASE interface
C. ABAP interprter
D. None of the above

Answer is : B. Data base interface (that will be used to make SAP database independent)

8. You have 10 records into the internal table .you want to make use of loop statement to loop through all the records which system variable can be used to find out the loop iteration?

A. SY-INDEX
B. SY-DATUM (What a option !!!!!!!! )
C. SY-TABIX
D. None of thee above

SO ……Easy Right ??? Answer is C.: SY-TABIX

9. Can database view used to fetch the data from the database using SELECT Query?

A. True
B. False

Anser is : A. True

10. In Case of Webdynpro for ABAP how will you map context Attribute of view container and component container?

A. Double click on that
B. Drag it to the another container’s context
C. Wirte the mapping path into context’s attribute
D. You cannot mape.

I know you want to kill me !!!!! but this question was there…Any way answer is clear it is B.

11. Which one of the following will contain user interface.

A. Model.
B. Component container
C. Window
D. View

Answer is : D.

12. Which are of those are GUI types in SAP.

A. HTML GUI
B. JAVA based GUI
C. Windows GUI
D. Web GUI

Hmm….Theory wins :: Answer Are : A,b,c.

13. Parameter id is assigned at what level?

A. Domain
B. Data element
C. Field level
D. None of the above

Answer is : B.

14. Which of these are correct statements for SELECT-OPTIONS  and RANGES.

( There are 3 correct answers)

A. SELECT-OPTIONS will generate ranges internal table implicitly.
B. RANGES statement will generate ranges internal table explicitly.
C. The structure of the internal table generated by SELECT-OPTIONS and RANGES are the same (contain SIGN,OPTIONS,LOW and HIGH)
D. The structure of the internal table generated by SELECT-OPTIONS and RANGES are different.
Answer are :  A,B,C

15. What is the format of the system date variable sy-datum?

A. YYYYMMDD
B. MMDDYY
C. YYMMDD
D. DDMMYYYY

I know it is pure theory question but what can be done: Answer is A.

16. What will be the output of the following code for the user has a date format as DD-MM-YYYY? (Assume today’s date is 14th Feb 2010 !!!!!!! )

Report test_date.

Write : / sy-datum.

A. 2010-02-14
B. 20100214
C. 14-02-2010
D. 02-14-2010

Answer is : C.

Suddenly i went back to  time when i was preparing for the exam…what will be the answer of this question if I change the code as below::

Report test_date.

Data : lv_date like sy-datum.

Lv_date = sy-datum.

Write : / lv_date. “(Try it out ….. )

And what about if i use lv_date as char 8.(In this case answer is : 20100214)

17. You are working on a program which is updating the database now you want that if something goes wrong you want that your code should be capable of reverting the changes done in database, which statements can be used to achieve this?

(There are two correct options)

A. Commit Work.
B. Roll Back Work.
C. Message ‘Changes aborted’ Type ‘A’.
D. Message ‘Changes aborted’ type ‘I’.

Answers are : B,C.

18. you want to declare a variable which can be used out side class globally but no one should be allowed to change that variable except the method of that class.how you can achieve this ?

A.  class class_name Definition.
Public section.
Data : gl_var type i.
Endclass.
B.  class class_name Definition.
Proteced section.
Data : gl_var type i.
Endclass.
C.  class class_name Definition.
Public section.
Data : gl_var type i hidden.
Endclass.
D. class class_name Definition.
Public section.
Data : gl_var type i read-only.
Endclass.

Answer Is : D.

19. There is a screen 500 with next screen set as 501 in it’s screen attribute. Business want that in some of the condition instead of going to screen 501 it should go to screen 502 after screen 500 finish it’s execution .how will you achieve this?

A. Use statement LEAVE TO SCREEN 502. in PBO of screen 501.
B. Use statement SET SCREEN 0. In PAI of screen 500.
C. Use statement SET SCREEN 502. IN PAI of screen 500.
D. It is not possible to over right the next screen attribute set into screen 500.

Appropriate answer is C.

As it will override the next screen attribute set into the screen 500.

20. you want to hide a P_MATNR field from the screen how will you achieve it?

A. LOOP AT SCREEN WHERE NAME = ‘P_MATNR’.
SCREEN-ACTIVE = 0.
MODIFY SCREEN.
ENDLOOP.
B. LOOP AT SCREEN.
If SCREEN-NAME EQ ‘P_MATNR’.
SCREEN-ACTIVE = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
C. LOOP AT SCREEN WHERE NAME = ‘P_MATNR’.
SCREEN-ACTIVE = 0.
ENDLOOP.
D. READ TABLE SCREEN WITH KEY NAME = ‘P_MATNR’.
SCREEN-ACTIVE = 0.
MODIFY SCREEN.

So seams tricky??? But for SCREEN it is only possible to use LOOP AT SCREEN. “where” condition in LOOP and “read table” statement with screen is not at all possible So

Answer is B.

21. A database table without MANDT field is called?(Select most appropriate anser)

A. Client dependent
B. Client in-dependent
C. Structure (What an option!!!!!!!!!!)
D. Database View.

Answer is : B.

22. To define the internal table using statement: Data : it_tab type XYZ

Where XYZ should be of type.

A. Data base table
B. Structure
C. Table type
D. View

Answer is : C. (As Rest will define work area not the internal table.)

23. Internal table ITAB has the following data

Name                    Salary

John                      80000

Bob                        20000

Amar                     10000

David                     50000

What will be the sy-subrc in following case.

Read table ITAB into WTAB with key Name = ‘David’ using binary search.

A. 0
B. 4
C. 8
D. 12

As the mandatory condition to use binary search in internal table is that it should be sorted.

Without sorteing it will lead to incorrect result.

So answer is : B

(Note: what will be answer if you read ITAB without binary search? )

24. Business want to put validation on plant No. For all the screen. The requirement is to give Error message whenever user give plant 567.what can be most appropriate way to achieve this?

A. Screen EXIT
B. Function module EXIT
C. Field EXIT
D. USER EXIT

Answer is: C.

25. Which all statements are true for BADI.?

(There are 3 correct answers)

A. You can use filter to choose the implementation you want to call.
B. BADI cannot have multiple implementations.
C. BADI can be reusable.
D. BADI can be filter dependent.

Answers are: A, C, D.

26.  Choose the correct statements for BAPI.

A.  BAPIs are the methods of Business Objects.
B.  BAPIs can be called from Java Application.
C. BAPI is interface which contain methods and data declaration.
D. You can redefine the BADI as per your choice.

Answers are: A, B.

Ok…..Now i don’t remember any more questions ,Any way its not my fault, once a person gets 90% its become very difficult to spend time on remembering and writing the questions of exam than partying!!!!!!!

Related Posts



Like this post? Share it!

  • Tweet
  • Facebook
  • Diggit
  • Delicious
  • Diggit
  • Diggit
  • Diggit
  • Diggit
  • Diggit

ADVERTISE HERE


User Comments


  1. Lakshmi
    August 6, 2011

    Hi Raj,
    Referred to the material “how to prepare for ABAP certification”. Found it useful..but I am planning to appear for  SAP ABAP c_TAW12_04 exam in the month of September. Can u plz guide me on how to prepare for the same.. My mail id is:

    Thanks in advance,
    Lakshmi
     

    Reply


  2. Suresh Kumar
    August 6, 2011

    Please send me the certification material

    Reply


  3. Joy
    August 10, 2011

    Hi Raj,
    Congrats for your success in Certification exam. Plz send me the material so that i can also clear the exam.
    my Email Id: joybhuiya@gmail.com

    Cheers…..

    Reply


  4. Manish
    August 12, 2011

    Hi Guys,

    Please send me the abap cerification material.

    Thanks in advance

    Manish

    Reply


  5. yogendra
    August 12, 2011

    Hello Raj,
    Will you please send me sap abap certification material….i am preparing for certification.
    my e-mail id is    yogendrasinghc7@gmail.com
    Thanks
     

    Reply


    • Raj
      August 18, 2011

      Hi All,
      Check out the Article :

      http://sapignite.com/how-to-prepare-for-abap-certification/

      Thanks
      Raj

      Reply


      • anand pareek
        September 23, 2011

        hi Raj,
        i m a b.tech fresher i’ll make my mind to go for the sap certification so will u please help me, that after the successful completion of certification with good percentage can i have the good job opportunities in mnc’s for which m’ seeking for. pls provide ur precious suggestion.
        my email id is ::anand.pareeek1@gmail.com

        Reply


        • Raj
          September 23, 2011

          Hi Anand,
          As a fresher , doing the sap certification will be costly as it will need around 2 lakhs **depends on the certification.
          mostly siemens and NIIT offer the job also along with that.but i will suggest you to confirm the same.
          with out placement guarantee don’t jump into the certification(**but if you are ready to find placement by your own , you can try But it will be
          Difficult )

          Thanks..
          ~Raj
          SAP IGnite.

          Reply


          • anand pareek
            October 2, 2011

            hello Raj,
            great to have ur reply, as per ur guidance i’ll confirm the information from simens, mumbai they told me that after the successfull completion of certification there is approx 95% of students are being placed, raj can u pls tell me that before going for ABAP what are the essential languages which i have to go through like I think for ABAP c ,c++ and sql are some of the basic requirments pls suggest what else i need with them.
            Thanks again.
            ~Anand
             
             



          • anand pareek
            October 2, 2011

            Raj,
            can u also mail me the  TAW11 and C_TAW12_70 related study material or anything that helps to understand that course better. help appreciated.
            Thanks.
            ~Anand



  6. Ashish
    August 13, 2011

    Hi,
    I am planning to pursue ABAP training from Siemens,Delhi. I would like to go prepared for the training and would be thankful if you can send me study material and certification question and also guidelines to pass with good percentage.
    Regards
    email at : tripathiashish_85_2006@yahoo.co.in
     

    Reply


  7. Narendar
    August 25, 2011

    Hi Raj,

    I want to take ABAP certification in assoicate level.
    could you please send related materials (TAW10, TAW11, TAW12)

    Thanks, Naredar

    Reply


    • Raj
      August 25, 2011

      Hi ,
      Check out the Article :

      http://sapignite.com/how-to-prepare-for-abap-certification/

      Thanks
      Raj

      Reply


      • kaushik16
        December 14, 2011

        Hi Raj,

        I am looking help to get job in SAP HR with ABAP..I did SAP HR from Toronto and now planning get certification..But I would llike to learn and get your email contact for online study in SAP ABAP .

        Kaushik
        k.bhatt@yahoo.com

        Reply


        • Raj
          December 14, 2011

          hi kaushik…
          right now we don’t have any online course for sap abap .
          will surely update you encase we start any classes for abap.
          Encase you encounter any queries regarding abap learning.
          you can drop a mail to webmaster@sapignite.com.

          thanks
          Raj
          SAP IGnite

          Reply


  8. Kevin
    August 29, 2011

    I would love to have the TAW courses but the most recent version for NetWeaver 7.0 you can email me at wouwou [AT] gmail [DOT] com
    Thx!

    Reply


  9. Savvy
    September 22, 2011

    Hi Raj,
    I’m interested in taking C_TAW12_70 certification. So I’m wondering how much of the TAW10-12 material is relevant for the recent exam. Please opiniate or post your suggestion.
    Also kindly send TAW11 and any C_TAW12_70 related study material

    Many thanks.
    Savvy.

    Reply


  10. Savvy
    September 26, 2011

    Raj,Thanks a lot for sending the material. Savvy. :-)  

    Reply


  11. Saurabh
    October 2, 2011

    Dear All,
    First of all I want to Thank the “http://sapignite.com/how-to-prepare-for-abap-certification”  for giving me guidelines about the examination .
    I had Cleared my SCDA Examination With the help of SAP Certified Development Associate — ABAP with SAP NetWeaver Book . this books works great for me ..
    *Remove by admin*

    Reply


  12. Harish
    January 25, 2012

    Hello Guys,
    I recently cleared C_TAW12_04 certification.  I did it from JKT. They gave me placements also.  You can also check out there. Need any help with any documents or exam dumps. Contact me.
    Email: harish.sureesh@gmail.com

    Reply


  13. Aditya Bhargava
    February 27, 2012

    Hi Raj,
    Awesome Blog!! Loved it…  Have also gone through the Blog “How to prepare for ABAP certification”. Would request you to forward whatever material you have on SAP certification on my email id adityalnctindor@gmail.com as I have seriously taken up certification and targetted 20th April as the date for my certification.
    Looking forward for your email.
    Thanks in Advance,
    Aditya

    Reply


  14. Tushar
    March 1, 2012

    Hello Raj,
    I am B.E.IT fresher.Your blog is quite helpful, it has taken away my fear about ABAP certification, for past few days i have trying to be in contact with person who has completed the ABAP certification successfully and finally i found one. I am planning for SAP ABAP certification for that I have joined the training.Could you please send me the appropriate study material for certification exam. My email addr:  tushar.maskare@gmail.com
    And please do share some tips and opportunities for ABAP freshers.

    Reply


  15. shivani
    March 19, 2012

    Hi Raj,

    I am planning to prepare for sap abap certification.

    Can you please name this certificate and also share me the reamted material on my email .

    Please also let me know from where we can go for these certificates registraions +++..

    Thanks for time ly reply in advance.

    Reply


    • Raj
      March 20, 2012

      Hi Shivani ,

      Certification course is known as C_TAW12_70 / 71 **depending on the version.
      There are two ways :

      1.) Register yourself in SAP Teched and appear for the certification which will cost you Rs 13,750.
      It needs referal from your organization(Your L&D can give your more details regrading this)
      Also Check out the below link for more details:
      http://www.sdn.sap.com/irj/scn/sapteched

      2.) You can also appear for the Direct certification from SAP’s Training centers

      Certification fee for Associate level will be INR 38605/-.
      You can contact debarati.roy@sap.com person with your Resume.

      Please get back to us in case you need more details.
      Thanks.

      Reply


  16. Rosy
    April 9, 2012

    Hi Raj,
    I am almost daily visitor of your blog ..its wonderful and really helpful info for the one in SAP ABAP profession.
    I also wana do abap certification,could you please tell me the process to apply for the exam directly.I worked as an abap developer for 2 yrs.
    Waiting for ur reply
    thanks
     
     

    Reply


    • Raj
      April 9, 2012

      Hi Rosy,
      Thanks a lot for your feedback.
      Regarding your query on certification:
      You can directly contact to sap learning center..
      or you can wait for sap teched-2012 ( November ).
      In teched you will get discount too..

      Will Ty to update you with the link where you can apply
      online for the certification…

      Thanks
      Raj

      Reply


      • Rosy
        April 10, 2012

        Thanks for the reply.
        I tried to reach some of the sap learning centers like  NIIT and others and they told me that either I have to go through the full ABAP training to apply for exam or I should have full ETE project implementation experience in SAP.I have support projects experience
        I want to do the certification directly.Please suggest.
        Thanks
         
         
         

        Reply


  17. Ajinkya Ket
    May 2, 2012

    Hi Raj,
    First of all thanks for posting such a useful material and guiding tips.
    Can you please tell me whether you were having any working experience in ABAP before giving the exam? Is yes then whether that helped you in scoring so much marks?

    Reply


  18. Virendra Kedia
    May 27, 2012

    Hi Raj,
    My exam is on 7th june 2012. And I am not prepare for it. I have 1 year of experience in ABAP. Currently I am going through TAW series. Can you please provide me some websites where I can give mock tests so that I can have clear picture of preparations so far.
    I have visited codeexcellence website and given tests. But I need more websites of that kind.
    It will be very helpful for me if you provide me some tips/material so that I can achieve prestigious marks…. else my boss will ruin my appraisal :(
    Please send the links on my id me.virendrakedia@gmail.com
    Urgent suggestions required.
    Thanks and Regards
    Virendra Kedia

    Reply


    • Raj
      May 27, 2012

      Hello Virendra,

      Codeexcellence.com is one of the site where you can try out abap question to check your preparation.
      If you are comfortable with the question which are there in the article you need not to worry much,As certification questions will be
      like mentioned above.

      you have enough experience on abap to clear the exam , try to read the TAW* series books so that you are fine with all the topics.
      Also dont miss the basic over view of webdynpro for abap and unicode .

      Regarding exam : you have more thn enough time so no need to hurry during the exam.

      Best of luck with your exam

      Thanks & regards,
      ~Raj

      Reply


      • Virendra Kedia
        May 27, 2012

        Hi Raj,
        Thanks for your quick reply.  :-P
        I have given the mock test on codeexcellence 6-7 times. but my average score there is only 60%. I know that is not sufficient for clearing the exams. Thats why I am feeling low.
        I am studying the TAW series but the theory part is killing me. I have heard of one book by Puneet Asthana, in which only questions and answers are given for practice. Do you have that book’s pdf? If yes then kindly send it to my above mentioned mail id.
        What should I do to increase my confidence for the same?
         
        Thanks and Regards
        Virendra Kedia

        Reply


        • Raj
          May 27, 2012

          Hello virendra ,
          I dont have that book right now.
          Regarding your score its an average score.Still you have 2-3 weeks if you prepare defiantly you will be above avg.
          So dont worry about that.
          If you can buy that book from your compny library it will be helpful for you.Still its not mandatory .Try to finish TAW* books
          and do read sap help.

          Thanks & Regards ,
          ~Raj
          SAP IGnite

          Reply


          • Virendra Kedia
            May 28, 2012

            Hi Raj,
            Thanks for your suggestions. I don’t have TAW11 books. Can you please send me that on my mail id me.virendrakedia@gmail.com
            Specially the unicode part.
            Thanks in advance for your help.
            Thanks and Regards
            Virendra Kedia



          • Virendra Kedia
            June 7, 2012

            Hi Raj…
             
            Finally certified…. got 70% :)
            Thanks for your kind help :)
            Regards
            Virendra Kedia



  19. Amrutha
    May 29, 2012

    Hi Raj,
    Your blog is very helpful. I’m planning to do C_TAW12_70. So, for that instead of directly appearing for certification course(25 days) I’m planning to go for some 45 days training course through online.  So, please give me your valuable suggestions and please tell me which books are helpful for me for SAP ABAP training. TAW10_1 -TAW12_2 are enough for preparing for SAP ABAP? or any other books are there for training? Please give me your suggestion. Thank you.

    Reply


    • Raj
      May 29, 2012

      Hello Amrutha,

      Few points i would like to take care:

      1) make sure its SAP Authorised training institute.
      if not make sure they are providing the campus as it will be very difficult to get a job.

      2) Regarding exam preparation TAW* materil is good.
      Also try out SAP Netweaver book for sap abap certification by Puneet Asthana

      Reply


  20. Sathya
    May 30, 2012

    Dear Raj,

    Thanks lot for such a detailed post on “SAP ABAP Certification”. Now I know where to start and how to start.
    I am planning to appear for the exam in Nov-12 (TECHED). Would you mind sharing the study materials with me?

    Thank you

    Sathya

    Reply


  21. Ben
    May 31, 2012

    Hey Raj,
    thanks for sharing your experience & materials. Really great stuff!
    Are there any other materials (except for taw10, taw12 and abap21days)? It there are any other materials, could you send them to busy.specialist@googlemail.com ?
     
    Thanks in advance.
     
    Cheers

    Reply


  22. Jibu
    June 8, 2012

    Hi Raj
    I am Jibu now i am working in alv reports my next issue is in enhancements at present  i don’t know anything in enhancements please send some documents on this to my email.                 jibujose89@hotmail.com

    Reply


  23. Sujay
    July 7, 2012

    Hi Raj,
    Sujay here from Bangalore. Congrats for completing the certification exam. I am doing my ABAP course in Source One which is a certified SAP training partner… But i need lots of sample questions to gain some confidence… Please help me out by sending the sample question papers you have… It would help me a lot… Thanks in advance….
    My mail id is sujayrameshb@gmail.com

    Reply


  24. ankita
    July 10, 2012

    is pattern remain same for the second attempt

    Reply


    • Raj
      July 11, 2012

      Hello Ankita,

      Yes the pattern will remain same for the second attempt.

      Thanks & Regards,
      Raj
      SAP IGnite

      Reply


  25. Harsha
    July 24, 2012

    Hi Raj,
    This is Harsha  from Hyderabad. Congrats for completing the certification exam. Iam looking for SAP ABAP associate level certification, can you please guide me and possibly mail me the certification material.
    it would be really helpful.
     
    Thanks & Regards,
    Harsha.

    Reply


  26. Alex
    July 24, 2012

    Hey, Raj.
    In the sample questions you wrote there are a lot of with only one correct answer. Is that a real percentage for overall test(80 questions)  or there were more questions with multiple answers, than single?

    Reply


    • Raj
      July 24, 2012

      Hello Alex,

      There is no hardcore rule on the percentage distribution of question between multiple answers and Single answers.

      Thanks
      Raj
      SAP IGnite

      Reply


    • admin
      July 25, 2012

      Hi Alex,
      Yes you do have multiple correct answers, all the above questions are from memory. There would be 80 questions in total. All the multiple answers questions have indication on how many of them are correct. Ex ( 2 are correct )

      Cheers
      SAP Ignite

      Reply


  27. Neha
    July 26, 2012

    Hi ,
    I am working as an ABAP developer for past 3 years .
    I wish to go for ABAP certification, Can u please guide me , how and where can i resgister for the exam ( in Delhi) and also which exam will be suitable for me at this stage.(i.e.  P_ABAP_70, or C_TAW12_70,or C_TAW12_71)

    Reply


  28. Prasanthi
    July 31, 2012

    Hi Raj ,
    thanks for posting the questions . it is great u remember so many :D
    i will be giving my exam soon . i want to know when you gave the certification exam ? if you have given it long back , i want to clarify if questions will be of this intensity or different now ..
    Regards

    Reply


    • Raj
      July 31, 2012

      Hello Prasanthi,

      I have given this exam 2 years back.But i feel the questions will be of same type.

      Best of luck with your exam.
      Do share your experience.

      Thanks
      Raj
      SAP IGnite

      Reply


      • Prasanthi
        August 1, 2012

        thanks ..
        ya , will definitely share my experience .

        Reply


  29. Samir Karnik
    August 6, 2012

    Hi Raj,
    Congratulations for clearing the exam!!
    I had undergone SAP ABAP from Genovate Mumbai in 2008 but could not clear the same. I appeared twice. Now I plan to appear for the same and clear the same. Would appreciated if you could help me with material and possible list of questions being asked.
    Thanks
    Samir

    Reply


  30. siddharth lakhotia
    August 27, 2012

    Sir,can you tell me about the topics most asked in certification exam. ?
    How is the paper.Is it tough ?
    Are 25 days enough to cover the topics for the course?
    Wher can I get questions which are exactly of the same pattern as asked in the exam ?
    Are Taw books sufficient to study and get certified ?
    Please reply..

    Reply


  31. Praveen
    September 24, 2012

    Hi Raj,
    Your blog is superb. And Its giving lot and lot of very good information  to many people.  Thanks to you for such a wonderful assistance.
    I have done SAP SD, But I am uncertified. Now, I am planning to do CRM Certification from Source One Management Consultancy, Bangalore.
    They are saying that, they will provide job guarantee after completion of the certification. Since, I am new to this technology, Can you please help me either in providing some references who are in to functional, or If you know about Source one, Bangalore.. Can I rely on those people words???
    Please help me. I am in complete confusion. Is it good to choose Source One or Siemens??
    Thanks,
    Praveen.

    Reply


    • Raj
      September 25, 2012

      Hello Praveen,

      I have no idea about Source one so can’t comment on that.
      I think the best person to comment on that will be it’s X student who finished the course and got the job.If those people are reliable i don’t think they will hesitate to share the information about it’s previous batches.

      Thanks
      ~Raj
      SAP IGnite

      Reply


  32. Shabareesh
    September 28, 2012

    Dear Raj,
    Congrtz for completing the certification with good percentile .. Thanks for providing questions. Can you send me the doc’s related to ABAP certification.
     
    Thanks
    Shabareesh
     

    Reply


  33. Sounak
    January 21, 2013

    Hi Raj,
    Thank you for such a wonderful post.
    Do we require to go through BC* pdfs for certification?
    Can you please some pdf on TAW* and/or BC* series?
    Please help me out. :)
    email id: sounakghosh09@gmail.com
    Regards
    Sounak

    Reply


  34. sushma
    February 19, 2013

    hi,
    this blog helped me a lot to learn ABAP. thanks a lot Mr Raj for keep on updating about the things happening around SAP.
    I’m a fresher and two days back i got my ABAP course completed. As I’ve no experience, is it possible to take Associate level certification?
    if it’s possible let me know when can i take this exam??
    thank you..
     

    Reply


    • Raj
      February 22, 2013

      Hi sushma,

      Try to contact with any of the local siemens or NIIT center and ask about direct certification option ( as u have already done the training )

      Thanks & Regards,
      Raj

      Reply


  35. Mr.Jopa
    March 12, 2013

    for the question 23 it works ok, wy-subrc = 0
     
    types:

    begin of it_tab1,
    name(8) type c,
    salary type p,
    end of it_tab1.

    data:
    wa type it_tab1,
    itab type table of it_tab1.

    wa-name = ‘John’.
    wa-salary = 80000.
    append wa to itab.
    wa-name = ‘Bob’.
    wa-salary = 20000.
    append wa to itab.
    wa-name = ‘Amar’.
    wa-salary = 10000.
    append wa to itab.
    wa-name = ‘David’.
    wa-salary = 50000.
    append wa to itab.

    clear wa.
    Read table itab into wa with key Name = ‘David’ binary search.

    write wa-name.

    Reply


  36. Naresh Babu G S
    May 3, 2013

    Hello Raj ,
    I am Babu working for a MNC in SAP Security and ABAP from past 1.5 yrs as my interest is more towards programming thought of completely shifting to ABAP in future. I am thinking to take a certifacation in ABAP , so could you please guide me in this regard . How will be career with ABAP and what topics I need to concentrate more ?
    Coming to certification , which one do u prefer me ?
    Kindly send me the material for the same , my mail ID is chinni_gs1989@rediffmail.com ,chinnigs1989@gmail.com.
    I will be awaiting for ur valuable suggestions .
    Thanks In Advance .
    Regards,
    Babu
     

    Reply


  37. Anil
    October 7, 2010

    Thanks a lot for the material.

    Reply


  38. RAJU
    February 18, 2011

    hi anil… can u please  send me sap abap certification material….i am preparing for certification….please help me…
    my email id is  :  vvbr57@gmail.com

    Reply


  39. Raj
    February 24, 2011

    Hi ,
    Send it to your mail id.

    Thanks
    SAP IGnite.
    Raj

    Reply


  40. Tarun
    March 23, 2011

    first of all thanks again for sending me the material but i need your help more can you send me the ans of SAP Question.doc that you have sent or how to study it.
    mine exam is on 25 mar so plz reply fast.
    thanks in advance

    Reply


  41. Danny
    August 3, 2011

    Can u send me  on abapcertification@gmail.com

    Cheers..

    Reply


  42. shaik
    September 7, 2011

    Dear Raj,
    congrats for sucessful certification i found all your posted information is very informative.  i really appriciate if you can send me material to mask_cse@yahoo.com
    i would like to take ABAP certification C_TAW12_04
    Thanks
    Shaik

    Reply


  43. Raj
    October 2, 2011

    Hello Anand,
    For ABAP basic programming knowledge is required.No need to brush up C/C++.
    Purchase ABAP in 21 days book.
    You can find the other materials from article http://sapignite.com/how-to-prepare-for-abap-certification

    Thanks.
    ~Raj

    Reply


  44. Raj
    June 7, 2012

    Hi Virendra,

    Congrtz for completing the certification.

    thanks
    ~Raj

    Reply

Leave a Reply

:wink: :-| :-x :twisted: :) 8-O :( :roll: :-P :oops: :-o :mrgreen: :lol: :idea: :-D :evil: :cry: 8) :arrow: :-? :?: :!:
  Twitter Followers Email Updates