AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Primus Techsystems

Compare button icon Compare button icon Compare
3.6

based on 157 Reviews

Play video Play video Video summary
  • About
  • Reviews
    157
  • Salaries
    1.1k
  • Interviews
    9
  • Jobs
    15
  • Benefits
    11
  • Photos
    -

Filter interviews by

Primus Techsystems SAP Abap Consultant Interview Questions and Answers

Updated 24 Dec 2022

25 Interview questions

A SAP Abap Consultant was asked
Q. What is pass by value and pass by reference?
Ans. 

Pass by value and pass by reference are two different ways of passing arguments to a function or method.

  • Pass by value means that a copy of the argument is passed to the function, so any changes made to the argument within the function do not affect the original value.

  • Pass by reference means that a reference to the argument is passed to the function, so any changes made to the argument within the function will affe...

A SAP Abap Consultant was asked
Q. What happens if we don't write the START-OF-SELECTION event?
Ans. 

If start of selection event is not written, the program will not execute any code.

  • Start of selection event is the entry point of an ABAP program.

  • If it is not written, the program will not execute any code.

  • No data will be selected or processed.

  • The program will terminate without any output.

SAP Abap Consultant Interview Questions Asked at Other Companies

asked in Automatic Infotech
Q1. 1.what is ddic T-code 2. what is package 3.what are objects in se ... read more
View answers (2)
asked in Primus Techsystems
Q2. What happens if we don't write the START-OF-SELECTION event?
View answers (2)
asked in Primus Techsystems
Q3. Why do we write the IF GT_VBAK IS INITIAL statement in for all en ... read more
View answers (3)
asked in Primus Techsystems
Q4. What is the difference between include and append structures?
View answers (2)
asked in HCLTech
Q5. While creating BADI implementation, what will get created Class m ... read more
View answers (2)
View All
A SAP Abap Consultant was asked
Q. Which function module is used in ALV reports?
Ans. 

The function module used in ALV reports is REUSE_ALV_GRID_DISPLAY.

  • REUSE_ALV_GRID_DISPLAY is a function module used to display ALV reports.

  • It takes input parameters like the internal table containing the data to be displayed, field catalog, and layout.

  • It generates a grid display with various features like sorting, filtering, and subtotaling.

  • Example usage: CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING it_fieldcat...

A SAP Abap Consultant was asked
Q. What is Smartform, and what are the different types of windows in Smartform?
Ans. 

Smarform is a tool in SAP ABAP used for creating and formatting printable forms. There are different types of windows in Smartform.

  • Smarform is a form development tool in SAP ABAP.

  • It is used to create and format printable forms like invoices, purchase orders, etc.

  • Smartforms consist of different elements like windows, pages, and nodes.

  • Windows in Smartforms are used to define the layout and structure of the form.

  • Ther...

A SAP Abap Consultant was asked
Q. What is the difference between include and append structures?
Ans. 

Include and append structures are used in SAP ABAP to enhance existing data structures.

  • Include structure is used to add fields from a transparent table or structure to another structure.

  • Append structure is used to add fields to the end of a transparent table or structure.

  • Include structure is used when the added fields are already present in the database table or structure.

  • Append structure is used when the added fi...

A SAP Abap Consultant was asked
Q. What is a lock object?
Ans. 

A lock object is used in SAP ABAP to control access to shared resources and prevent conflicts.

  • Lock objects are used to ensure data consistency in multi-user environments.

  • They are used to prevent multiple users from simultaneously accessing and modifying the same data.

  • Lock objects can be defined and used in ABAP programs using the ENQUEUE and DEQUEUE statements.

  • They can be used to lock entire tables, specific rows,...

A SAP Abap Consultant was asked
Q. What is TMG? Why do we use TMG?
Ans. 

TMG stands for Table Maintenance Generator. It is used to create a user interface for maintaining table entries in SAP ABAP.

  • TMG is used to generate a maintenance dialog for table entries.

  • It simplifies the process of creating, modifying, and deleting table entries.

  • TMG provides a standardized user interface with input fields, selection screens, and validation checks.

  • It helps in ensuring data integrity and consistenc...

Are these interview questions helpful?
A SAP Abap Consultant was asked
Q. Why do we write the IF GT_VBAK IS INITIAL statement in for all entries?
Ans. 

The IF GT_VBAK IS INITIAL statement is used to check if the internal table GT_VBAK is empty.

  • The statement is used to avoid processing an empty internal table.

  • It helps in preventing runtime errors when accessing the table.

  • By checking if the internal table is initial, we can handle the empty table scenario gracefully.

  • It is a good practice to use this statement before accessing the internal table.

A SAP Abap Consultant was asked
Q. What are value tables and check tables in SAP ABAP? What are the relevant transaction codes?
Ans. 

Value table and check table are used in SAP to maintain data consistency and integrity.

  • Value table is used to maintain domain values for a field in a table.

  • Check table is used to maintain the validity of data entered in a field.

  • T-code SE11 is used to create and maintain tables in SAP.

  • Value table can be assigned to a domain in the data dictionary.

  • Check table can be assigned to a foreign key field in a table.

A SAP Abap Consultant was asked
Q. What are implicit and explicit enhancements?
Ans. 

Implicit enhancements are modifications to standard SAP code without changing the original code. Explicit enhancements are modifications to standard SAP code by adding new code.

  • Implicit enhancements are done using the Enhancement Framework and are implemented using Enhancement Spots and Enhancement Sections.

  • Explicit enhancements are done using the Enhancement Framework and are implemented using Enhancement Points ...

1 2 3

Primus Techsystems SAP Abap Consultant Interview Experiences

1 interview found

SAP Abap Consultant Interview Questions & Answers

user image Anonymous

posted on 24 Dec 2022

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Walk-in and was interviewed in Nov 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(25 Questions)

  • Q1. 1.What is lock object
  • Ans. 

    A lock object is used in SAP ABAP to control access to shared resources and prevent conflicts.

    • Lock objects are used to ensure data consistency in multi-user environments.

    • They are used to prevent multiple users from simultaneously accessing and modifying the same data.

    • Lock objects can be defined and used in ABAP programs using the ENQUEUE and DEQUEUE statements.

    • They can be used to lock entire tables, specific rows, or e...

  • Answered by AI
    View 2 more answers
  • Q2. 2.what is inheritance and polymorphism and difference between them
  • Ans. 

    Inheritance is a mechanism where a new class is derived from an existing class. Polymorphism is the ability of an object to take on many forms.

    • Inheritance allows the new class to inherit properties and methods of the existing class.

    • Polymorphism allows objects of different classes to be treated as if they belong to a common class.

    • Inheritance is a way to achieve code reusability.

    • Polymorphism can be achieved through metho...

  • Answered by AI
    Add your answer
  • Q3. 3.what is difference between include & append structure
  • Ans. 

    Include and append structures are used in SAP ABAP to enhance existing data structures.

    • Include structure is used to add fields from a transparent table or structure to another structure.

    • Append structure is used to add fields to the end of a transparent table or structure.

    • Include structure is used when the added fields are already present in the database table or structure.

    • Append structure is used when the added fields ...

  • Answered by AI
    View 1 more answer
  • Q4. 4.what is smarform and types of windows in smartform
  • Ans. 

    Smarform is a tool in SAP ABAP used for creating and formatting printable forms. There are different types of windows in Smartform.

    • Smarform is a form development tool in SAP ABAP.

    • It is used to create and format printable forms like invoices, purchase orders, etc.

    • Smartforms consist of different elements like windows, pages, and nodes.

    • Windows in Smartforms are used to define the layout and structure of the form.

    • There are...

  • Answered by AI
    View 1 more answer
  • Q5. 5.what is maintaince view.
  • Ans. 

    Maintenance view is a view used to maintain data in database tables.

    • It is used to update, insert or delete data in database tables.

    • It simplifies the maintenance of data by providing a user-friendly interface.

    • It is created using transaction code SM30.

    • It can be used to maintain data in multiple tables at once.

    • It can also be used to restrict access to certain fields or tables.

  • Answered by AI
    Add your answer
  • Q6. 6.frequently used BAPI
  • Ans. 

    BAPI_MATERIAL_SAVEDATA is a frequently used BAPI for material master data

    • BAPI_MATERIAL_SAVEDATA is used for creating, updating and deleting material master data

    • BAPI_PO_CREATE1 is used for creating purchase orders

    • BAPI_GOODSMVT_CREATE is used for posting goods movements

    • BAPI_ACC_GL_POSTING_POST is used for posting accounting documents

  • Answered by AI
    Add your answer
  • Q7. 7.Types of enhancement
  • Ans. 

    There are three types of enhancements in SAP ABAP: Implicit, Explicit, and Explicit with modification.

    • Implicit enhancement: Adding custom code at predefined points in standard SAP code without modifying it.

    • Explicit enhancement: Adding custom code at predefined points in standard SAP code by modifying it.

    • Explicit enhancement with modification: Adding custom code at any point in standard SAP code by modifying it.

    • Examples...

  • Answered by AI
    Add your answer
  • Q8. 8.Difference between TABLE and TEMPLATE
  • Ans. 

    TABLE is a database object that stores data while TEMPLATE is a predefined structure used for creating new objects.

    • TABLE is used to store data in a database while TEMPLATE is used to create new objects based on a predefined structure.

    • TABLE has fields and records while TEMPLATE has placeholders for data.

    • TABLE is used for data storage and retrieval while TEMPLATE is used for object creation and standardization.

    • Example of...

  • Answered by AI
    Add your answer
  • Q9. 9.what is constructor and what is destructor
  • Ans. 

    Constructor is a method that is called when an object is created. Destructor is a method that is called when an object is destroyed.

    • Constructor initializes the object's data members and allocates memory for the object.

    • Destructor frees the memory allocated to the object and cleans up any resources used by the object.

    • In ABAP, constructors and destructors are defined using the methods CONSTRUCTOR and DESTRUCTOR respective...

  • Answered by AI
    Add your answer
  • Q10. 10. Why we write IF GT_VBAK IS INITIAL statement in for all entries.
  • Ans. 

    The IF GT_VBAK IS INITIAL statement is used to check if the internal table GT_VBAK is empty.

    • The statement is used to avoid processing an empty internal table.

    • It helps in preventing runtime errors when accessing the table.

    • By checking if the internal table is initial, we can handle the empty table scenario gracefully.

    • It is a good practice to use this statement before accessing the internal table.

  • Answered by AI
    View 2 more answers
  • Q11. 11. Classical reports events.
  • Ans. 

    Classical reports in ABAP have specific events that control the flow of report processing.

    • START-OF-SELECTION: Main processing block where data retrieval occurs.

    • END-OF-SELECTION: Final processing block, often used for output.

    • TOP-OF-PAGE: Used for page header formatting in list output.

    • AT LINE-SELECTION: Triggered when a user selects a line in the output list.

    • AT USER-COMMAND: Handles user commands like function keys.

  • Answered by AI
    View 1 more answer
  • Q12. 12. Is INCLUDE executable statement
  • Ans. 

    Yes, INCLUDE is an executable statement in SAP ABAP.

    • INCLUDE statement is used to include a program or a subroutine in another program.

    • It is executed at runtime and the included program or subroutine is executed as part of the main program.

    • INCLUDE statement can be used to modularize the code and improve reusability.

    • Example: INCLUDE [OBJECT ].

  • Answered by AI
    Add your answer
  • Q13. 13. What is BDC & BAPI
  • Ans. 

    BDC is Batch Data Communication used for mass data input. BAPI is Business Application Programming Interface used for accessing SAP data.

    • BDC is used for uploading data from external systems into SAP

    • BAPI is used for accessing SAP data from external systems

    • BDC uses transaction recording and batch input sessions

    • BAPI uses pre-defined function modules

    • BDC is suitable for simple data uploads

    • BAPI is suitable for complex busine...

  • Answered by AI
    Add your answer
  • Q14. 14. Types of reports and difference
  • Ans. 

    There are two types of reports in SAP ABAP: classical and interactive.

    • Classical reports are simple and display data in a tabular format.

    • Interactive reports allow users to interact with the data and perform actions like sorting, filtering, and editing.

    • Interactive reports are more complex to develop than classical reports.

    • Examples of classical reports include ALV reports and drill-down reports.

    • Examples of interactive rep...

  • Answered by AI
    Add your answer
  • Q15. 15. Which function module is used in ALV reports
  • Ans. 

    The function module used in ALV reports is REUSE_ALV_GRID_DISPLAY.

    • REUSE_ALV_GRID_DISPLAY is a function module used to display ALV reports.

    • It takes input parameters like the internal table containing the data to be displayed, field catalog, and layout.

    • It generates a grid display with various features like sorting, filtering, and subtotaling.

    • Example usage: CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING it_fieldcat = lt...

  • Answered by AI
    View 2 more answers
  • Q16. 16. What if we don't write start of selection event
  • Ans. 

    If start of selection event is not written, the program will not execute any code.

    • Start of selection event is the entry point of an ABAP program.

    • If it is not written, the program will not execute any code.

    • No data will be selected or processed.

    • The program will terminate without any output.

  • Answered by AI
    View 1 more answer
  • Q17. 17. Difference between smartform windows
  • Ans. 

    Smartform windows are used to display data in different formats and layouts.

    • There are three types of windows in Smartforms: Main window, Secondary window, and Global definition window.

    • Main window is the primary window and is mandatory in every Smartform.

    • Secondary windows are optional and can be used to display data in a different format or layout.

    • Global definition windows are used to define global data that can be used...

  • Answered by AI
    Add your answer
  • Q18. 18. How can we debug smartform
  • Ans. 

    Debugging smartform can be done using standard debugging techniques.

    • Set a breakpoint in the smartform code

    • Execute the smartform in debug mode

    • Use the debugger to step through the code and analyze variables

    • Use the debugging tools to analyze the form output

    • Check the system log for any errors or warnings

  • Answered by AI
    Add your answer
  • Q19. 19. Different types of debugging
  • Ans. 

    Different types of debugging in SAP ABAP

    • Classic Debugger - used for debugging synchronous programs

    • New Debugger - used for debugging asynchronous programs

    • Extended Program Check - used for checking syntax and semantics of programs

    • Runtime Analysis - used for analyzing performance issues

    • SQL Trace - used for analyzing database access issues

  • Answered by AI
    Add your answer
  • Q20. 20. What is implicit & explicit enhancements
  • Ans. 

    Implicit enhancements are modifications to standard SAP code without changing the original code. Explicit enhancements are modifications to standard SAP code by adding new code.

    • Implicit enhancements are done using the Enhancement Framework and are implemented using Enhancement Spots and Enhancement Sections.

    • Explicit enhancements are done using the Enhancement Framework and are implemented using Enhancement Points and E...

  • Answered by AI
    Add your answer
  • Q21. 21. What is TMG ? Why we use TMG?
  • Ans. 

    TMG stands for Table Maintenance Generator. It is used to create a user interface for maintaining table entries in SAP ABAP.

    • TMG is used to generate a maintenance dialog for table entries.

    • It simplifies the process of creating, modifying, and deleting table entries.

    • TMG provides a standardized user interface with input fields, selection screens, and validation checks.

    • It helps in ensuring data integrity and consistency.

    • TMG...

  • Answered by AI
    View 1 more answer
  • Q22. 22. How many pages can be added within Interactive report
  • Ans. 

    There is no limit to the number of pages that can be added within an interactive report.

    • Interactive reports can have multiple pages based on the user's input.

    • The number of pages is determined by the data being displayed and the user's selection criteria.

    • The report can be designed to display a certain number of records per page.

    • The user can navigate between pages using the page navigation buttons.

    • The number of pages can...

  • Answered by AI
    View 2 more answers
  • Q23. 23. what is pass by value and pass by reference
  • Ans. 

    Pass by value and pass by reference are two different ways of passing arguments to a function or method.

    • Pass by value means that a copy of the argument is passed to the function, so any changes made to the argument within the function do not affect the original value.

    • Pass by reference means that a reference to the argument is passed to the function, so any changes made to the argument within the function will affect th...

  • Answered by AI
    View 1 more answer
  • Q24. 24. what is value table and check table t-code
  • Ans. 

    Value table and check table are used in SAP to maintain data consistency and integrity.

    • Value table is used to maintain domain values for a field in a table.

    • Check table is used to maintain the validity of data entered in a field.

    • T-code SE11 is used to create and maintain tables in SAP.

    • Value table can be assigned to a domain in the data dictionary.

    • Check table can be assigned to a foreign key field in a table.

  • Answered by AI
    Add your answer
  • Q25. 25. what is field catalog
  • Ans. 

    Field catalog is a structure that defines the fields of a table or structure.

    • Field catalog is used in ALV reports to define the columns to be displayed.

    • It contains information such as field name, data type, length, and alignment.

    • Field catalog can be created dynamically using the function module 'REUSE_ALV_FIELDCATALOG_MERGE'.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Topics to prepare for Primus Techsystems SAP Abap Consultant interview:
  • Data Dictionary
  • Alv Reports
  • Smartforms
  • Classical reports
  • BAPIs
  • Bdc
Interview preparation tips for other job seekers - For freshers interview prepare at DDIC , Reports, Smartform with practical hands-on experience and theory

Skills evaluated in this interview

Anonymous

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Primus Techsystems?
Ask anonymously on communities.

Interview questions from similar companies

company Logo

Senior Associate Interview Questions & Answers

Affine user image Anonymous

posted on 22 Apr 2022

I applied via Naukri.com and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of python, project related questions
  • Add your answer
  • Q2. Basic SQL, few simple problem solving questions
  • Add your answer
Round 2 - HR 

(2 Questions)

  • Q1. Interests, hobbies ,general HR questions
  • Add your answer
  • Q2. Expected hike, salary, work timings preferred
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for basic python and sql.
Anonymous
company Logo

Software Developer Interview Questions & Answers

Talentica Software user image Anonymous

posted on 10 May 2015

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na
Anonymous
company Logo

Software Developer Interview Questions & Answers

Ksolves India Limited user image Anonymous

posted on 20 May 2021

I applied via Referral and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic programming concepts, OOPs & logical questions
  • Add your answer
  • Q2. Particular technology related and basic array programming
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - interview process was very smooth
Anonymous
company Logo

Software Engineer Interview Questions & Answers

Saama Technologies user image Prashant Kumar

posted on 15 Jul 2022

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

If you are a fresher , then this is for you else almost no coding test for experienced candidates.

Round 2 - One-on-one 

(1 Question)

  • Q1. Javascript basics, Angular react general questions depends upon profile.
  • Add your answer
Round 3 - Behavioral 

(1 Question)

  • Q1. They asked general questions related to some hectic situation faced in previous company / project..
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm . Clear your basics . That's it.
Anonymous
company Logo

Software Developer Interview Questions & Answers

Ksolves India Limited user image Anonymous

posted on 12 Mar 2022

I applied via Job Fair and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

In this round, we have questions from time relation, blood relation, programming questions. Around 45 questions in 30 minutes,

Round 2 - Coding Test 

In this round, we have two programming questions. Both are hacker rank easy to medium level.

Round 3 - Technical 

(1 Question)

  • Q1. In this round, we have questions from the core java and a famous scooter tire question.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - All the questions are at a medium level. Always keep your confidence high.
Anonymous
company Logo

Senior Associate Interview Questions & Answers

Affine user image Anonymous

posted on 25 Sep 2021

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. SQL window functions
  • Add your answer
  • Q2. Basic SQL queries
  • Add your answer
  • Q3. Basic Power BI
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be kind and humble and don't cheat. The interview will be a cup of cake if you even have some decent experience. Just get your basic right. There won't be much scenarios and coding questions
Anonymous
company Logo

Software Developer Interview Questions & Answers

Cyfuture user image Anonymous

posted on 24 Mar 2021

I applied via Naukri.com and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Database related questions
  • Add your answer
  • Q2. Api
  • Add your answer
  • Q3. Two basic coding questions
  • Add your answer
  • Q4. Some apti based questions
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Just try to attempt all the sample questions available in geeks for geeks
Anonymous
company Logo

Software Engineer Interview Questions & Answers

Talentica Software user image Anonymous

posted on 3 Jul 2025

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Previous experience, resume related questions
  • Add your answer
  • Q2. SOLID principles, Design Patterns, OOPS concepts and basic coding questions,
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare very well with basics.
Anonymous
company Logo

Software Engineer Interview Questions & Answers

Saama Technologies user image Anonymous

posted on 11 Apr 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Genral aptitude questions

Round 3 - Technical 

(4 Questions)

  • Q1. Be prepared with your basics
  • Add your answer
  • Q2. Languages and work flow
  • Add your answer
  • Q3. Be aware what you keep in your resume
  • Add your answer
  • Q4. Be strong in a area
  • Add your answer
Anonymous
More about working at Primus Techsystems
  • HQ - Pune, India
  • IT Services & Consulting
  • 201-500 Employees (India)

Primus Techsystems Interview FAQs

How many rounds are there in Primus Techsystems SAP Abap Consultant interview?
Primus Techsystems interview process usually has 2 rounds. The most common rounds in the Primus Techsystems interview process are Resume Shortlist and Technical.
How to prepare for Primus Techsystems 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 Primus Techsystems. The most common topics and skills that interviewers at Primus Techsystems expect are SAP ABAP, Badis, BAPIs, Data Dictionary and WebDynPro ABAP.
What are the top questions asked in Primus Techsystems SAP Abap Consultant interview?

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

  1. 16. What if we don't write start of selection ev...read more
  2. 10. Why we write IF GT_VBAK IS INITIAL statement in for all entri...read more
  3. 3.what is difference between include & append struct...read more

Tell us how to improve this page.

Primus Techsystems Interviews By Designations

  • Primus Techsystems BD Manager Interview Questions
  • Primus Techsystems SAP Abap Consultant Interview Questions
  • Primus Techsystems SAP SD Consultant Interview Questions
  • Primus Techsystems SAP Abap Developer Interview Questions
  • Primus Techsystems Associate Consultant Interview Questions
  • Primus Techsystems Cloud Computing Engineer Interview Questions
  • Primus Techsystems SAP SD Functional Consultant Interview Questions
  • Primus Techsystems Hardware & Networking Engineer Interview Questions
  • Show more

Interview Questions for Popular Designations

  • Software Developer Interview Questions
  • Software Engineer Interview Questions
  • Senior Engineer Interview Questions
  • Consultant Interview Questions
  • System Engineer Interview Questions
  • Associate Interview Questions
  • Senior Associate Interview Questions
  • Team Lead Interview Questions
  • Show more
  • Associate Consultant Interview Questions
  • Senior Consultant Interview Questions

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Moderate 100%
View more

Interview Questions from Similar Companies

Aksentt Tech Services
Aksentt Tech Services Interview Questions
4.7
 • 120 Interviews
Zifo RnD Solutions
Zifo RnD Solutions Interview Questions
3.7
 • 65 Interviews
Saama Technologies
Saama Technologies Interview Questions
3.7
 • 57 Interviews
Ksolves India Limited
Ksolves India Limited Interview Questions
3.2
 • 56 Interviews
Talentica Software
Talentica Software Interview Questions
4.1
 • 52 Interviews
Indus Valley Partners
Indus Valley Partners Interview Questions
3.1
 • 52 Interviews
Blenheim Chalcot
Blenheim Chalcot Interview Questions
2.8
 • 51 Interviews
Affine
Affine Interview Questions
3.3
 • 51 Interviews
Cyfuture
Cyfuture Interview Questions
2.9
 • 46 Interviews
Reserve Bank Information Technology
Reserve Bank Information Technology Interview Questions
3.4
 • 45 Interviews
View all
Primus Techsystems SAP Abap Consultant Salary
based on 83 salaries
₹3.2 L/yr - ₹7 L/yr
48% less than the average SAP Abap Consultant Salary in India
View more details

Primus Techsystems SAP Abap Consultant Reviews and Ratings

based on 6 reviews

4.7/5

Rating in categories

4.3

Skill development

4.0

Work-life balance

3.4

Salary

4.7

Job security

4.0

Company culture

3.8

Promotions

4.0

Work satisfaction

Explore 6 Reviews and Ratings
Primus Techsystems Salaries in India
Associate Consultant
83 salaries
unlock blur

₹2.5 L/yr - ₹6.2 L/yr

SAP Abap Consultant
83 salaries
unlock blur

₹3.2 L/yr - ₹7 L/yr

SAP MM Consultant
64 salaries
unlock blur

₹2.5 L/yr - ₹8.3 L/yr

SAP SD Consultant
64 salaries
unlock blur

₹2.6 L/yr - ₹7 L/yr

SAP Fico Consultant
51 salaries
unlock blur

₹3.6 L/yr - ₹7.9 L/yr

Explore more salaries
Compare Primus Techsystems with
Cyfuture

Cyfuture

2.9
Compare
Maxgen Technologies

Maxgen Technologies

4.6
Compare
JoulestoWatts Business Solutions

JoulestoWatts Business Solutions

3.1
Compare
Value Point Systems

Value Point Systems

3.6
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Primus Techsystems Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter