i
TCS
Filter interviews by
I applied via Company Website and was interviewed in Mar 2023. There were 3 interview rounds.
BADi is a technology used to enhance standard SAP applications while RFC is a protocol used to communicate between systems.
BADi is used to add custom functionality to standard SAP applications without modifying the original code
RFC is used to communicate between SAP and non-SAP systems
BADi is implemented using ABAP code while RFC can be implemented using various programming languages
BADi is executed within the same sys...
TMG One Step Two Step Difference
TMG (Transaction Variant) is a tool used to customize SAP transactions
One-step TMG allows you to make changes directly in the transaction screen
Two-step TMG requires you to create a separate variant and then assign it to the transaction
One-step is faster but less flexible, while two-step is more flexible but requires more effort
Objects generated after TMG creation in SAP ABAP
After creating a TMG (Table Maintenance Generator), a function group is generated.
The function group contains function modules for maintenance screens, list displays, and authorization checks.
A maintenance view is also generated, which is used to maintain the table data.
A maintenance dialog is created, which is used to display the maintenance screens.
A maintenance object ...
Control break statements are used to group data in reports based on a specific field.
Used in ABAP reports to group data based on a specific field
Types of control break statements include AT, ON, and BETWEEN
AT statement is used to create a new group when a specific field changes
ON statement is used to create a new group when a specific field has a certain value
BETWEEN statement is used to create a new group when a speci
Control break statement should be used with caution inside a loop in SAP Abap
Ensure that the control break statement is used only when necessary
Make sure that the loop is not too large as it can impact performance
Test the code thoroughly to ensure that the control break statement is working as expected
BAPI is a standard interface provided by SAP while Customer Exit is a user-defined enhancement point.
BAPI is used for accessing SAP functions and data while Customer Exit is used for customizing SAP standard functionality.
BAPI is a pre-defined interface while Customer Exit is a user-defined interface.
BAPI is used for external communication while Customer Exit is used for internal communication.
Examples of BAPI include ...
Customer exits can be found using transaction code SMOD or CMOD.
Transaction code SMOD or CMOD can be used to find customer exits.
Enter the name of the enhancement in the 'Enhancement' field and click on 'Components' button.
The customer exits available for the enhancement will be displayed.
Alternatively, you can also search for customer exits using transaction code SE84.
Enter the name of the customer exit in the 'Exit N...
At selection screen event is used to capture user input before executing a report.
At selection screen event is triggered before the selection screen is displayed to the user.
It is used to validate user input and set default values for selection screen parameters.
It can also be used to dynamically modify the selection screen based on user input.
Example: At selection screen event can be used to restrict the input values ...
SD Flow is the Sales and Distribution process flow in SAP.
The process starts with creating a sales order
The order is then checked for availability of stock
If stock is available, delivery is created and goods are shipped
Invoice is generated and payment is received
Finally, accounting entries are posted
SD Flow integrates with other modules like MM and FI
SD Flow is critical for businesses dealing with sales and distributio
I applied via Naukri.com and was interviewed in Mar 2023. There were 2 interview rounds.
What people are saying about TCS
I applied via Naukri.com and was interviewed before Feb 2022. There were 2 interview rounds.
TCS interview questions for designations
I applied via Walk-in and was interviewed before Feb 2023. There were 2 interview rounds.
User exits are older technology, while BAdIs are newer and more flexible.
User exits are static, while BAdIs are dynamic and can be implemented multiple times.
User exits require modification of standard SAP code, while BAdIs do not.
BAdIs can be implemented without modifying the original code, making them more flexible.
BAdIs can be filtered based on specific criteria, while user exits cannot.
BAdIs are object-oriented, wh
Real time examples of SAP ABAP development
Creating custom reports for tracking sales data
Developing interfaces to integrate SAP with external systems
Enhancing existing SAP functionalities to improve user experience
Get interview-ready with Top TCS Interview Questions
I applied via Referral and was interviewed in Apr 2021. There were 4 interview rounds.
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 ...
posted on 6 Jun 2024
I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.
Debugging background jobs using Tcode JDBG in SAP ABAP.
Go to transaction code JDBG in SAP system.
Enter the job name and job count of the background job you want to debug.
Set breakpoints in the ABAP code of the background job.
Execute the background job and it will stop at the breakpoints for debugging.
Use standard debugging tools like variables, watchpoints, etc. to analyze and troubleshoot the job.
ABAP dumps can be analyzed using transaction codes ST22/ST23 in SAP.
Use transaction code ST22/ST23 to access the ABAP dump analysis tool.
Review the short dump overview to see a list of recent dumps.
Click on a specific dump to view detailed information such as error messages, program flow, and variables.
Analyze the dump to identify the root cause of the issue and take necessary actions to resolve it.
I have developed both SAP Script and Smartforms for various forms.
I have developed SAP Script forms for customizing standard SAP documents like invoices, purchase orders, etc.
I have also developed Smartforms for more interactive and user-friendly forms with dynamic content.
Each type of form has its own advantages and use cases in SAP development.
To retrieve a previous version of a smartform in SAP ABAP, you can use the transport request system.
Use the transport request system to track changes and versions of smartforms.
Identify the transport request containing the previous version of the smartform.
Import the transport request to revert back to the previous version.
Ensure to test the smartform after reverting to the previous version.
Authorization objects in ABAP control access to objects for assigned users, preventing unauthorized access.
Authorization objects are used to control access to specific objects in ABAP programs.
They define which users have access to certain objects and what actions they can perform.
Authorization objects are assigned to roles, which are then assigned to users.
Examples of authorization objects include S_PROGRAM for progra...
Containers are used in ABAP development to display output on the screen.
Containers are used to hold and display UI elements in ABAP programs.
They can be used to display text, images, tables, and other UI components.
Containers can be added to screens using the SAP GUI for Windows or Web Dynpro ABAP technology.
Example: DATA container TYPE REF TO cl_gui_container.
Example: container->add( text ).
IDocs are data containers used for exchanging data between SAP systems, while BAPIs are standardized interfaces for accessing SAP functions.
IDocs (Intermediate Documents) are used for exchanging data between SAP systems or between SAP and non-SAP systems.
IDocs contain data in a structured format and are used for communication in a distributed environment.
BAPIs (Business Application Programming Interfaces) are standardi...
ALV stands for ABAP List Viewer, a tool used to display data in tabular format in SAP reports.
ALV is used to enhance the readability and usability of reports by displaying data in a structured format.
It allows users to sort, filter, and customize the display of data according to their requirements.
ALV can display data in various formats such as grid, list, tree, etc.
It provides features like column resizing, column fre...
To debug code or errors in SAP ABAP, use tools like ABAP Debugger, breakpoints, watchpoints, and display statements.
Use ABAP Debugger to step through the code line by line and analyze variables.
Set breakpoints at specific lines of code to pause execution and inspect the program state.
Use watchpoints to monitor changes in specific variables during runtime.
Insert display statements to output variable values to the debugg
Workflow is a series of tasks that produce a desired outcome or result.
Workflow is a sequence of connected steps or activities that need to be completed in a specific order.
It involves the automation of business processes, ensuring tasks are completed efficiently and accurately.
Examples include approval processes, document routing, and task assignments.
Workflows can be designed and implemented using tools like SAP Work
An interface in SAP ABAP is a design template that defines the structure of a class without implementing the actual functionality.
Interfaces in SAP ABAP are used to define a set of methods that a class must implement.
They provide a way to achieve multiple inheritances in ABAP.
Interfaces are declared using the INTERFACE keyword in ABAP.
An example of an interface in SAP ABAP is IF_EXAMPLE_INTERFACE.
1 Interview rounds
based on 29 reviews
Rating in categories
System Engineer
1.1L
salaries
| ₹1 L/yr - ₹9 L/yr |
IT Analyst
67.6k
salaries
| ₹5.1 L/yr - ₹16 L/yr |
AST Consultant
51.3k
salaries
| ₹8 L/yr - ₹25 L/yr |
Assistant System Engineer
29.9k
salaries
| ₹2.2 L/yr - ₹5.6 L/yr |
Associate Consultant
28.9k
salaries
| ₹9 L/yr - ₹32 L/yr |
Amazon
Wipro
Infosys
Accenture