Add office photos
Employer?
Claim Account for FREE

Primus Techsystems

3.5
based on 133 Reviews
Filter interviews by

20+ Proventus Management Solutions Interview Questions and Answers

Updated 18 Jun 2024

Q1. 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.

View 2 more answers

Q2. 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 are not present in the database table or structure.

  • Include...read more

View 1 answer

Q3. 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.

View 1 answer

Q4. 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 be displayed on the screen for the user's reference.

View 2 more answers
Discover Proventus Management Solutions interview dos and don'ts from real experiences

Q5. 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 method overloading and method overriding.

  • Inheritance is a 'is-a...read more

Add your answer

Q6. 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 different types of windows in Smartforms such as main win...read more

View 1 answer
Are these interview questions helpful?

Q7. 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_fieldcat TABLES t_outtab = lt_data.

  • lt_fieldcat is the fie...read more

View 2 more answers

Q8. 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 the original value.

  • In pass by value, the function works with...read more

View 1 answer
Share interview questions and help millions of jobseekers 🌟

Q9. 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 Enhancement Sections.

  • Implicit enhancements are used when th...read more

Add your answer

Q10. 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 respectively.

  • Example: CONSTRUCTOR method can be used to set default ...read more

Add your answer

Q11. 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 can be used for both custom tables and SAP standard table...read more

View 1 answer

Q12. 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.

Add your answer

Q13. 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 even individual fields.

  • Lock objects can be used to implemen...read more

View 2 more answers

Q14. 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

Add your answer

Q15. 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 business processes

  • Example of BDC is LSMW (Legacy System Migratio...read more

Add your answer

Q16. 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 reports include SAP Query and Ad Hoc Query.

Add your answer

Q17. 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.

Add your answer

Q18. 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'.

Add your answer

Q19. 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 TABLE is a customer table in a database while an example ...read more

Add your answer

Q20. 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 ].

Add your answer

Q21. 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

Add your answer

Q22. 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 of enhancements include adding custom fields to standard ...read more

Add your answer

Q23. 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 across all windows.

  • Each window can have its own attribute...read more

Add your answer

Q24. 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

Add your answer

Q25. 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 Script

Add your answer

Q26. 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

Add your answer

Q27. 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.

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Proventus Management Solutions

based on 6 interviews
Interview experience
3.3
Average
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

4.0
 • 560 Interview Questions
3.6
 • 260 Interview Questions
4.2
 • 173 Interview Questions
4.0
 • 158 Interview Questions
4.1
 • 148 Interview Questions
View all
Top Primus Techsystems Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

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

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter