Logo

Get AmbitionBox App

Faster and better experience!

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
    WINNERS AWAITED!
    • ABECA 2025
      WINNERS AWAITED!

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    • AmbitionBox Best Places to Work 2021

      1st Edition

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 150 Reviews

Play video Play video Video summary
  • About
  • Reviews
    150
  • Salaries
    1k
  • Interviews
    9
  • Jobs
    25
  • Benefits
    11
  • Photos
    -

Filter interviews by

Primus Techsystems Interview Questions and Answers

Updated 20 Feb 2025
Popular Designations

25 Interview questions

A SAP Abap Developer was asked 11mo ago
Q. Briefly describe Batch Data Communication (BDC).
Ans. 

BDC stands for Batch Data Communication. It is a method used in SAP to upload data from external systems into SAP.

  • BDC is used to automate data entry into SAP systems.

  • There are two methods of BDC - Call Transaction and Session Method.

  • BDC is commonly used for mass data uploads like customer master data, vendor master data, etc.

View all SAP Abap Developer interview questions
A SAP SD Consultant was asked
Q. Please tell me about yourself.
Ans. 

I am a dedicated SAP SD Consultant with 5 years of experience in implementing and optimizing SAP solutions for clients.

  • 5 years of experience in SAP SD consulting

  • Implemented SAP solutions for multiple clients

  • Optimized processes to improve efficiency and productivity

  • Strong knowledge of SAP SD modules and integration with other modules

  • Excellent communication and problem-solving skills

View all SAP SD Consultant 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...

View all SAP Abap Consultant interview questions
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.

View all SAP Abap Consultant interview questions
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...

View all SAP Abap Consultant interview questions
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...

View all SAP Abap Consultant interview questions
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...

View all SAP Abap Consultant interview questions
Are these interview questions helpful?
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,...

View all SAP Abap Consultant interview questions
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...

View all SAP Abap Consultant interview questions
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.

View all SAP Abap Consultant interview questions
1 2 3

Primus Techsystems Interview Experiences

9 interviews found

BD Manager Interview Questions & Answers

user image Anonymous

posted on 3 Nov 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. What are your past company achievements in your domain?
  • Ans. 

    Increased revenue by 30% through strategic partnerships and new client acquisitions.

    • Developed and implemented successful business development strategies

    • Negotiated and closed high-value deals with key clients

    • Expanded market reach through effective marketing campaigns

  • Answered by AI
    Add your answer
  • Q2. What suggestions do you have for your past employer?
  • Ans. 

    I would suggest implementing a more streamlined communication system and providing more opportunities for professional development.

    • Implement a centralized communication platform to ensure all team members are informed and updated on important information.

    • Offer regular training sessions or workshops to enhance skills and knowledge within the team.

    • Encourage cross-department collaboration to foster a more cohesive work en...

  • Answered by AI
    Add your answer

BD Manager Interview Questions asked at other Companies

Q1. How many clients are you currently handling?
View answer (1)
Anonymous

SAP Abap Developer Interview Questions & Answers

user image 101_Darshana Pawar

posted on 18 Jun 2024

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

Dependancy on Computer

Round 2 - Technical 

(2 Questions)

  • Q1. Describe brief about BDC
  • Ans. 

    BDC stands for Batch Data Communication. It is a method used in SAP to upload data from external systems into SAP.

    • BDC is used to automate data entry into SAP systems.

    • There are two methods of BDC - Call Transaction and Session Method.

    • BDC is commonly used for mass data uploads like customer master data, vendor master data, etc.

  • Answered by AI
    Add your answer
  • Q2. Difference between script and Smartforms
  • Ans. 

    Script is a procedural language used in SAP system for custom developments, while Smartforms are used for creating and formatting business documents.

    • Script is a procedural language used for custom developments in SAP system

    • Smartforms are used for creating and formatting business documents

    • Script is older and less user-friendly compared to Smartforms

    • Smartforms provide more flexibility and design options compared to Scrip...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

SAP Abap Developer Interview Questions asked at other Companies

Q1. What objects are generated after a TMG is created?
View answer (2)
Anonymous

Cloud Computing Engineer Interview Questions & Answers

user image Anonymous

posted on 23 Apr 2024

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

Reasoning question,speed ,ratio and proportion , proffit and loss

Round 2 - HR 

(4 Questions)

  • Q1. Introduce your self
  • Add your answer
  • Q2. Future plan about your career and after 5yrs tour position
  • Add your answer
  • Q3. My 1st priority to join your company after 5 yrs i would like see myself at a great position in your company with more experience great knowledge and high skills and be responsive person where i can give ...
  • Add your answer
  • Q4. I am Ravi kumar . I am 21 yrs old. i have completed my graduation in computer science and engineering from AGC Amritsar punjab. my skills are Cloud Computing and Networking . I am very excited to work with...
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - i need thiis job

Cloud Computing Engineer Interview Questions asked at other Companies

Q1. What is SaaS in cloud computing?
View answer (2)
Anonymous

Associate Consultant Interview Questions & Answers

user image Anonymous

posted on 19 Jun 2023

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

(2 Questions)

  • Q1. Module Basic Questions Table MM FI Intigration
  • Add your answer
  • Q2. Tables All MM Module Accounting entry Special Procurement
  • Add your answer

Associate Consultant Interview Questions asked at other Companies

Q1. There are 2 cricket teams, A and B, with 11 players each. If every player of team A shakes hands with every player of team B (once), what will be the total number of handshakes?
View answer (16)
Anonymous

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.
  • Add your 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

    SAP Abap Consultant Interview Questions asked at other Companies

    Q1. 1.what is ddic T-code 2. what is package 3.what are objects in se11 3.what is domain and data element 4.steps to create table 5.what are different types of views 5.what is lock objects 6.what is TMG and events in TMG 7.what is autorization ... read more
    View answer (2)
    Anonymous

    SAP SD Consultant Interview Questions & Answers

    user image Anonymous

    posted on 31 Oct 2023

    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    2-4 weeks
    Result
    Not Selected

    I applied via Recruitment Consulltant and was interviewed in May 2023. There were 3 interview rounds.

    Round 1 - Resume Shortlist 
    Pro Tip by AmbitionBox:
    Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
    View all tips
    Round 2 - Aptitude Test 

    My apptitiude test is very hard .and I am getting 45 marks

    Round 3 - One-on-one 

    (2 Questions)

    • Q1. What is your weakness
    • Add your answer
    • Q2. Plz tell about mi yourself
    • Ans. 

      I am a dedicated SAP SD Consultant with 5 years of experience in implementing and optimizing SAP solutions for clients.

      • 5 years of experience in SAP SD consulting

      • Implemented SAP solutions for multiple clients

      • Optimized processes to improve efficiency and productivity

      • Strong knowledge of SAP SD modules and integration with other modules

      • Excellent communication and problem-solving skills

    • Answered by AI
      Add your answer

    Interview Preparation Tips

    Topics to prepare for Primus Techsystems SAP SD Consultant interview:
    • technology
    Interview preparation tips for other job seekers - Plz give me the job

    SAP SD Consultant Interview Questions asked at other Companies

    Q1. How can different pricing procedures be achieved for sales orders and billing documents, and which controls enable this?
    View answer (6)
    Anonymous

    Hardware & Networking Engineer Interview Questions & Answers

    user image Anonymous

    posted on 10 Aug 2023

    Interview experience
    1
    Bad
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Resume Shortlist 
    Pro Tip by AmbitionBox:
    Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
    View all tips
    Round 2 - Technical 

    (2 Questions)

    • Q1. Hardware Server Printer DSC Porter For All Government
    • Add your answer
    • Q2. Company Averments Detals
    • Add your answer

    Interview Preparation Tips

    Interview preparation tips for other job seekers - as per Company Team & ..

    Hardware & Networking Engineer Interview Questions asked at other Companies

    Q1. When the internet is not working on a particular system, what are the first troubleshooting steps to follow?
    View answer (2)
    Anonymous

    Interview Questions & Answers

    user image Anonymous

    posted on 1 May 2024

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

    I applied via Referral and was interviewed before May 2023. There were 2 interview rounds.

    Round 1 - Technical 

    (1 Question)

    • Q1. SAP Conceptual wcw question
    • Add your answer
    Round 2 - HR 

    (1 Question)

    • Q1. Salary negotiations
    • Add your answer

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Best ever SAP Gold Partner company only in Pune
    Anonymous

    SAP SD Functional Consultant Interview Questions & Answers

    user image Anonymous

    posted on 29 Jan 2022

    I applied via LinkedIn and was interviewed before Jan 2021. There were 2 interview rounds.

    Round 1 - One-on-one 

    (1 Question)

    • Q1. Generally Questions based on current job responsibilities. Daily activities
    • Add your answer
    Round 2 - HR 

    (4 Questions)

    • Q1. What are your salary expectations?
    • Add your answer
    • Q2. Why are you looking for a change?
    • Add your answer
    • Q3. What are your strengths and weaknesses?
    • Ans. 

      Identifying strengths and weaknesses helps in personal growth and enhances team dynamics in a professional setting.

      • Strength: Strong Analytical Skills - I excel at breaking down complex problems into manageable parts, which helps in troubleshooting SAP SD issues effectively.

      • Strength: Excellent Communication - I can convey technical information clearly to non-technical stakeholders, ensuring everyone is on the same page.

      • ...

    • Answered by AI
      Add your answer
    • Q4. Tell me about yourself.
    • Add your answer

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Good company for freshers. You can get lots of learning from here.
    Be ready to travel all over India
    Technical Growth good, salary range not as per market.
    HR give fake commitments, but Owner is Very good.

    SAP SD Functional Consultant Interview Questions asked at other Companies

    Q1. What is the basic difference between SAP ECC and SAP S/4 HANA?
    View answer (2)
    Anonymous

    Top trending discussions

    View All
    Salary Discussions, Hike & Promotions
    2w
    harmoniousshako
    Verified Icon
    ·
    works at
    Accenture
    CTS vs KPMG (GLOBAL SERVICES)
    Offers in hand CTS - 38 LPA (36.5 fixed + 1.5 variable), 1 lakh joining bonus KPMG - 34 LPA (31.5 fixed + 2.5 variable), 1 lakh joining bonus I'm yet to negotiate with KPMG with the CTS offer. Lets say if KPMG matches CTS fixed component, is it wise to join KPMG Yoe - 11, Role offered - Manager, tech stack - Azure + dotnet full stack
    Got a question about Primus Techsystems?
    Ask anonymously on communities.

    Interview questions from similar companies

    company Logo

    Business Analyst Interview Questions & Answers

    Affine user image Tilak Agarwal

    posted on 16 Mar 2015

    Interview Preparation Tips

    Round: Test
    Experience: It was nice set of mixed bag questions each challenging your brain to scratch more and find the trick.
    Tips: Be calm in solving the questions, Practice few tricks to solve

    work,time,distance,number series problem etc. quickly to help save the

    time.
    Duration: 20 minuntes minutes
    Total Questions: 25

    Round: Resume Shortlist
    Experience: I think resume played a important role in selection processes.
    Tips: Make it simple and HIGHLIGHT your good work and experiences.Interviewer don't have time to go through whole crap what we write so basically focus on highlighting your achievements and internships.

    Round: Group Discussion
    Experience: People are dying to take the opportunity and speak.You will be facing a fish market in few cases, rest it is calm and everyone is given a chance to put forward there point.
    Tips: Generally u have to decide which side of the boat u want to be on.

    Either go against the topic or in favor whichever you are more

    comfortable with.

    College Name: IIT ROORKEE
    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 interview?
    Primus Techsystems interview process usually has 1-2 rounds. The most common rounds in the Primus Techsystems interview process are Technical, One-on-one Round and HR.
    How to prepare for Primus Techsystems 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 Counselling, Student Counseling, Admission Counselling, Business Development Management and Convincing Power.
    What are the top questions asked in Primus Techsystems interview?

    Some of the top questions asked at the Primus Techsystems 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
    What are the most common questions asked in Primus Techsystems HR round?

    The most common HR questions asked in Primus Techsystems interview are -

    1. What are your strengths and weakness...read more
    2. Why are you looking for a chan...read more
    3. What are your salary expectatio...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

    • Associate Interview Questions
    • Senior Executive Interview Questions
    • Analyst Interview Questions
    • Senior Associate Interview Questions
    • Senior Engineer Interview Questions
    • Accountant Interview Questions
    • Java Developer Interview Questions
    • System Engineer Interview Questions
    • Show more
    • Data Analyst Interview Questions
    • Assistant Manager Interview Questions

    Overall Interview Experience Rating

    3.4/5

    based on 7 interview experiences

    Difficulty level

    Moderate 100%

    Duration

    2-4 weeks 50%
    4-6 weeks 50%
    View more

    Interview Questions from Similar Companies

    Zifo RnD Solutions
    Zifo RnD Solutions Interview Questions
    4.0
     • 63 Interviews
    Saama Technologies
    Saama Technologies Interview Questions
    3.7
     • 55 Interviews
    Affine
    Affine Interview Questions
    3.3
     • 51 Interviews
    Talentica Software
    Talentica Software Interview Questions
    4.2
     • 49 Interviews
    Blenheim Chalcot
    Blenheim Chalcot Interview Questions
    2.6
     • 48 Interviews
    Indus Valley Partners
    Indus Valley Partners Interview Questions
    3.1
     • 47 Interviews
    Ksolves India Limited
    Ksolves India Limited Interview Questions
    3.6
     • 47 Interviews
    Cyfuture
    Cyfuture Interview Questions
    3.0
     • 46 Interviews
    Reserve Bank Information Technology
    Reserve Bank Information Technology Interview Questions
    3.6
     • 45 Interviews
    IT By Design
    IT By Design Interview Questions
    3.6
     • 41 Interviews
    View all

    Primus Techsystems Reviews and Ratings

    based on 150 reviews

    3.6/5

    Rating in categories

    3.8

    Skill development

    3.4

    Work-life balance

    2.9

    Salary

    3.5

    Job security

    3.3

    Company culture

    3.0

    Promotions

    3.4

    Work satisfaction

    Explore 150 Reviews and Ratings
    Jobs at Primus Techsystems
    Primus Techsystems
    Digital Marketing Executive

    Pune

    0-2 Yrs

    ₹ 1.5-3.5 LPA

    Primus Techsystems
    Business Development Executive - SAP

    Chennai,

    Bangalore / Bengaluru

    3-7 Yrs

    ₹ 4-7 LPA

    Primus Techsystems
    Digital Marketing Executive

    Pune

    0-2 Yrs

    ₹ 1.5-3.25 LPA

    Explore more jobs
    Primus Techsystems Salaries in India
    SAP Abap Consultant
    85 salaries
    unlock blur

    ₹2.5 L/yr - ₹6.5 L/yr

    Associate Consultant
    68 salaries
    unlock blur

    ₹2.5 L/yr - ₹8 L/yr

    SAP MM Consultant
    66 salaries
    unlock blur

    ₹2.5 L/yr - ₹8 L/yr

    SAP SD Consultant
    64 salaries
    unlock blur

    ₹2.6 L/yr - ₹7 L/yr

    SAP Fico Consultant
    47 salaries
    unlock blur

    ₹3 L/yr - ₹9.7 L/yr

    Explore more salaries
    Compare Primus Techsystems with
    Maxgen Technologies

    Maxgen Technologies

    4.6
    Compare
    Cyfuture

    Cyfuture

    3.0
    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

    Helping over 1 Crore job seekers every month in choosing their right fit company

    80 Lakh+

    Reviews

    4 Crore+

    Salaries

    6 Lakh+

    Interviews

    1 Crore+

    Users/Month

    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 2026
    • ABECA 2025 winners awaited tag
    • ABECA 2024
    • AmbitionBox Best Places to Work 2022
    • AmbitionBox Best Places to Work 2021
    • Invite employees to rate
    AmbitionBox
    • About Us
    • 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