Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Wipro Team. If you also belong to the team, you can get access from here

Wipro Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 50.5k Reviews

Filter interviews by

Wipro MS CRM Consultant Interview Questions and Answers

Updated 10 Aug 2021

Wipro MS CRM Consultant Interview Experiences

1 interview found

I applied via Recruitment Consultant and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Explain plugin execution steps
  • Ans. 

    Plugins are executed in a specific order based on their stage and execution mode.

    • Plugins are registered on specific events in CRM

    • Plugins can be synchronous or asynchronous

    • Plugins can be registered to execute before or after the main operation

    • Plugins can be registered to execute on pre-validation, pre-operation, post-operation stages

    • Plugins can be registered to execute on create, update, delete, or associate/disassociat...

  • Answered by AI
  • Q2. Explain managed and unmanaged solution
  • Ans. 

    Managed solutions are packaged and can be distributed, while unmanaged solutions are customizable and can only be modified in the environment they were created in.

    • Managed solutions are created by packaging components and can be distributed to other environments

    • Unmanaged solutions are customizable and can only be modified in the environment they were created in

    • Managed solutions can be upgraded or deleted without affecti...

  • Answered by AI
  • Q3. One coding question to perform crud operation in CRM

Interview Preparation Tips

Interview preparation tips for other job seekers - It was an easy interview just prepare your basics

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(12 Questions)

  • Q1. What exact code to be written when there are two field in selection screen if one field is filled the display second field and in which event it need to be written.
  • Ans. 

    Use AT SELECTION-SCREEN OUTPUT event to display second field based on first field input.

    • Use AT SELECTION-SCREEN OUTPUT event to check if first field is filled.

    • If first field is filled, display the second field using the statement 'SET PF-STATUS'.

    • Example: AT SELECTION-SCREEN OUTPUT. IF sy-abcde = 'X'. SET PF-STATUS 'SECOND_FIELD'. ENDIF.

  • Answered by AI
  • Q2. Name the events in reporting and explain their uses?
  • Ans. 

    Events in reporting include initialization, start-of-selection, end-of-selection, top-of-page, end-of-page, and top-of-logical-page.

    • Initialization event is used to initialize variables and set initial values.

    • Start-of-selection event is used to fetch data from the database and perform calculations.

    • End-of-selection event is used to display the final output of the report.

    • Top-of-page event is used to display headers at the...

  • Answered by AI
  • Q3. While creating BADI implementation, what will get created Class method or interface explain? steps to implement BADI . name the BADI you have implemented.
  • Ans. 

    When creating BADI implementation, a class method is created. Steps include creating a class implementing the BADI interface and implementing the required methods.

    • Create a class implementing the BADI interface

    • Implement the required methods in the class

    • Activate the BADI implementation in the system

  • Answered by AI
  • Q4. What is CDS view, step to create, how CDS views can be used to display ALV ?
  • Ans. 

    CDS view is a virtual database table in SAP ABAP used for defining complex views. It can be used to display ALV.

    • CDS view is defined using ABAP Development Tools (ADT) in Eclipse.

    • Steps to create CDS view: Define view, define associations, define annotations.

    • CDS views can be used to display ALV by creating a custom ALV grid using the CDS view as the data source.

  • Answered by AI
  • Q5. Suppose TMG is generated and you have added one field and that field is not reflecting what will you do? and name the TMG events.
  • Ans. 

    If a field added to a TMG is not reflecting, check if the field is properly defined in the TMG structure and events are triggered correctly.

    • Check if the field is properly added to the TMG structure using SE11 or SE54.

    • Ensure that the events like INITIALIZATION, AT SELECTION-SCREEN, AT SELECTION-SCREEN OUTPUT, etc., are triggered correctly.

    • Debug the TMG program to see if the field value is being populated and displayed a

  • Answered by AI
  • Q6. Difference between Class and interface and Why oops ABAP is preferred?
  • Ans. 

    Classes are blueprints for objects with attributes and methods, while interfaces define a contract for classes to implement. ABAP is preferred for OOP due to its robustness and flexibility.

    • Classes are used to create objects with attributes and methods, while interfaces define a contract for classes to implement.

    • Classes can be instantiated to create objects, while interfaces cannot be instantiated.

    • ABAP is preferred for ...

  • Answered by AI
  • Q7. How will you integrate S/4 Hana and SAP Ariba? What are the way you can?
  • Ans. 

    Integrating S/4 Hana and SAP Ariba involves using SAP Cloud Platform Integration and SAP Ariba Network.

    • Use SAP Cloud Platform Integration to connect S/4 Hana and SAP Ariba

    • Leverage SAP Ariba Network for seamless integration and collaboration

    • Utilize standard integration content provided by SAP for faster implementation

    • Customize integration based on specific business requirements

    • Ensure data consistency and security during

  • Answered by AI
  • Q8. What is IDoc? what are the steps use to create field segment in IDOC? suppose you encountered how will you reprocess?
  • Ans. 

    IDoc is a data container used to exchange information between SAP systems or between an SAP system and an external system.

    • IDoc stands for Intermediate Document.

    • To create a field segment in IDoc, you need to define the segment structure in the IDoc definition using transaction WE31.

    • For reprocessing, you can use transaction BD87 to reprocess IDocs that have failed during processing.

  • Answered by AI
  • Q9. How may types of Transport request are there in SAP? which will be created during report creation? How SO10 objects are transported?
  • Ans. 

    There are three types of transport requests in SAP: Workbench request, Customizing request, and Transport of Copies.

    • Workbench request is created for ABAP development objects like programs, function modules, etc.

    • Customizing request is created for customizing objects like table entries, screen modifications, etc.

    • Transport of Copies request is created for transporting copies of objects from one system to another.

    • SO10 obje...

  • Answered by AI
  • Q10. How will you load image in Adobe form? How will you convert and Adobe form into Spanish or any other language?
  • Ans. 

    To load an image in Adobe form, use the 'Graphic' UI element. To convert an Adobe form into another language, use translation tools like SE63.

    • To load an image in Adobe form, use the 'Graphic' UI element and specify the image path.

    • For language conversion, use translation tools like SE63 to translate the text elements of the form into the desired language.

    • Make sure to maintain language-specific text elements for differen

  • Answered by AI
  • Q11. How to make any parameter or field mandatory? Ans: Obligatory
  • Ans. 

    Use the 'Obligatory' keyword to make a parameter or field mandatory in SAP ABAP.

    • Add 'Obligatory' keyword in the parameter declaration to make it mandatory

    • If the mandatory parameter is not filled, an error message will be displayed

    • Example: DATA lv_name TYPE string OBLIGATORY.

  • Answered by AI
  • Q12. Have you worked on indexes, i.e. , secondary indexes, how will you fetch value using secondary index in select query?
  • Ans. 

    Yes, I have worked on secondary indexes in SAP ABAP.

    • Secondary indexes are created to improve the performance of select queries by allowing faster access to data.

    • To fetch values using a secondary index in a select query, you can use the addition 'USING INDEX' followed by the name of the secondary index.

    • For example, SELECT * FROM table_name USING INDEX index_name WHERE condition.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - No response after interview have given 80% correct. I have added Ariba as well i am not adding Ariba question. Prepare deep for the interview.

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

What is aptitude text? How much rounds?

Round 2 - One-on-one 

(2 Questions)

  • Q1. Is very simple in this round.
  • Q2. Best experience in this round.
Interview experience
1
Bad
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Tell me the address of previous company. I mostly worked from home so did not remember the exact address. Reply: Then you have not worked .
  • Q2. I don't feel that you are confident anyhow tell me the tcode for material extend.
  • Q3. Tell me errors in material extend
  • Ans. 

    Errors in material extend can include incorrect data entry, missing information, duplicate entries, and system errors.

    • Incorrect data entry such as wrong material number or description

    • Missing information like unit of measure or pricing details

    • Duplicate entries for the same material

    • System errors causing inconsistencies in material extend data

  • Answered by AI
  • Q4. List tables name
  • Q5. You take time to answer so seems like a fresher would do a better job

Interview Preparation Tips

Interview preparation tips for other job seekers - I had SAP MM walk interview. Please at least train experienced personnel how to take interviews.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is idocs and bapi
  • Ans. 

    IDocs are data containers used for exchanging data between SAP systems, while BAPIs are standardized interfaces for accessing SAP functions.

    • IDocs (Intermediate Documents) are used for exchanging data between SAP systems or between SAP and non-SAP systems.

    • IDocs contain data in a structured format and are used for communication in a distributed environment.

    • BAPIs (Business Application Programming Interfaces) are standardi...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Define Physical inventory
  • Ans. 

    Physical inventory is the process of counting and verifying the actual quantity of goods in stock.

    • Physical inventory involves physically counting and inspecting the items in a warehouse or storage location.

    • It helps in identifying any discrepancies between the actual stock and the recorded stock in the system.

    • The process may include using barcode scanners, RFID technology, or manual counting methods.

    • Physical inventory i...

  • Answered by AI
  • Q2. Explain STO process
  • Ans. 

    STO process is a method used in SAP MM to transfer stock between different plants within the same company code.

    • STO stands for Stock Transport Order.

    • It involves creating a purchase order in the supplying plant and a corresponding sales order in the receiving plant.

    • The goods are then transferred from the supplying plant to the receiving plant using the delivery process.

    • The receiving plant receives the goods and posts the...

  • Answered by AI
  • Q3. Have you worked on any interfaces ?
  • Ans. 

    Yes, I have worked on interfaces in my role as an SAP MM Consultant.

    • I have experience in integrating SAP MM with other modules like SAP SD and SAP FI.

    • I have worked on setting up and configuring IDocs for data exchange between SAP systems.

    • I have also worked on integrating SAP MM with external systems using technologies like EDI and XML.

    • I have experience in mapping and transforming data between different systems.

    • I have w...

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - Technical 

(13 Questions)

  • Q1. What is wide casting and Narrow casting
  • Ans. Wide Casting : This concept will be used when super class is Inherited and redefined by Sub class. Supposes Sub class has one inherited method(x) from the super class and one new method(y). If sub class reference is assigned to super class then it will be called as Wide casting(super class = sub class ), Since super class is pointing to more objects. Remember vice versa is not a narrow casting(Sub class = super class) ...
  • Answered Anonymously
  • Q2. How to display multiple screen in one layout
  • Ans. 

    To display multiple screens in one layout, use the SAP Screen Painter tool and create a custom screen with multiple subscreens.

    • Create a custom screen using the SAP Screen Painter tool

    • Add multiple subscreens to the custom screen

    • Define the layout of each subscreen using the Screen Painter

    • Use the PBO (Process Before Output) module to display the subscreens in the desired layout

    • Use the PAI (Process After Input) module to h

  • Answered by AI
  • Q3. What is the use of constructor? When it will be called
  • Ans. 

    Constructor is used to initialize an object. It is called when an object is created.

    • Constructor is a special method with the same name as the class.

    • It is used to initialize the instance variables of a class.

    • It is called automatically when an object is created using the new keyword.

    • Constructors can be overloaded to provide different ways of initializing objects.

    • Example: public class Employee { public Employee() { // con

  • Answered by AI
  • Q4. What is enhancement framework? Difference between customer exit and Badi
  • Ans. 

    Enhancement framework is a tool to modify standard SAP applications without changing the original code.

    • Enhancement framework provides a way to add custom code to standard SAP applications.

    • Customer exits are predefined hooks in the standard code that allow custom code to be added.

    • Badis are similar to customer exits but provide more flexibility and can be implemented multiple times.

    • Enhancement framework is used to avoid ...

  • Answered by AI
  • Q5. What is abstract class. Difference between abstract class and Interface
  • Ans. 

    Abstract class is a class that cannot be instantiated. Interface is a collection of abstract methods.

    • Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have instance variables, while interface cannot.

    • A class can implement multiple interfaces, but can only inherit from one abstract class.

    • Example of abstract class: Animal (cannot be instantiat...

  • Answered by AI
  • Q6. What is Singleton class. What is the use of singleton class
  • Ans. 

    Singleton class is a class that can only have one instance at a time.

    • It is used to ensure that there is only one instance of a class in the system.

    • It is often used in situations where a single object needs to coordinate actions across the system.

    • Example: Database connection class, logger class, configuration class.

    • It can be implemented using private constructors, static methods, and static variables.

  • Answered by AI
  • Q7. What is the annotation used to display text element in cds
  • Ans. 

    The annotation used to display text element in CDS is @Semantics.text

    • The @Semantics.text annotation is used to display text elements in CDS views

    • It is used in combination with the element name and the label for the text

    • Example: @Semantics.text.label: 'Product Description';

    • The label can be customized to display any desired text

  • Answered by AI
  • Q8. What is VDM module in CDS
  • Ans. 

    VDM module in CDS is a virtual data model that provides a semantic layer on top of the underlying database tables.

    • VDM stands for Virtual Data Model.

    • It is used in SAP ABAP CDS (Core Data Services) to define the structure and behavior of data models.

    • VDM provides a semantic layer that abstracts the complexity of the underlying database tables.

    • It allows developers to define entities, associations, and annotations to repres...

  • Answered by AI
  • Q9. How to publish Odata service by consumption view
  • Ans. 

    To publish Odata service by consumption view, create a consumption view and expose it as an Odata service.

    • Create a consumption view using SE11 transaction

    • Activate the view and generate the runtime object

    • Create an Odata service using SEGW transaction

    • Add the consumption view to the Odata service

    • Activate and publish the Odata service

  • Answered by AI
  • Q10. What is table function in cds. Practical example when it was used
  • Ans. 

    Table function in CDS is a reusable database function that can be used to define complex logic and calculations.

    • Table function is defined in CDS (Core Data Services) using the @EndUserFunction annotation.

    • It allows you to define complex logic and calculations that can be used in CDS views or ABAP programs.

    • Table functions can have input parameters and return a table of data as the result.

    • They can be used to perform data ...

  • Answered by AI
  • Q11. Which method will be called in backend to handle the deep entity call?
  • Ans. 

    The method called in backend to handle deep entity call is GET_DEEP_ENTITY.

    • GET_DEEP_ENTITY method is used to retrieve a deep entity from the backend system.

    • It is used to retrieve a single entity with its related entities in one request.

    • It is called when a deep entity is requested in OData service.

    • It is used to retrieve data from multiple tables in one request.

  • Answered by AI
  • Q12. What is partner profile in Idocs? Steps to create custom Idoc.
  • Ans. 

    Partner profile in Idocs is used to define communication partners and their settings.

    • Partner profile contains information about the communication partner such as their ID, address, and communication protocol

    • Partner profile is used to determine the outbound and inbound processing of Idocs

    • To create a custom Idoc, define the segments and fields using WE31 transaction

    • Create a message type using WE81 transaction and link it...

  • Answered by AI
  • Q13. What is search help exit
  • Ans. 

    Search help exit is a user-defined ABAP routine that is used to modify the search help behavior.

    • Search help exit is used to customize the search help functionality in SAP.

    • It allows developers to modify the search help behavior by adding additional checks or filters.

    • Search help exit is implemented as a user-defined ABAP routine that is called during the search help process.

    • It can be used to restrict the search results o...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for TCS SAP Abap Technical Consultant interview:
  • OO ABAP
  • ODATA
  • CORE ABAP
  • Cds
  • Interfaces
Interview preparation tips for other job seekers - Prepare Resume carefully. Abap is very big language having many areas .If you are writing that you have experience in some skill suppose(OData) then you are indirectly challenging the interviewer that you know everything in this area. So if you have little knowledge then say you have knowledge of this skill, Don't try to learn theory of any object and put it in resume because the interviewer will ask the real time scenarios. So whatever you are writing be confident in that. In 1 hour of interview nobody can judge you completely, Only thing he will see that whether he can take risk on you or not.

Skills evaluated in this interview

I was interviewed in May 2022.

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 - One-on-one 

(3 Questions)

  • Q1. ABAP related question like report smartforms , adobe form workflow ,
  • Q2. Coding experience , technical knowledge line RICFW and other activity , ABAP HR and core abap
  • Q3. What is code inspector , what is assistance class
  • Ans. 

    Code Inspector is a tool to check code quality. Assistance class is a reusable class to provide common functionality.

    • Code Inspector checks for syntax errors, performance issues, security vulnerabilities, and adherence to coding standards.

    • Assistance class provides reusable code for common functionality like date and time calculations, string operations, and database access.

    • Assistance class can be used in multiple progra...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very Good Company , working environment is very good , onsite opportunity is there , Work from home is also there
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 

(1 Question)

  • Q1. About sap fico configuration questions asked in interview
Round 3 - Technical 

(1 Question)

  • Q1. New gl concept, migration

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare properly about the configuration, data migration, new gl concept , assets accounting scenario based questions

I applied via Company Website and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain about accounts payable
  • Ans. 

    Accounts payable is a financial term that refers to the money owed by a company to its suppliers or vendors for goods or services received.

    • Accounts payable is a liability on the balance sheet.

    • It represents the amount owed by a company to its creditors.

    • It includes invoices, bills, and other payment obligations.

    • Accounts payable is recorded when goods or services are received but payment has not yet been made.

    • It is an imp...

  • Answered by AI
  • Q2. What is SAP FICO explain it
  • Ans. 

    SAP FICO is a module in SAP ERP that deals with financial accounting and controlling.

    • SAP FICO stands for Financial Accounting and Controlling.

    • It helps in managing financial transactions, generating financial statements, and analyzing financial data.

    • It includes sub-modules like General Ledger Accounting, Accounts Payable, Accounts Receivable, Asset Accounting, and Controlling.

    • It integrates with other SAP modules like Sa...

  • Answered by AI
  • Q3. What is accounts receivable
  • Ans. 

    Accounts receivable refers to the money owed to a company by its customers for goods or services provided on credit.

    • It is a current asset on the balance sheet.

    • Accounts receivable represents the credit sales made by a company.

    • It is recorded when a company invoices its customers for the goods or services provided.

    • The amount owed by customers is typically collected within a specified period, known as the credit terms.

    • If a...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Capgemini SAP Fico Consultant interview:
  • Accounts Payable
  • Accounts Receivable
  • Tally ERP9
Interview preparation tips for other job seekers - Please give me one chance i will prove my self

Skills evaluated in this interview

Wipro Interview FAQs

What are the top questions asked in Wipro MS CRM Consultant interview?

Some of the top questions asked at the Wipro MS CRM Consultant interview -

  1. Explain managed and unmanaged solut...read more
  2. Explain plugin execution st...read more
  3. One coding question to perform crud operation in ...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Wipro interview
Recruitment Consultant
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
View all
Wipro MS CRM Consultant Salary
based on 6 salaries
₹4.4 L/yr - ₹7.5 L/yr
25% less than the average MS CRM Consultant Salary in India
View more details
Project Engineer
32.6k salaries
unlock blur

₹1.8 L/yr - ₹8.3 L/yr

Senior Software Engineer
23k salaries
unlock blur

₹5.8 L/yr - ₹22.4 L/yr

Senior Associate
21.2k salaries
unlock blur

₹0.8 L/yr - ₹5.5 L/yr

Senior Project Engineer
20.6k salaries
unlock blur

₹5 L/yr - ₹19 L/yr

Technical Lead
18.6k salaries
unlock blur

₹8.2 L/yr - ₹36.5 L/yr

Explore more salaries
Compare Wipro with

TCS

3.7
Compare

Infosys

3.7
Compare

Tesla

4.3
Compare

Amazon

4.1
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview