Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Deloitte Team. If you also belong to the team, you can get access from here

Deloitte Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Deloitte SAP Abap Consultant Interview Questions, Process, and Tips

Updated 19 Nov 2024

Top Deloitte SAP Abap Consultant Interview Questions and Answers

  • Q1. How to retrieve a field in Odata which is not a key field
  • Q2. New ABAP Syntax to move records from one internal table to another internal table and delete the duplicate records in one shot
  • Q3. How to find customer exits in a report or FM?
View all 10 questions

Deloitte SAP Abap Consultant Interview Experiences

6 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to find customer exits in a report or FM?
  • Ans. 

    Customer exits in reports or FMs can be found using transaction code SMOD or CMOD.

    • Use transaction code SMOD to find customer exits in reports.

    • Use transaction code CMOD to find customer exits in function modules.

    • Look for enhancements with names starting with 'EXIT_' or 'ZZ'.

  • Answered by AI
  • Q2. How to debug proxies?
  • Ans. 

    Debugging proxies involves using tools like SAP PI Message Monitor and Proxy Framework to trace and analyze data flow.

    • Use SAP PI Message Monitor to trace messages exchanged between systems

    • Analyze message payload and headers to identify issues

    • Utilize Proxy Framework to debug proxy classes and methods

    • Check configuration settings for proxies to ensure correct behavior

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Referral

Round 1 - Technical 

(2 Questions)

  • Q1. WHAT IS DDIC and what are DATA CLASS
  • Ans. 

    DDIC stands for Data Dictionary and DATA CLASS refers to the classification of data in SAP system.

    • DDIC is a centralized repository in SAP system for defining and managing data definitions.

    • DATA CLASS is used to classify data based on its technical attributes like storage type, size, etc.

    • Examples of DATA CLASS include MASTER (for master data), TRANSACTIONAL (for transactional data), etc.

  • Answered by AI
  • Q2. Different type of Enhancements
  • Ans. 

    Different types of enhancements in SAP ABAP include user exits, BAdIs, and enhancement spots.

    • User exits allow custom code to be added at specific points in standard SAP programs.

    • BAdIs (Business Add-Ins) are enhancements that allow custom code to be added without modifying the original object.

    • Enhancement spots provide predefined enhancement points in standard SAP objects for custom code.

    • Examples: Customer exits, BAdIs f...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare latest technologies

Skills evaluated in this interview

SAP Abap Consultant Interview Questions Asked at Other Companies

Q1. 1.what is ddic T-code 2. what is package 3.what are objects in se ... read more
Q2. 10. Why we write IF GT_VBAK IS INITIAL statement in for all entri ... read more
Q3. 3.what is difference between include & append structure
Q4. 16. What if we don't write start of selection event
Q5. 22. How many pages can be added within Interactive report
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. New ABAP Syntax to move records from one internal table to another internal table and delete the duplicate records in one shot
  • Ans. 

    Use COLLECT statement with SORTED BY to move and delete duplicate records in one shot

    • Use COLLECT statement with SORTED BY to move records from one internal table to another internal table and automatically delete duplicate records

    • Example: COLLECT wa INTO itab2 SORTED BY field.

    • Make sure to sort the internal table before using COLLECT statement to ensure duplicates are deleted

  • Answered by AI
  • Q2. Substring in Odata
  • Ans. 

    Substring function in OData allows for extracting a portion of a string value.

    • Use the substringof() function in OData to extract a substring from a string value.

    • Specify the starting position and length of the substring to be extracted.

    • For example, substringof('Hello World', 6, 5) will return 'World'.

  • Answered by AI
  • Q3. How to retrieve a field in Odata which is not a key field
  • Ans. 

    To retrieve a non-key field in OData, use $select query option in the URL.

    • Use $select query option in the URL to specify the fields you want to retrieve

    • Example: /EntitySet?$select=FieldName1,FieldName2

    • Make sure the field you want to retrieve is included in the $select query

  • Answered by AI
  • Q4. Difference between Search help entities in odata and CDS as search help
  • Ans. 

    Search help entities in OData and CDS are used for providing search help functionality, but they differ in their implementation and usage.

    • Search help entities in OData are defined in the metadata document of the OData service and are used to provide suggestions for input fields in the UI.

    • CDS as search help allows defining search help entities directly in the Core Data Services (CDS) views, making it easier to reuse and...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy to attend for fresher

Round 2 - Technical 

(2 Questions)

  • Q1. Easy to give for fresher
  • Q2. Which programming u r good?
  • Ans. 

    I am proficient in SAP ABAP programming language.

    • Extensive experience in developing and customizing SAP applications using ABAP

    • Strong knowledge of ABAP Objects, ALV Reports, BAPIs, and IDOCs

    • Skilled in debugging and performance tuning ABAP programs

    • Familiar with SAP Fiori and SAP HANA development

  • Answered by AI

Deloitte interview questions for designations

 SAP Abap

 (1)

 SAP Consultant

 (10)

 SAP MM Consultant

 (6)

 SAP Fico Consultant

 (4)

 SAP PI Consultant

 (2)

 SAP SD Consultant

 (2)

 SAP Bods Consultant

 (1)

 SAP BPC Consultant

 (1)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Different enhancement in ABAP code
  • Ans. 

    Different enhancement techniques in ABAP code

    • Use user exits to add custom functionality

    • Implement BAdIs for enhancing standard SAP applications

    • Utilize enhancement spots for adding custom code without modifying standard objects

  • Answered by AI
  • Q2. Value table vs pool table
  • Ans. 

    Value table is used for domain values while pool table is used for global data.

    • Value table is used to store domain values for a specific field in a database table.

    • Pool table is used to store global data that can be accessed by multiple programs.

    • Value table is linked to a domain while pool table is not linked to any specific domain.

    • Example: MARA is a pool table for Material Master data while MARC is a value table for Ma

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with all ABAP areas you worked

Skills evaluated in this interview

Get interview-ready with Top Deloitte Interview Questions

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Technical 

(1 Question)

  • Q1. Ddic Reports Adobe forms

Interview questions from similar companies

I appeared for an interview in Aug 2017.

Interview Preparation Tips

Round: Test
Experience: Offline test. Mostly concerned with data sufficiency, geometry and age relations and such apti questions. In verbal part there was sentence equivalence and completion questions. Small RC passages were as well.

Round: Technical Interview
Experience: I was mostly asked some problems and approaches of mathematics and I had been asked about an algorithm I implemented in one of my research project.

College Name: Jadavpur University, Kolkata

I applied via Campus Placement and was interviewed in Dec 2016. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Realizing the maximum solar power potential in Nepal
  • Ans. 

    Nepal can realize its maximum solar power potential by implementing policies to encourage solar energy adoption and investing in infrastructure.

    • Implement policies to incentivize solar energy adoption

    • Invest in infrastructure for solar power generation and distribution

    • Encourage public-private partnerships to fund solar projects

    • Promote awareness and education about the benefits of solar energy

    • Explore innovative financing ...

  • Answered by AI
  • Q2. Normal HR stuff

Interview Preparation Tips

Round: Group Discussion
Experience: People rushed to put in their points.
Tips: Keep calm, listen and only say things that make sense.
Duration: 20 minutes

Round: Case Study Interview
Experience: Approached the problem from all directions from acquiring capital, to maintenance, policy and environmental factors.
Tips: Think well before answering. Its better to show your understanding in multiple dimensions and thinking out of your comfort zone.

Round: HR Interview
Experience: It was a pleasant conversation.
Tips: Be authentic but respectful and optimistic, they like it.

Skills: Problem Solving Abilties, Communication
College Name: IIT Madras

I applied via Walk-in

Interview Questionnaire 

1 Question

  • Q1. Devise entry strategy for a conveyer belts manufacturer
  • Ans. 

    Analyze market, identify potential customers, establish partnerships with distributors, and offer customized solutions.

    • Conduct market research to identify potential customers and competitors

    • Establish partnerships with distributors to expand reach

    • Offer customized solutions to meet specific customer needs

    • Invest in marketing and advertising to increase brand awareness

    • Provide excellent customer service to build a loyal cus

  • Answered by AI

Interview Preparation Tips

Round: Case Study Interview
Experience: My case discussion lasted for 5 minutes. He asked me the question. I asked them two questions to get a hang of the industry/objective. Then I told them my approach for solving the problem and summarized by describing my structure.
I think they liked freshness of my approach. Typically people ask a lot of questions and often the process gets slowed down or becomes uninteresting. I touched upon the entire set of important points and summarized it quickly.
Tips: 1. Don’t over-prepare for case interviews. I had read first chapter of ‘Case in point’ to understand different types of cases. I had done only 3 – 5 cases myself but observed around 10 cases.
2. Interviewers appreciate crisp and comprehensive communication.
3. Be thorough with your resume and be comfortable talking about its relevance to the vertical you are targeting.
4. Try to understand the background of the interviewer and gauge his expectation from your interview.
5. Utilize the opportunities to demonstrate the value you bring to the table.
6. Stay calm, focused and confident

Skills: Case Solving Ability, Case Analysis
College Name: Indian School Of Business (ISB)

I applied via Walk-in

Interview Preparation Tips

Round: HR Interview
Experience: Most of the questions were around school education as E&Y asked candidates to fill up forms on schooling. I was also asked to state my understanding of role. This led to further questioning on verticals I would like to work on? I guess candidate was expected to clearly state his/her choice and later on show the sound understanding of that vertical. To gauge some general awareness I was asked to give my views on latest boom in retailing and give the name of one company which would win in long run (with reason). I answered this question using some macroeconomic model and quoted Reliance as the clear winner.
Tips: Stay calm and be yourself.

Skills: Personality
College Name: Indian School Of Business (ISB)

Deloitte Interview FAQs

How many rounds are there in Deloitte SAP Abap Consultant interview?
Deloitte interview process usually has 1-2 rounds. The most common rounds in the Deloitte interview process are Technical and Aptitude Test.
How to prepare for Deloitte SAP Abap Consultant interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Deloitte. The most common topics and skills that interviewers at Deloitte expect are SAP ABAP, BAPIs, Badis, Debugging and Documentation.
What are the top questions asked in Deloitte SAP Abap Consultant interview?

Some of the top questions asked at the Deloitte SAP Abap Consultant interview -

  1. How to retrieve a field in Odata which is not a key fi...read more
  2. New ABAP Syntax to move records from one internal table to another internal tab...read more
  3. How to find customer exits in a report or ...read more

Tell us how to improve this page.

Deloitte SAP Abap Consultant Interview Process

based on 6 interviews

1 Interview rounds

  • Technical Round
View more

Interview Questions from Similar Companies

PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 797 Interviews
ZS Interview Questions
3.3
 • 451 Interviews
BCG Interview Questions
3.7
 • 197 Interviews
Bain & Company Interview Questions
3.8
 • 106 Interviews
WSP Interview Questions
4.2
 • 91 Interviews
Gartner Interview Questions
4.1
 • 81 Interviews
Mercer Interview Questions
3.7
 • 80 Interviews
View all
Deloitte SAP Abap Consultant Salary
based on 468 salaries
₹6 L/yr - ₹24 L/yr
41% more than the average SAP Abap Consultant Salary in India
View more details

Deloitte SAP Abap Consultant Reviews and Ratings

based on 32 reviews

4.0/5

Rating in categories

4.1

Skill development

3.3

Work-life balance

4.1

Salary

4.0

Job security

3.6

Company culture

3.7

Promotions

3.7

Work satisfaction

Explore 32 Reviews and Ratings
Consultant
34.1k salaries
unlock blur

₹6.4 L/yr - ₹23.5 L/yr

Senior Consultant
21.7k salaries
unlock blur

₹11 L/yr - ₹42 L/yr

Analyst
14.7k salaries
unlock blur

₹3.9 L/yr - ₹12.8 L/yr

Assistant Manager
10.2k salaries
unlock blur

₹7.8 L/yr - ₹24 L/yr

Manager
7.2k salaries
unlock blur

₹16 L/yr - ₹53 L/yr

Explore more salaries
Compare Deloitte with

Accenture

3.8
Compare

PwC

3.4
Compare

Ernst & Young

3.4
Compare

Cognizant

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview