Filter interviews by
I applied via LinkedIn and was interviewed in Feb 2022. There were 2 interview rounds.
SAP processes are executed using transaction codes (T-codes) which are shortcuts to specific functions within the system.
T-codes are used to quickly access specific functions in SAP without navigating through menus.
Each T-code corresponds to a specific task or transaction in SAP.
Examples of T-codes include FBL3N for displaying GL account balances and FB50 for posting journal entries.
I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.
Setrange and Setfilter are methods used in Navision to filter records in a table.
Setrange is used to set a single filter on a field, while Setfilter is used to set multiple filters on multiple fields.
Setrange can only be used on primary keys or indexed fields, while Setfilter can be used on any field.
Setrange can only be used to filter for equality, while Setfilter can be used for various types of filters like range, w...
There are three types of keys in Navision: Primary Key, Foreign Key, and Unique Key.
Primary Key: A primary key is a unique identifier for a record in a table. It ensures that each record is unique and can be used to establish relationships with other tables.
Foreign Key: A foreign key is a field in a table that refers to the primary key of another table. It establishes a relationship between two tables.
Unique Key: A uni...
Grouping in Navision allows for categorizing and organizing data based on common attributes.
Grouping can be done on various fields such as customer, vendor, item, etc.
Grouping can be used for reporting and analysis purposes.
Grouping can also be used to set up permissions and access levels for different groups of users.
Example: Grouping customers by region or salesperson to analyze sales performance.
Example: Grouping it...
Triggers, reports, pages, and tables are key components in Navision development.
Triggers are used to execute code before or after certain events occur in a table.
Reports are used to present data in a structured format for printing or viewing.
Pages are used to create user interfaces for data entry, modification, and display.
Tables store and organize data in Navision, serving as the foundation for other components.
Properties of pages and tables in Navision
Pages in Navision are used to display and interact with data
Tables in Navision store the data
Pages have properties like SourceTable, Caption, and PageType
Tables have properties like TableType, DataPerCompany, and DataCaption
Pages and tables can have triggers and actions associated with them
Top trending discussions
posted on 31 Jan 2025
I was interviewed in Jul 2024.
I applied via Referral and was interviewed in Dec 2024. There were 4 interview rounds.
posted on 2 Jan 2025
I applied via Referral
Print a specific pattern using any programming language.
A class in OOP is a blueprint for creating objects, defining their properties and behaviors.
Classes are templates for creating objects in OOP
They define the properties (attributes) and behaviors (methods) of objects
Objects are instances of classes, each with its own unique data
Inheritance allows classes to inherit properties and behaviors from other classes
Encapsulation ensures that the data is hidden and can only be a...
Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.
Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.
A class can only extend one abstract class, but can implement multiple interfaces.
Abstract classes are used to define common characteristics of subclasses, while interfaces are used to define contracts for...
Joining is combining data from two or more tables based on a related column, while an inner join query retrieves only the matching records.
Joining is used to combine data from multiple tables in a database.
Inner join query retrieves only the records that have matching values in both tables.
Syntax for inner join: SELECT columns FROM table1 INNER JOIN table2 ON table1.column = table2.column;
Example: SELECT orders.order_i...
posted on 10 Dec 2024
I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.
I am a software engineer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.
5 years of experience in software development
Proficient in Java, Spring Boot, and Angular
Strong problem-solving skills
Experience working in Agile development environment
Bachelor's degree in Computer Science from XYZ University
I come from a close-knit family of five, including my parents, older sister, and younger brother.
Close-knit family of five
Parents, older sister, and younger brother
We enjoy spending time together traveling and trying new restaurants
Seeking new challenges and opportunities for growth in a different environment.
Desire for new challenges and learning opportunities
Seeking a better work-life balance
Interested in working with new technologies or industries
Looking for a more collaborative team environment
I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.
Runtime polymorphism allows a subclass to provide a specific implementation of a method that is already provided by its parent class.
Runtime polymorphism is achieved through method overriding, where a subclass provides its own implementation of a method that is already defined in its superclass.
The method to be overridden must have the same name, return type, and parameters in both the superclass and subclass.
When an o...
Streams in Java provide a way to process collections of objects in a functional style.
Streams are sequences of elements that support various operations like filter, map, reduce, etc.
They can be created from collections, arrays, or generate elements dynamically.
Streams can be sequential or parallel, allowing for efficient processing of large datasets.
Example: List<String> names = Arrays.asList("Alice", "Bob", "Cha...
Threads in Java are created by extending the Thread class or implementing the Runnable interface, and invoked using the start() method.
Threads can be created by extending the Thread class and overriding the run() method.
Threads can also be created by implementing the Runnable interface and passing an instance of the class to a Thread object.
Threads are invoked by calling the start() method on the Thread object.
Rest Template is a class in Spring that simplifies making HTTP requests and handling responses.
Rest Template is part of the Spring framework in Java.
It can be used to make HTTP requests to RESTful web services.
It simplifies the process of making HTTP calls and handling responses.
Rest Template can handle GET, POST, PUT, DELETE, etc. requests.
Example: RestTemplate restTemplate = new RestTemplate();
I applied via LinkedIn and was interviewed in Sep 2024. There were 3 interview rounds.
CICD stands for Continuous Integration and Continuous Deployment. It is a software development practice where code changes are automatically built, tested, and deployed.
Automates the process of integrating code changes into a shared repository
Automatically builds and tests the code to ensure it is functional
Automatically deploys the code to production or staging environments
Helps in detecting and fixing integration err
To create an image out of a running container, you can use the 'docker commit' command.
Use 'docker commit' command to create an image from a running container
Syntax: docker commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]]
Example: docker commit container_id repository_name:tag
Docker add command can fetch a file from a URL and add it to the image, while copy command copies files from the host machine to the image.
Docker add command can fetch files from URLs and add them to the image
Copy command copies files from the host machine to the image
Add command can also automatically extract compressed files during the build process
Copy command is more commonly used for copying local files
A freestyle project is a type of project in Jenkins that allows users to configure the build process in any way they want. A pipeline is a set of automated steps that define the process for building, testing, and deploying code.
Freestyle project in Jenkins allows users to configure build process manually
Pipeline in Jenkins is a set of automated steps for building, testing, and deploying code
Freestyle projects are more ...
Docker Swarm is used for orchestrating multiple Docker containers across multiple hosts, while Docker Compose is used for defining and running multi-container Docker applications.
Docker Swarm is a container orchestration tool that allows you to manage a cluster of Docker hosts.
Docker Compose is a tool for defining and running multi-container Docker applications.
Docker Swarm is used for scaling and managing a cluster of...
VPC stands for Virtual Private Cloud, a virtual network dedicated to a single organization's resources in the cloud.
Allows organizations to have control over their virtual network environment
Enables customization of network configuration
Provides security by allowing isolation of resources
Can connect to on-premises data centers or other VPCs using VPN or Direct Connect
CICD pipeline is a process that automates the building, testing, and deployment of software.
Continuous Integration (CI) - code changes are integrated into a shared repository multiple times a day.
Continuous Testing - automated tests are run to ensure code quality.
Continuous Deployment - code changes are automatically deployed to production.
Stages include: build, test, deploy, and monitor.
Tools like Jenkins, GitLab, and
VPC peering allows connecting two VPCs to communicate using private IP addresses.
VPC peering enables instances in different VPCs to communicate as if they are within the same network.
Traffic between peered VPCs stays within the private IP space and does not traverse the internet.
VPC peering does not involve a gateway, VPN, or direct connection.
Both VPCs must have non-overlapping IP ranges for successful peering.
Example...
VPC is a virtual private cloud that allows you to create isolated networks within the cloud environment. Subnets are subdivisions of a VPC, route tables define how traffic is directed within the VPC, and NAT gateway allows instances in a private subnet to access the internet.
VPC is a virtual private cloud that provides a logically isolated section of the AWS Cloud where you can launch resources.
Subnets are subdivisions...
Interview experience
based on 59 reviews
Rating in categories
SAP Abap Consultant
19
salaries
| ₹3 L/yr - ₹12 L/yr |
SAP MM Consultant
12
salaries
| ₹3.2 L/yr - ₹12 L/yr |
Technical Consultant
11
salaries
| ₹1.8 L/yr - ₹8.4 L/yr |
Navision Technical Consultant
11
salaries
| ₹3 L/yr - ₹8.2 L/yr |
SAP PP QM Consultant
11
salaries
| ₹4 L/yr - ₹8 L/yr |
TCS
Infosys
Wipro
HCLTech