i
AeonX Digital
Filter interviews by
Enhancing tables in SAP ABAP involves adding custom fields or structures. Append adds fields at the end, while Include adds fields at a specific position.
Enhancing tables involves adding custom fields or structures to existing tables.
Append statement adds fields at the end of the table structure.
Include statement adds fields at a specific position within the table structure.
Append is used when adding fields to standard...
TMG stands for Table Maintenance Generator. It is a tool used in SAP ABAP to create table maintenance dialog programs.
TMG is used to create table maintenance dialog programs for maintaining table entries.
TMG events include START-OF-SELECTION, END-OF-SELECTION, TOP-OF-PAGE, END-OF-PAGE, etc.
I have worked on TMG events such as START-OF-SELECTION and END-OF-SELECTION in my previous projects.
Creating OData service using CDS views and SEGW
Create a CDS view with @OData.publish: true annotation
Activate the CDS view in SAP system
Create a project in SEGW transaction
Import the CDS view into the project
Define the entity set and entity type in SEGW
Map the CDS view fields to the entity type properties
Generate and implement the service
ECC is a traditional ERP system while HANA is an in-memory database platform. OOPs ABAP was introduced for better code reusability and maintainability.
ECC is a traditional ERP system with separate application and database layers, while HANA combines both in-memory.
HANA allows real-time data processing and analytics, while ECC relies on disk-based storage.
OOPs ABAP was introduced to enhance code reusability, maintainabi...
Optimizing code involves improving performance and efficiency. Parallel cursor in SAP ABAP allows for processing multiple records simultaneously.
Use SELECT statements with appropriate WHERE conditions to fetch only necessary data
Avoid nested loops and use optimized loop constructs like LOOP AT, LOOP AT ... WHERE, etc.
Use field symbols to avoid unnecessary data copying
Leverage parallel cursor processing to improve perfo...
CDS view is a virtual database table in SAP used for defining complex views. Associations are used for defining relationships, while joins are used for combining data from multiple tables.
CDS view is a virtual database table in SAP used for defining complex views
Associations in CDS views are used to define relationships between entities
Joins in CDS views are used to combine data from multiple tables based on a common f...
BAPI stands for Business Application Programming Interface. It is a standard interface to SAP business objects.
BAPIs are used to integrate SAP systems with external applications or other SAP systems.
They provide a way to access and manipulate data in SAP systems.
Pre-requisites for using BAPI include proper authorization, knowledge of the specific BAPIs available, and understanding of the data structures involved.
Exampl...
BADI stands for Business Add-In. It is an enhancement technique in SAP ABAP.
BADI allows you to add additional functionality to standard SAP applications without modifying the original code.
Steps to implement BADI: Define BADI interface -> Implement BADI interface -> Activate BADI implementation.
Classical BADI is implemented using SE18 transaction while Kernel BADI is implemented using SE19 transaction.
Difference betwee...
I have worked on various SAP ABAP projects including implementation, customization, and support.
Implemented custom reports and interfaces to improve data visibility
Customized standard SAP modules to meet specific business requirements
Provided support for system upgrades and enhancements
Worked on performance tuning and optimization projects
Collaborated with functional consultants to understand business processes and tra
Yes, I am comfortable switching from ABAP core to Integration.
I have experience working with both ABAP core and Integration technologies.
I am adaptable and quick to learn new technologies and processes.
I believe that integrating different systems can enhance the overall functionality and efficiency of a project.
For example, I have successfully integrated SAP systems with third-party applications to streamline processes
Top trending discussions
I applied via Company Website and was interviewed before Sep 2020. There were 4 interview rounds.
I applied via Naukri.com and was interviewed before Jul 2022. There were 4 interview rounds.
I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.
I have completed multiple projects during my training in SAP ABAP.
Developed a custom report to track sales data for a retail client
Enhanced existing programs to improve performance and functionality
Worked on a team project to integrate SAP modules for a manufacturing company
Material creation in SAP involves using BAPIs for different types of materials.
BAPI_MATERIAL_SAVEDATA can be used for creating materials in SAP
Different types of materials include raw materials, semi-finished goods, finished goods, etc.
BAPI_MATERIAL_GET_ALL can be used to retrieve information about all materials in SAP
Module pool programming is a technique in SAP ABAP for creating interactive user interfaces.
Define screen elements using Screen Painter
Write ABAP code for screen logic and flow control
Handle user input and trigger actions based on user interactions
Use function modules for backend processing
Implement navigation between screens
Function module is a reusable subroutine in SAP ABAP used for specific functionality.
Function modules are standalone functions that can be called from any ABAP program.
They are used to encapsulate specific business logic or calculations.
Function modules can be called remotely from other systems using Remote Function Call (RFC).
Examples include function modules for currency conversion, date calculations, or data validat
Input parameters in reports can be changed by modifying the selection screen fields in the ABAP program.
Modify the selection screen fields in the ABAP program to change input parameters
Use PARAMETERS or SELECT-OPTIONS statements to define input fields
Update the logic in the report program to process the new input parameters
Smart forms are newer and more advanced than SAP scripts.
Smart forms are newer technology compared to SAP scripts.
Smart forms offer more features and flexibility in designing forms.
Smart forms are easier to maintain and modify compared to SAP scripts.
Smart forms support interactive forms and digital signatures.
SAP scripts are older technology and are being phased out in favor of smart forms.
I applied via Wipro Carrers and was interviewed in Apr 2021. There were 3 interview rounds.
posted on 5 Sep 2024
I was interviewed before Sep 2023.
Types of views in DDIC include database views, projection views, maintenance views, and help views.
Database views are used to combine data from multiple tables into a single virtual table.
Projection views are used to display a subset of fields from a table.
Maintenance views are used for data maintenance and can be used to update multiple tables at once.
Help views are used to provide additional information or documentat
Events in Report
Events in ABAP reports are used to trigger specific actions based on user interactions or system events
Examples of events include AT LINE-SELECTION, AT USER-COMMAND, INITIALIZATION, etc.
Events can be used to control the flow of the report and enhance user experience
Normal aptitude questions
Questions based on Abap language and SQL query
I applied via LinkedIn and was interviewed before Nov 2021. There were 3 interview rounds.
A singleton class is a class that can only be instantiated once in a program.
It has a private constructor to prevent multiple instances.
It provides a global point of access to its instance.
It is often used for managing resources that should only have one instance.
Example: Database connection class, Configuration class.
Polymorphism is the ability of an object to take on many forms.
It allows objects of different classes to be treated as if they were objects of the same class.
It is achieved through method overloading and method overriding.
Example: A parent class Animal can have child classes like Dog, Cat, and Bird. Each child class can have its own implementation of the method 'makeSound', but they can all be called using the same met...
I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.
Use AT SELECTION-SCREEN OUTPUT event to display second field based on first field input.
Use AT SELECTION-SCREEN OUTPUT event to check if first field is filled.
If first field is filled, display the second field using the statement 'SET PF-STATUS'.
Example: AT SELECTION-SCREEN OUTPUT. IF sy-abcde = 'X'. SET PF-STATUS 'SECOND_FIELD'. ENDIF.
Events in reporting include initialization, start-of-selection, end-of-selection, top-of-page, end-of-page, and top-of-logical-page.
Initialization event is used to initialize variables and set initial values.
Start-of-selection event is used to fetch data from the database and perform calculations.
End-of-selection event is used to display the final output of the report.
Top-of-page event is used to display headers at the...
When creating BADI implementation, a class method is created. Steps include creating a class implementing the BADI interface and implementing the required methods.
Create a class implementing the BADI interface
Implement the required methods in the class
Activate the BADI implementation in the system
CDS view is a virtual database table in SAP ABAP used for defining complex views. It can be used to display ALV.
CDS view is defined using ABAP Development Tools (ADT) in Eclipse.
Steps to create CDS view: Define view, define associations, define annotations.
CDS views can be used to display ALV by creating a custom ALV grid using the CDS view as the data source.
If a field added to a TMG is not reflecting, check if the field is properly defined in the TMG structure and events are triggered correctly.
Check if the field is properly added to the TMG structure using SE11 or SE54.
Ensure that the events like INITIALIZATION, AT SELECTION-SCREEN, AT SELECTION-SCREEN OUTPUT, etc., are triggered correctly.
Debug the TMG program to see if the field value is being populated and displayed a
Classes are blueprints for objects with attributes and methods, while interfaces define a contract for classes to implement. ABAP is preferred for OOP due to its robustness and flexibility.
Classes are used to create objects with attributes and methods, while interfaces define a contract for classes to implement.
Classes can be instantiated to create objects, while interfaces cannot be instantiated.
ABAP is preferred for ...
Integrating S/4 Hana and SAP Ariba involves using SAP Cloud Platform Integration and SAP Ariba Network.
Use SAP Cloud Platform Integration to connect S/4 Hana and SAP Ariba
Leverage SAP Ariba Network for seamless integration and collaboration
Utilize standard integration content provided by SAP for faster implementation
Customize integration based on specific business requirements
Ensure data consistency and security during
IDoc is a data container used to exchange information between SAP systems or between an SAP system and an external system.
IDoc stands for Intermediate Document.
To create a field segment in IDoc, you need to define the segment structure in the IDoc definition using transaction WE31.
For reprocessing, you can use transaction BD87 to reprocess IDocs that have failed during processing.
There are three types of transport requests in SAP: Workbench request, Customizing request, and Transport of Copies.
Workbench request is created for ABAP development objects like programs, function modules, etc.
Customizing request is created for customizing objects like table entries, screen modifications, etc.
Transport of Copies request is created for transporting copies of objects from one system to another.
SO10 obje...
To load an image in Adobe form, use the 'Graphic' UI element. To convert an Adobe form into another language, use translation tools like SE63.
To load an image in Adobe form, use the 'Graphic' UI element and specify the image path.
For language conversion, use translation tools like SE63 to translate the text elements of the form into the desired language.
Make sure to maintain language-specific text elements for differen
Use the 'Obligatory' keyword to make a parameter or field mandatory in SAP ABAP.
Add 'Obligatory' keyword in the parameter declaration to make it mandatory
If the mandatory parameter is not filled, an error message will be displayed
Example: DATA lv_name TYPE string OBLIGATORY.
Yes, I have worked on secondary indexes in SAP ABAP.
Secondary indexes are created to improve the performance of select queries by allowing faster access to data.
To fetch values using a secondary index in a select query, you can use the addition 'USING INDEX' followed by the name of the secondary index.
For example, SELECT * FROM table_name USING INDEX index_name WHERE condition.
TMG stands for Table Maintenance Generator, used to create table maintenance dialog programs in SAP ABAP.
TMG is used to create user-friendly interfaces for maintaining table data.
It generates a dialog program with input fields for table fields and buttons for actions like create, update, delete.
TMG simplifies the process of creating and maintaining table data in SAP systems.
Example: SE54 transaction is used to create T
Some of the top questions asked at the AeonX Digital SAP Abap Consultant interview for experienced candidates -
based on 1 interview
Interview experience
based on 2 reviews
Rating in categories
SAP Abap Consultant
25
salaries
| ₹0 L/yr - ₹0 L/yr |
SAP MM Consultant
8
salaries
| ₹0 L/yr - ₹0 L/yr |
AWS Cloud Engineer
6
salaries
| ₹0 L/yr - ₹0 L/yr |
SAP PP Consultant
6
salaries
| ₹0 L/yr - ₹0 L/yr |
SAP Basis Consultant
6
salaries
| ₹0 L/yr - ₹0 L/yr |
TCS
Infosys
Wipro
HCLTech