Advanced certification in ABAP

Hi All
I am a ABAP programmer with 3 yrs of ABAP experience and currently working on EDI / IDOC technologies. I wanted to go for ABAP certification but I was advised by many not to do it as exam has got very simple ABAP questions, mainly on Basic ABAP
I just wanted to know how true it is and is there any other certification for Advanced ABAPPERS ? ( Like Sun has for Java ).
Are there any certification exams for ALE Idoc , BW programming.
Amol

Hi Amol,
Your question amused me. I am also a certified ABAPer, having a rootless existance in SAP. I was working on Web technologies till last Aug and got Certified then and have been an ABAPer ever since. Unfortunately, there is no advanced certification program for ABAP but a certified ABAPer is always considered to have it all.
You are right about the exam questions. It is all basic ABAP, but you see, high rises stand on great foundations. To learn advanced topics, may be you should approach SAPLABS at b'lore as you have over 3 yes of exp and that too on hot technologies like EDI/IDOC.
I would suggest anyone to go for the certification, not to get their 2-3 lakhs spent, but for the face that you will be globally accessible being a certified ABAPer and will have great demand abroad and in India.
Good luck.
If you think this helped you, please reward me
Karthik Potharaju

Similar Messages

  • How to do certification in ABAP

    Hi All,
    I want to do <b>certification in ABAP</b>. Can u share me the necessary things, related websites and topics need to be covered.Try to send me some sample questions and available sites regarding certification.
    Thanks in advance,
    Viven

    Hai Viven
    Go through the following Links
    /message/1916905#1916905 [original link is broken]
    ABout SAP-ABAP Certification
    Regards
    Sreeni

  • Advanced ALV using ABAP objects

    Hi All ABAPers,
    I have a question in Advanced ALV using ABAP objects.Can we display the output ie., ALV Grid without defining the custom cointainer?ie., just as we do in the classical ALV without defining any screens.Can we do that as a normal executable program ie., without using module pool programming.Please give me a solution.
    Thanks & Regards,
    Chaitanya.

    If you want editable grids then the cl_salv_table method won't unfortunately be of use since (currently) there's no editable facility / method.
    So if you are using cl_gui_alv_grid here's how to "get round" the problem.
    I'm essentially using my own alv class which is a reference to cl_gui_alv_grid  but the methodology shown here is quite simple.
    What you can do is to create a method which calls a function module for example ZZ_CALL_SCREEN so you only have to code a Screen and a GUI in ONE function module and not in every  ALV report.
    for example you could create something like this
    My version has the option of 2 screens - so when I double click on a cell in one grid I can  perform some actions and then display a 2nd grid before returning back to the ist grid.You can easily modify this to suit your applications.
    The parameters are fairly self evident from the code. You can just use this as a model for your own applications.
    I agree that having to code a separate screen and GUI for OO ALV GRID reports was for some people a "show stopper" in switching  from the old SLIS  to OO ALV reports.
    I Hope if any SAP development guys are reading this PLEASE PROVIDE EDITABLE FUNCTIONALITY IN THE NEW CL_SALV_TABLE class.  Thanks in advance.
    method display_data.
    call function 'ZZ_CALL_SCREEN'
      exporting
        screen_number       =  screen_number
        program             =  program
        title_text          =  title_text
       i_gridtitle         =  i_gridtitle
        i_zebra             =  i_zebra
        i_edit              =  i_edit
        i_opt               =  i_opt
        i_object            =  z_object
      changing
        e_ucomm             =  e_ucomm
        it_fldcat           =  it_fldcat
        gt_outtab           =  gt_outtab.
    e_ucomm = sy-ucomm.
    endmethod.
    function zz_call_screen .
    *"*"Local interface:
    *"  IMPORTING
    *"     REFERENCE(SCREEN_NUMBER) TYPE  SY-DYNNR
    *"     REFERENCE(PROGRAM) TYPE  SY-REPID
    *"     REFERENCE(TITLE_TEXT) TYPE  CHAR50
    *"     REFERENCE(I_GRIDTITLE) TYPE  LVC_TITLE
    *"     REFERENCE(I_ZEBRA) TYPE  LVC_ZEBRA
    *"     REFERENCE(I_EDIT) TYPE  LVC_EDIT
    *"     REFERENCE(I_OPT) TYPE  LVC_CWO
    *"     REFERENCE(I_OBJECT) TYPE REF TO  ZZHR_ALV_GRID
    *"  CHANGING
    *"     REFERENCE(E_UCOMM) TYPE  SY-UCOMM
    *"     REFERENCE(IT_FLDCAT) TYPE  LVC_T_FCAT
    *"     REFERENCE(GT_OUTTAB) TYPE  STANDARD TABLE
    assign gt_outtab to <dyn_table>.
    move title_text to screen_title.
    assign i_object to <zogzilla>.
    export <dyn_table> to memory id 'dawggs'.
    export i_gridtitle to memory id 'i_gridtitle'.
    export i_edit to memory id 'i_edit'.
    export i_zebra to memory id 'i_zebra'.
    export i_opt to memory id 'í_opt'.
    export it_fldcat to memory id 'it_fldcat'.
    case screen_number.
    when '100'.
    call screen 100.
    when '200'.
    call screen 200.
    endcase.
    endfunction.
    process before output.
    module status_0100.
    process after input.
    module user_command_0100.
    rocess before output.
    module status_0200.
    process after input.
    module user_command_0200.
    *   INCLUDE LZHR_MISCO01                                               *
    *&      Module  STATUS_0100  OUTPUT
    *       text
    module status_0100 output.
    import <dyn_table> from memory id 'dawggs'.
    import i_gridtitle from memory id 'i_gridtitle'.
    import  i_edit from memory id 'i_edit'.
    import i_opt from  memory id 'í_opt'.
    import  it_fldcat from  memory id 'it_fldcat'.
    i_object = <zogzilla>.
    call method i_object->display_grid
      exporting
        i_gridtitle = i_gridtitle
        i_edit  = i_edit
        i_zebra = i_zebra
        i_opt = i_opt
        g_fldcat = it_fldcat
        g_outtab = <dyn_table>
       changing
         it_fldcat = it_fldcat
         gt_outtab = <dyn_table>.
      set pf-status '001'.
      set titlebar '000' with screen_title.
    endmodule.                 " STATUS_0100  OUTPUT
    *&      Module  STATUS_0200  OUTPUT
    *       text
    module status_0200 output.
    import <dyn_table> from memory id 'dawggs'.
    import i_gridtitle from memory id 'i_gridtitle'.
    import  i_edit from memory id 'i_edit'.
    import i_opt from  memory id 'í_opt'.
    import  it_fldcat from  memory id 'it_fldcat'.
    i_object = <zogzilla>.
    call method i_object->display_grid
      exporting
        i_gridtitle = i_gridtitle
        i_edit  = i_edit
        i_zebra = i_zebra
        i_opt = i_opt
        g_fldcat = it_fldcat
        g_outtab = <dyn_table>
       changing
         it_fldcat = it_fldcat
         gt_outtab = <dyn_table>.
    set pf-status '001'.
      set titlebar '000' with screen_title.
    endmodule.                 " STATUS_0200  OUTPUT
    *   INCLUDE LZHR_MISCI01                                               *
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    module user_command_0100 input.
      case sy-ucomm.
        when 'BACK'.
          leave to screen 0.
        when 'EXIT'.
          leave program.
        when 'RETURN'.
          leave program.
        when others.
      endcase.
    endmodule.                 " USER_COMMAND_0100  INPUT
    *&      Module  USER_COMMAND_0200  INPUT
    *       text
    module user_command_0200 input.
    case sy-ucomm.
        when 'BACK'.
          leave to screen 0.
        when 'EXIT'.
          leave program.
        when 'RETURN'.
          leave program.
        when others.
      endcase.
    endmodule.                 " USER_COMMAND_0200  INPUT
    Cheers
    jimbo

  • Certification in ABAP..

    Hi Great Abapers.
    I want to do certification in ABAP. Can any one refer me good book names or some great links. Which one is most help full to do certification.
    Thanks.

    Hello,
    I suggest you the book [ABAP Objects|/people/horst.keller/blog/2007/03/21/1000-pages-full-of-abap] from Horst Keller.
    With this you can get the certification. I get my last certification just reading this book. It covers almost all of the topics in the certification exam.
    And to test your knowlegde in ABAP you can access the site [http://www.sapdomain.com]. But remember that's just a test, the certification exam is a little bit complex.
    Regards,

  • Certifications in ABAP

    Are there any certifications in ABAP?
    What is the procedure, syllabi , fees?
    Any site where I can get details?

    Hi Puneet
    It seems to us that you are interested in doing a SAP certification. However, it could be better for you, if you could provide your exact question in mind in a more presentable manner.
    In case you are looking for the details on SAP certification courses, I would suggest you to go to the link provided in the earlier reply or kindly reach the nearest Siemens (SISL) Center, for they also provide courses for SAP certification (both Technical and Functional). Our replies could be of much help to you, if you can be more specific. Kindly see if this answers your question, else re-frame the question!
    Regards
    Vinodh S

  • Advanced topics of Abap

    Dear experts,
    Could you please write me advanced topics of abap.
    how frequently I will use them?
    Thanks.

    Hi,
        BAPI's
        BADI's,
        Smart Forms,
        OOP's are in my view some of the advanced concepts.
    Regards,
    Rama Murthy.P

  • SAP Certification for  *ABAP  System Interfaces with SAP NetWeaver    7.0*

    Hi Experts,
      I am appearing for SAP Certification in the stream of  *ABAP 
      System Interfaces with SAP NetWeaver    7.0* 
      so as per the syllabus i required the following material,
      BC420,BC425, BC427,BC415,BC417,BIT300,BIT350
      BC401,BC402,BC400, BC430,BC490,ADM325,BC425,NET900,
      NW001,TESA20,TZCAFG,SM001
      so if any body is having the softcopy or any related links of the   
      above  mentioned material
      please send to my following mail ID's.
      <removed by moderator>
      Points Assured.
      Regards
      Praneeth
    Edited by: Jan Stallkamp on Oct 13, 2008 3:30 PM

    Don't ask for copyrighted material!
    Don't publish your e-mail address!
    Don't assure points!
    => this thread will be locked.
    Please read the rules of engagement otherwise you will set your account on risk of being deleted.
    Best regards,
    Jan Stallkamp

  • SAP Certification for   ABAP  System Interfaces with SAP NetWeaver

    Hi Experts,
      I am appearing for SAP Certification in the stream of  *ABAP 
      System Interfaces with SAP NetWeaver    7.0* 
      so as per the syllabus i required the following material,
      BC420,BC425, BC427,BC415,BC417,BIT300,BIT350
      BC401,BC402,BC400, BC430,BC490,ADM325,BC425,NET900,
      NW001,TESA20,TZCAFG,SM001
      so if any body is having the softcopy or any related links of the   
      above  mentioned material
      please send to my following mail ID's.
      <removed by moderator>  at  yahoo dot co in
      Points Assured.
      Regards
      Praneeth
    <THREAD LOCKED. Please read the [Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement] to discover why>
    Edited by: Mike Pokraka on Oct 14, 2008 1:25 PM

    Don't ask for copyrighted material!
    Don't publish your e-mail address!
    Don't assure points!
    => this thread will be locked.
    Please read the rules of engagement otherwise you will set your account on risk of being deleted.
    Best regards,
    Jan Stallkamp

  • Certification on abap

    hi,
       i am working with a CMMI company. i am thinking to write certification on my own expenses. where i get the complete info regrding the fees, eligibilty?
    i know that there are 3 levels in that like masters, associate, and professional.
    i need to complete all the 3 levels or atleast 1 .
    plz help me regarding the same or else shoot mail at [email protected]

    hi,
    Cut-off Percentage is 70% which is over all not individually.
    Topic Areas
    SAP Consultant Certification
    Development Consultant SAP NetWeaver 2004 – Application Development Focus ABAP
    Software components: SAP Web Application Server 6.40
    Certification exam is included in course TAW12 and is also offered separately at many SAP locations.
    Certification ID (Booking code): C_TAW12_04
    Certification duration: 3 hours
    Number of certification questions: 80
    You cannot go for all three levels at the same time.It depends upon your work experience, which one will be suitable for you.
    You can contact genovate or siemens which are SAP education parteners, and they are based throughout the country(India).
    1. mySAP.com Technologies
    mySAP.com
    Navigation (system handling)
    Technical setup of an SAP system
    System-wide concepts
    2. ABAP Workbench Basics (++)
    Data types and data objects
    Internal tables
    Data retrieval (authorization check)
    Subroutines
    The ABAP Runtime System
    Function groups and function modules
    Program calls and data transfer
    3. ABAP Objects (++)
    Classes and objects
    Inheritance
    Casting
    Interfaces
    Events
    Global classes and interfaces
    Exception handling
    Dynamic programming
    4. ABAP Dictionary (++)
    Database tables
    Performance for table access
    Consistency through input check (foreigh key dependency)
    Dependency of ABAP Dictionary objects
    Views
    Search help
    5. Techniqes for List Generation (++)
    Data output to lists
    Selection screen
    Logical database
    Program-specific data retrieval
    Data formatting and control level processing
    Storage of lists and background processing
    Interactive lists
    6. Dialog Programming (++)
    Screen (basics)
    User interface (GUI title, GUI status)
    Screen elements for output (text fields, status icons, and group boxes)
    Screen elements for input/output
    Subscreen and tabstrip control
    Table control
    Context menu
    Dialog programming lists
    7. Database Changes
    Database updates with Open SQL
    LUWs and Client/Server Architecture
    SAP locking concept
    Organizing database changes
    Complex LUW processing
    Number assignment
    Change-document creation
    8. Enhancements and Modifications
    Changes in SAP Standards
    Personalization
    Enhancements to Dictionary elements
    Enhancements using customer exits
    Business Transaction Events
    Business Add-Ins
    Modifications
    Weighting Key in the Test:
    + = 1 - 10%
    ++ = 11 - 20%
    + = over 20%
    Topic Areas
    1. mySAP.com Technologies
    mySAP.com
    Navigation (system handling)
    Technical setup of an SAP system
    System-wide concepts
    2. ABAP Workbench Basics (++)
    Data types and data objects
    Internal tables
    Data retrieval (authorization check)
    Subroutines
    The ABAP Runtime System
    Function groups and function modules
    Program calls and data transfer
    3. ABAP Objects (++)
    Classes and objects
    Inheritance
    Casting
    Interfaces
    Events
    Global classes and interfaces
    Exception handling
    Dynamic programming
    4. ABAP Dictionary (++)
    Database tables
    Performance for table access
    Consistency through input check (foreigh key dependency)
    Dependency of ABAP Dictionary objects
    Views
    Search help
    5. Techniqes for List Generation (++)
    Data output to lists
    Selection screen
    Logical database
    Program-specific data retrieval
    Data formatting and control level processing
    Storage of lists and background processing
    Interactive lists
    6. Dialog Programming (++)
    Screen (basics)
    User interface (GUI title, GUI status)
    Screen elements for output (text fields, status icons, and group boxes)
    Screen elements for input/output
    Subscreen and tabstrip control
    Table control
    Context menu
    Dialog programming lists
    7. Database Changes
    Database updates with Open SQL
    LUWs and Client/Server Architecture
    SAP locking concept
    Organizing database changes
    Complex LUW processing
    Number assignment
    Change-document creation
    8. Enhancements and Modifications
    Changes in SAP Standards
    Personalization
    Enhancements to Dictionary elements
    Enhancements using customer exits
    Business Transaction Events
    Business Add-Ins
    Modifications
    Weighting Key in the Test:
    + = 1 - 10%
    ++ = 11 - 20%
    + = over 20%
    Hope this is helpful, Do reward.

  • How we can take online certification in abap

    hi,
    i want to give online certification exam for abap through internet.
    plz suggest me any link.
    thanks.

    Hi Zuhi,
    All SAP exams are online only. You can register for the certification exam thru the link "Register for an Exam Now" by going on the link provided in earlier reply. Once you register for an exam then you can appear for it in SAP education center or in its authorized centers.
    Regards,
    Subhasha

  • Elligibily for certification - SAP ABAP associate - confusion

    Hi,
    I'm a S/W Engg.(6months exp in SAP-ABAP) in an Indian firm.
    I want to take this certification: SAP Certified Development Associate - ABAP - SAP NetWeaver 7.0 because I'm on bench and have got no project.
    From what I've gathered by googling, I've to take a course for about 2 months and then i'll be elligble for taking the certification exam or I've got to have an year's experience in a firm in the respective domain.
    Now, can't I study on my own and take the above mentioned cert. exam.
    How should I go about it. It's a little confusing for me.
    It'd really be cool if someone throws even a little light on my topic.
    Cheers.
    shilpi.

    Hi shilpi,
    I am working in leading software gaint.though i am in big position up to now i have not done certification.
    see,certification adds value to ur career.certification board gave permissions to some companies with no experience.i,e even a fresher in taht company can write certification. taht is for certain companies. for reamaining they have to be 1yr experienced then only thay have to appear.
    First check with your company team whether yours is in that list or not. if yes gud. no ,try to learn. already u completed 6 months. next 6 months prepare well and write exam.
    certification is a matter of money too. for abap certification associate level u have to pay 30000 towards exam fee.so prepare well.if u think u r petrfect then only move ur step.
    revert me for any ideas.
    thanks
    karthikeya
    reward me poionts if useful
    Edited by: Moderator on May 13, 2008 2:23 PM
    *Stop asking for points (and try to check your spellings)

  • Certification on ABAP web dynpro

    Hi folks,
    Do we have a certication exam exclusively for ABAP webdynpro??
    thanks
    sankar

    Hi,
    U go thru this Link, u ll get an idea.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/28113de9-0601-0010-71a3-c87806865f26?rid=/webcontent/uuid/8921447c-0501-0010-07b4-83bd39ffc7be [original link is broken]
    Regards,
    Padmam.

  • Advanced ABAP certification details

    Hello Experts,
    I would be appearing for ABAP certification end of this month. I need some help on chapter 3. Advanced ABAP ( Open SQL , Dynamic programming & Program calls and memory management ). I am not sure what to study as I don't have any materials. Any suggestions,  questions, any materials, any keywords or library link would help me to prepare for certification. My id deshantari at gmail dot com.  If anyone recently got certified may be you can help. Please send me some example questions/ keywords.
    Thank you and will be rewarded.
    Regards,
    Mau

    Check the below links and it may help you :
    ABAP Certification
    SAP(ABAP) CERTIFICATION
    You'll find also a lot of printable stuff at
    http://help.sap.com/printdocu/core/Print46c/en/Data/htm/english.htm
    See the TOC for the content or the index of all PDFs at http://help.sap.com/printdocu/core/Print46c/en/data/Index_en.htm
    The course descriptions can be found via the education wizard (http://www50.sap.com/useducation/find/wizard.asp)
    or the course index (http://www50.sap.com/useducation/find/courseindex.asp)
    For the ABAP workbench (BC400) it gives:
    http://www50.sap.com/useducation/curriculum/course.asp?cid=60131727
    Abap Objects (BC401):
    http://www50.sap.com/useducation/curriculum/course.asp?cid=60167031
    You can also try to skip the course and try to rely on experience and books like:
    http://www.amazon.com/exec/obidos/ASIN/0071341617/qid=1120754726/sr=2-1/ref=pd_bbs_b_2_1/103-7699884-1772649
    and
    http://www.amazon.com/exec/obidos/ASIN/0970655401/qid=1120754835/sr=2-1/ref=pd_bbs_b_2_1/103-7699884-1772649
    http://www50.sap.com/useducation/curriculum/group.asp?tid=8
    ABAP eg is on http://www50.sap.com/useducation/curriculum/curriculum.asp?rid=256&TID=
    Exams are on
    http://www50.sap.com/useducation/certification/examcontent.asp
    Schedules at
    http://www50.sap.com/useducation/certification/examschedule.asp
    Check you local SAP education centre for details on cert
    http://www.sap.com/services/education/index.epx
    http://www.sap-img.com/ab040.htm
    http://www.amazon.com/exec/obidos/ASIN/0970655401/sapinformation0e
    http://www.sapdomain.com/certification.php
    http://www50.sap.com/useducation/certification/curriculum.asp?rid=351&vid=5
    Thanks
    Seshu

  • ABAP CERTIFICATION

    Hi
    can any one give me the certification questions on abap
    thanks,
    kiran

    Hi
    Pls go through the following link hope it will help u out
    http://www.sap-img.com/abap/important-abap-faq.htm
    http://www.sap-basis-abap.com/
    http://www.sap-img.com/bdc.htm
    http://sapdomain.com/certification.php
    http://www.techinterviews.com/?p=198
    ABAP Workbench Fundamentals (For course BC400)
    Create ABAP programs and the most important Repository objects using appropriate ABAP Workbench tools
    Navigate in the Workbench and use the syntax help
    Process source text with the ABAP Editor
    Test programs using the Debugger
    Define elementary and structured data objects
    Overview of important ABAP statements
    Use internal tables (introduction)
    Use modularization techniques local in the program
    Database dialogs: information about database tables in the ABAP Dictionary, read database tables
    User dialogs: list, selection screen, screens
    Overview of ABAP Web Dynpro (from SAP NetWeaver 2004s)
    Use function groups and function modules, classes and methods, BAPIs
    Project-oriented development using the Transport Organizer
    Overview of the different options for adapting software
    Advanced ABAP (For course BC402)
    ABAP runtime environment
    ABAP types and data objects
    Unicode
    Analysis tools for programs
    Work with internal tables
    Program modularization with function modules
    Performance of complex Open SQL statements
    Dynamic programming with field symbols and references
    Runtime type information, runtime type creation
    Program calls and memory management
    ABAP Objects : Object Oriented Programming in R/3 (For BC404)
    Introduction
    Analysis and Design
    Principles
    Generalization/Specialization
    Events
    Global Classes/Interfaces
    Summary and Outlook
    Developing User Dialogs (For BC410)
    Course Overview
    Basics for Interactive Lists
    The Program Interface
    Interactive List Techniques
    Introduction to Screen Programming
    Screen Elements for Output
    Screen Elements for Input/Output
    Screen Elements: Subscreens and Tabstrip Controls
    Screen Elements: Table Controls
    Context Menus
    Lists in Screen Programming
    Preview: Control Framework
    Enhancements and Modification (For course BC425)
    Overview of the options for making customer-specific adjustments to the SAP standard system
    Personalization (transaction variants)
    Enhancements to:
    - Elements of the ABAP Dictionary
    - SAP programs
    - SAP screen menus
    - SAP screens
    Enhancement techniques:
    - Enhancements to elements of the Dictionary
    - Enhancements via customer exits
    - Business Transaction Events (BTEs)
    - Business Add Ins (BAdIs)
    - User Exits
    Modifications:
    - Procedure
    - Utilities (Modification Assistant, Modification Browser)
    - Modification adjustment
    SAP Note Assistant (tool for SAP Note implementation)
    ABAP Dictionary (For course BC430)
    Introduction
    Tables in the ABAP Dictionary
    Performance in Table Accesses
    Consistency through Input Checks
    Dependencies of ABAP Dictionary Objects
    Changes to Tables
    Views
    Search Helps
    Developing Internet Application Components (For course BC440)
    Course Overview
    Introduction
    Internet,Intranet & WWW
    HTML,CSS and JavaScript
    Internet Transaction Server
    ABAP Workbench Basics
    SAP GUI for HTML
    Easy Web Transactions
    ITS Flow Logic
    HTML Business
    Summary and Outlook
    Form Printing Using SAPSmart Forms (for course BC470)
    Overview of SAP Smart Forms
    General concepts in form printing
    - Windows and pages, main and secondary windows, text and data
    Creating and adjusting an SAP Smart Form
    - Form Builder, Form Painter, form logic, node types (texts, graphics, addresses, and so on), text modules
    Variables
    - Form interface, global data
    Tables
    - Table Painter, dynamic tables, headers and footers
    Smart Styles
    - Style Builder, paragraph formats, and character formats
    Including graphics
    Change forms and application programs
    Developing BAPI enabled Web Applications with Java (For course CA926)
    For course TABC41, 42 and 43
    Basis technology overview
    ABAP Workbench
    ABAP Dictionary
    ABAP Development Projects
    Advanced Programming in ABAP Development Workbench (week 3 - 4 „TABC42")
    Techniques of List Processing
    Transaction Programming
    Database Updates
    Enhancements and Modifications
    Interfaces for Data Transfer

  • Requirements for ABAP and XI Certification

    Hello Folks,
    I have about 2years of work experience in SAP ABAP and XI .
    I have resigned from my company few months back and got relocated to Switzerland.
    Im currently looking for SAP jobs here at switzerland and also wanted to complete with my certifications in ABAP/XI depending on the criteria.
    I have certain queries that would help me know the criteria to apply for the certification this year.
    Here my set of questions , Kindly answer me to all the points below i would be grateful for the same :
    1) Are we suppose to give any current working experience from the company.Since i have resigned from the job and dont hold another job yet, can i appear for the certification ?
    Can i submit my old experience letters?
    2) Is there any other way of appearing for SAP certifications apart from appearing through TechEd.
    3) Can I simply pay the money for the certificaton program and pick the exam that i want to appear for?
    Please guide me to plan for my certification program.
    Thank you in advance.
    Regards,
    Veda

    Hi,
    I believe that even in US also the same process.
    USA SAP Education site address:
    http://www.sap.com/usa/services/education/index.epx
    USA SAP Certification Policies:
    http://www.sap.com/usa/services/education/certification/policies.epx
    USA SAP Education FAQ
    http://www.sap.com/services/education/certification/levels/faqs/index.epx
    Registration
    All SAP Solutions Academy registrations must be received by telephone at central registration: +1-888-777-1727.
    Exam registrations are taken only through central registration at: +1-888-777-1727 and will only be taken up to five (5) business days prior to the scheduled exam event.
    You can call them up and fix your certification at time and location convenient for you.
    Regards,
    Ravi

Maybe you are looking for

  • K8N Neo2 and 6800 Problems

    System 3500 939 cpu K8N Neo mainboard 6800 Nvidia Card 1024 Ram XP PRO SP2 I have tried various Drivers 61.77 67.03 65.73 71.20 66.81 66.93 71.24 and many things listed on various forums to stop my computer from crashing 30 seconds into a game. At th

  • How to manage more than one iTunes library?

    I want to transfer some media from my lap to an ext drive to create more space. I want one iTunes library on the ext drive for some media and keep the main library on my laptop. I created a new iTunes library on my external drive and added one artist

  • Help! Deleted my sister's music while trying to use Senuti -

    Hi - I did something very stupid last night, and want to try to rectify it, if I can. My sister (ibook G4, 30 gig hard drive) and I have just started a garage band of sorts, and we each work on songs on our own computers. I thought it would be neat i

  • How do I delete available downloads of TV shows off my iPad? To get rid of the icon for each TV show I have ever purchased

    When I look at my TV shows on my iPad, it has an icon for every season of every show that I have ever purchased. I know a lot of them are not technically there because they are not downloaded (they have the iCloud symbol on them so I could download t

  • PPPoE: PADR size

    Hi. We have a problem with the connection of several CPEs (non-cisco). these CPEs sends a PADR with a size of 129 bytes, then our concentrator (7200) doesn't accept the connection: Jan  7 09:27:25.325: [818]PPPoE 397: Service request sent to SSS Jan