Upload Button Icon Add office photos
Engaged Employer

i

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

ITC Infotech Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 3.5k Reviews

Filter interviews by

ITC Infotech SAP SD Developer Interview Questions, Process, and Tips

Updated 14 Jun 2024

ITC Infotech SAP SD Developer Interview Experiences

1 interview found

SAP SD Developer Interview Questions & Answers

user image Nimmy Chacko

posted on 14 Jun 2024

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

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What is Order-to-Case cycle?
  • Ans. 

    Order-to-Case cycle is the process of converting customer orders into physical cases for shipping and delivery.

    • Customer places an order for products

    • Order is processed and items are picked from inventory

    • Items are packed into cases for shipping

    • Cases are shipped to the customer

    • Customer receives the cases and the order is considered complete

  • Answered by AI
  • Q2. What are the stages that come before Quotation?
  • Ans. 

    The stages that come before Quotation in SAP SD include Inquiry and Sales Order.

    • Inquiry: Customer expresses interest in a product or service.

    • Sales Order: Customer confirms the purchase of a product or service.

    • Quotation: Formal offer provided to the customer based on their requirements.

  • Answered by AI
  • Q3. What is the point of integration between Sales and FI module?
  • Ans. 

    The point of integration between Sales and FI module is to ensure accurate financial data by linking sales transactions with accounting entries.

    • Sales orders in SD module trigger accounting entries in FI module

    • Revenue recognition in FI module is based on sales data from SD module

    • Integration allows for seamless flow of information between sales and finance departments

  • Answered by AI
  • Q4. When does Tax realisation happen?
  • Ans. 

    Tax realisation happens at the point of sale when the customer pays for the goods or services.

    • Tax realisation occurs when the customer makes a payment for the goods or services purchased.

    • It is the point at which the tax amount is calculated and collected from the customer.

    • Tax realisation is an important step in the sales process to ensure compliance with tax regulations.

    • Examples: When a customer buys a product online a...

  • Answered by AI
  • Q5. What is CAMIR report?
  • Ans. 

    CAMIR report is a tool used in SAP SD to analyze sales order data.

    • CAMIR stands for Customer Analysis and Margin Improvement Report

    • It helps in analyzing sales order data to identify opportunities for margin improvement

    • The report provides insights into customer buying patterns, pricing strategies, and profitability

    • Users can use CAMIR to make informed decisions on pricing, discounts, and sales strategies

  • Answered by AI
  • Q6. What server is used for Testing?
  • Ans. 

    The server used for testing can vary depending on the organization's setup, but commonly used servers include local servers, cloud servers, and virtual servers.

    • Local servers: Testing can be done on servers within the organization's network.

    • Cloud servers: Organizations may use cloud-based servers for testing, providing scalability and flexibility.

    • Virtual servers: Virtual servers can be used for testing to simulate diffe...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at Vardhaman College of Engineering, Mahaboobnagar and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test was simple and basic questions were asked

Round 2 - Coding Test 

They gave us 3 codes out of which 2 should be written correct

Round 3 - Technical 

(2 Questions)

  • Q1. At first I was in trouble logging in due to there cookies specifications then finally panel member had accepted my joining request after waiting in the lobby for 3 and half hours. The approach was friend...
  • Q2. Machine learning types.
  • Ans. 

    Machine learning types include supervised learning, unsupervised learning, and reinforcement learning.

    • Supervised learning: Uses labeled data to train a model to make predictions (e.g. classification, regression)

    • Unsupervised learning: Finds patterns in data without labeled outcomes (e.g. clustering, dimensionality reduction)

    • Reinforcement learning: Learns through trial and error by receiving feedback from the environment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - about project and the technologies used
then he asked me about some DSA based questions and about some situational judgement questions
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Run time polymorphism code
  • Q2. Linked list code
  • Q3. Deep copy shallow copy differences
  • Ans. 

    Deep copy creates a new copy of an object with its own unique memory space, while shallow copy creates a new object that references the same memory locations as the original object.

    • Deep copy duplicates all nested objects, while shallow copy only duplicates the references to nested objects.

    • Deep copy ensures that changes to the copied object do not affect the original object, while shallow copy may lead to unintended sid...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. More deep questions about polymorphism code
  • Q2. Code for interchange of strings without strcpy
  • Ans. 

    Use a loop to swap characters of two strings without using strcpy function.

    • Create two arrays of characters to store the strings

    • Use a loop to iterate through each character of the strings and swap them

    • Ensure to handle cases where strings have different lengths

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please prepare oops concept and data structure well because its easy for first round but for second round its too difficult - the interviewer was so irritating and asked very stupid wuestions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It's walkin, so they conducted 1 technical mcqs round.

Round 2 - Technical 

(11 Questions)

  • Q1. Multi threading
  • Q2. Internal working of hashmap
  • Ans. 

    HashMap in Java is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values based on keys.

    • HashMap uses an array of buckets to store key-value pairs.

    • Keys are hashed to determine the index in the array where the key-value pair will be stored.

    • In case of hash collisions, a linked list or a balanced tree is used to store multiple key-value pairs in the same bucket.

    • HashMap allows null keys...

  • Answered by AI
  • Q3. Spring batch related
  • Q4. Non repeating characters in a array
  • Ans. 

    Function to find and return all non-repeating characters in an array of strings.

    • Iterate through the array and count the occurrences of each character using a HashMap.

    • Then iterate through the array again and check if the count of each character is 1, if so add it to the result list.

    • Return the list of non-repeating characters.

  • Answered by AI
  • Q5. 3rd highest salary
  • Ans. 

    To find the 3rd highest salary in a database, we can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query with 'ORDER BY salary DESC' to sort the salaries in descending order.

    • Use 'LIMIT 1 OFFSET 2' to skip the first two highest salaries and retrieve the third highest salary.

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 2;

  • Answered by AI
  • Q6. Qualifier vs primary
  • Ans. 

    A qualifier in Java is used to specify additional information about a primary, which is the main data type or variable.

    • A primary in Java is the main data type or variable, while a qualifier provides additional information about the primary.

    • Qualifiers can be used to modify the behavior or characteristics of a primary.

    • For example, in Java, 'final' is a qualifier that can be used to make a variable constant.

  • Answered by AI
  • Q7. Controller vs restcontroller
  • Ans. 

    The main difference is that @RestController is a specialized version of @Controller that is used for RESTful web services.

    • Both @Controller and @RestController are used in Spring MVC to handle HTTP requests, but @RestController is specifically used for RESTful web services.

    • @Controller is used to create web pages, while @RestController is used to return data in JSON or XML format.

    • @RestController is a convenience annotati...

  • Answered by AI
  • Q8. Spring boot annotataions
  • Q9. Oops concepts with examples
  • Ans. 

    OOP concepts include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism: Ability for objects to be treated as instances of their paren...

  • Answered by AI
  • Q10. Spring batch configuration
  • Q11. They covered all java, spring and Microservices
Round 3 - Technical 

(4 Questions)

  • Q1. Microservices architecture
  • Q2. How do Microservices communicate
  • Ans. 

    Microservices communicate with each other through various communication protocols like HTTP, messaging queues, and gRPC.

    • Microservices can communicate over HTTP using RESTful APIs.

    • Messaging queues like RabbitMQ or Kafka can be used for asynchronous communication between microservices.

    • gRPC is a high-performance, open-source RPC framework that can be used for communication between microservices.

    • Service discovery mechanism...

  • Answered by AI
  • Q3. How to access the Microservice end point
  • Ans. 

    Microservice endpoints can be accessed using HTTP requests with the appropriate URL

    • Use HTTP methods like GET, POST, PUT, DELETE to interact with the microservice

    • Construct the URL with the base URL of the microservice and the specific endpoint path

    • Include any necessary headers or parameters in the request for authentication or data filtering

  • Answered by AI
  • Q4. Why we use microservices
  • Ans. 

    Microservices allow for modular, scalable, and flexible software development by breaking down applications into smaller, independent services.

    • Microservices enable easier maintenance and updates as each service can be developed, deployed, and scaled independently.

    • They improve fault isolation, as failures in one service do not necessarily affect the entire application.

    • Microservices promote agility and faster time-to-mark...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain architecture of your project
  • Q2. Some questions on Java, Spring Boot and sql
Round 2 - Technical 

(2 Questions)

  • Q1. Project flow and some behavioural questions
  • Q2. Project contribution of yours
  • Ans. 

    Developed a web application for tracking employee attendance and performance

    • Implemented user authentication and authorization using Spring Security

    • Utilized Hibernate for database interaction and data persistence

    • Designed and developed RESTful APIs for frontend integration

    • Used AngularJS for frontend development to create interactive user interfaces

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basic formalities before offer release

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand your project properly and have your basic of programming very clear
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

A standard online test conducted through one of the testing platforms.

Round 2 - Technical 

(4 Questions)

  • Q1. Java 8 features
  • Q2. Rest API
  • Q3. Java 8 coding problem
  • Q4. Collections
Round 3 - Technical 

(1 Question)

  • Q1. It was based on my previous project
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Multithreading, Collection list
  • Q2. Java Program on Strings, Threads
Round 2 - Technical 

(2 Questions)

  • Q1. Project Explanation
  • Q2. Git Commands, Linux Commands
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Discussion about my previous project
  • Q2. Question on html, css, javascript & react
  • Q3. Explain about promises
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

    • Example: const myPromise = new Promise((resolve, reject) => { ... });

  • Answered by AI
  • Q4. Use state, context api
  • Q5. Box modelling in css, css pre processors
  • Ans. 

    Box model in CSS refers to the way elements are rendered in a web page. CSS preprocessors like SASS or LESS help streamline CSS development.

    • Box model in CSS includes content, padding, border, and margin.

    • CSS preprocessors like SASS or LESS allow for variables, nesting, and mixins to be used in CSS.

    • Example: box-sizing: border-box; in CSS changes the box model to include padding and border in the element's total width and

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I got a call that i have been selected to the final round, but the final round never did happend

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Explain the technical part and Implementation project and Enchancements and abap core and tcode?
  • Ans. 

    Technical aspects of SAP ABAP development including implementation projects, enhancements, ABAP core, and transaction codes.

    • Implementation projects involve customizing SAP systems to meet specific business requirements.

    • Enhancements are modifications made to standard SAP programs to add new functionality.

    • ABAP core refers to the basic programming language used in SAP development.

    • Transaction codes are shortcuts to access ...

  • Answered by AI
  • Q2. What is the workflow and real time secanrio based question on abap?
  • Q3. Transapent and views and pool models ?
Round 2 - Technical 

(2 Questions)

  • Q1. Basics of abap tables and alv model?
  • Q2. Abap reports and program on employee? and tc codes on function modules and oops concepts also.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with full fuldge and keep on hands on experience and u will be able to crack it and self confidenece on you.

Skills evaluated in this interview

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

Write a Code related to the Trigger

Round 2 - Technical 

(2 Questions)

  • Q1. Explain the Batch Job
  • Ans. 

    Batch job is a process that allows you to process large volumes of data in smaller chunks.

    • Batch job is used to handle large data volumes that would exceed the normal processing limits.

    • It breaks down the data into smaller batches for processing, improving performance and efficiency.

    • Batch jobs can be scheduled to run at specific times or triggered manually.

    • Examples include data imports, updates, and deletions in Salesfor

  • Answered by AI
  • Q2. Pro and cons of the LWC
  • Ans. 

    LWC (Lightning Web Components) are a modern UI framework for building web components on the Salesforce platform.

    • Pros: Faster performance, better security, easier to debug, reusable components, better encapsulation.

    • Cons: Steeper learning curve for developers new to web components, limited browser support compared to Aura components.

  • Answered by AI

Skills evaluated in this interview

ITC Infotech Interview FAQs

How many rounds are there in ITC Infotech SAP SD Developer interview?
ITC Infotech interview process usually has 1 rounds. The most common rounds in the ITC Infotech interview process are Technical.
How to prepare for ITC Infotech SAP SD Developer 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 ITC Infotech . The most common topics and skills that interviewers at ITC Infotech expect are ABAP, Business process, Logistics, OTC and SAP SD.
What are the top questions asked in ITC Infotech SAP SD Developer interview?

Some of the top questions asked at the ITC Infotech SAP SD Developer interview -

  1. What is the point of integration between Sales and FI modu...read more
  2. What are the stages that come before Quotati...read more
  3. What server is used for Testi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
DXC Technology Interview Questions
3.7
 • 802 Interviews
Mphasis Interview Questions
3.4
 • 787 Interviews
View all
Associate Information Technology Consultant
5.2k salaries
unlock blur

₹4.1 L/yr - ₹15 L/yr

Lead Consultant
4.4k salaries
unlock blur

₹9 L/yr - ₹35.4 L/yr

Associate Consultant
854 salaries
unlock blur

₹2.5 L/yr - ₹16 L/yr

Software Engineer
501 salaries
unlock blur

₹4 L/yr - ₹14 L/yr

Senior Software Engineer
362 salaries
unlock blur

₹6.4 L/yr - ₹27 L/yr

Explore more salaries
Compare ITC Infotech with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview