Add office photos
Engaged Employer

Automatic Infotech

4.4
based on 252 Reviews
Filter interviews by

10+ GS Gupta Son Sports Interview Questions and Answers

Updated 11 Sep 2024

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

read more
Ans.

SAP ABAP Consultant interview questions

  • 1. DDIC T-code is used to access the Data Dictionary in SAP.

  • 2. A package is a container for development objects in SAP.

  • 3. Objects in SE11 refer to database tables, views, and data types.

  • 4. A domain defines the technical attributes of a field, while a data element defines its semantic attributes.

  • 5. Steps to create a table include defining the table structure, fields, and keys.

  • 6. Different types of views in SAP include database views, proj...read more

View 1 answer

Q2. 20. how to debug standard t-code

Ans.

To debug standard t-code, use transaction code 'SAT' or 'ABAP Debugger'.

  • Open the transaction code to be debugged

  • Enter 'SAT' or 'ABAP Debugger' in the command field

  • Set breakpoints at desired points in the code

  • Execute the transaction and the debugger will stop at the breakpoints

  • Analyze the variables and step through the code to identify issues

Add your answer

Q3. 17. how to add logo to smartform

Ans.

To add a logo to a smartform in SAP ABAP, you can follow these steps:

  • Create a graphic object in SE78 transaction with the logo image

  • In the smartform, create a window and specify its size and position

  • Insert a graphic object in the window and link it to the logo image

  • Adjust the properties of the graphic object as needed

  • Activate and test the smartform to see the logo added

Add your answer

Q4. 19. what is hotspot in report

Ans.

Hotspot is a clickable area in a report output that triggers an event or action.

  • Hotspot is defined using the keyword HOTSPOT in the ABAP code.

  • It is used to create interactive reports.

  • When a user clicks on a hotspot, it triggers an event or action.

  • Hotspots can be used to navigate to another report or to display additional information.

  • Example: A report showing a list of orders can have hotspots on the order numbers that, when clicked, display the details of that order.

Add your answer
Discover GS Gupta Son Sports interview dos and don'ts from real experiences

Q5. Business process of SAP MM 1. STO process describe in details with accounting entries and t code

Ans.

STO process involves transferring goods from one plant to another within the same company code.

  • Create a purchase order with item category 'Stock Transfer Order'

  • Create a delivery document with reference to the purchase order

  • Post goods issue from the supplying plant using t-code VL02N

  • Create a goods receipt in the receiving plant using t-code MIGO

  • Accounting entries include stock transfer between plants and inter-company billing

  • T-code for STO process is ME21N for purchase order c...read more

Add your answer

Q6. 18. ALV reports events

Ans.

ALV reports events are used to handle user interactions in ALV reports.

  • ALV reports events are triggered when a user interacts with an ALV report.

  • Some common ALV report events include AT LINE-SELECTION, AT USER-COMMAND, and AT PF.

  • These events can be used to perform actions such as navigating to another screen or executing a function module.

  • ALV report events are defined in the ALV function module and can be customized as per the requirement.

Add your answer
Are these interview questions helpful?

Q7. What is a primery and foreign key?

Ans.

A primary key is a unique identifier for a record in a table, while a foreign key is a reference to a primary key in another table.

  • Primary key ensures uniqueness of a record in a table

  • Foreign key establishes a relationship between two tables

  • Primary key can be used as a foreign key in another table

  • Foreign key can have null values if the relationship is optional

Add your answer

Q8. What are the object listed in DDIC?

Ans.

DDIC objects are used to define and manage data in SAP systems.

  • Tables

  • Views

  • Data elements

  • Domains

  • Search helps

  • Lock objects

  • Match code objects

  • Table maintenance generator

  • Function modules

  • Class pools

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q9. Explain to your young brother what is ERP ?

Ans.

ERP stands for Enterprise Resource Planning, a software system that helps businesses manage and integrate their important processes.

  • ERP is a software system used by businesses to manage and integrate important processes like finance, HR, inventory, and customer service.

  • It helps streamline operations, improve efficiency, and provide real-time insights for decision-making.

  • Examples of ERP systems include SAP, Oracle, and Microsoft Dynamics.

Add your answer

Q10. What is normalisation in database?

Ans.

Normalization is the process of organizing data in a database to minimize redundancy and dependency.

  • Normalization helps to eliminate data redundancy and inconsistencies.

  • It involves breaking down a table into smaller tables and defining relationships between them.

  • Normalization is divided into several normal forms, each with its own set of rules.

  • The most commonly used normal forms are first normal form (1NF), second normal form (2NF), and third normal form (3NF).

Add your answer

Q11. Yourself What is enterprise structure ? 16 fields of pricing Return process Credit memo debit memo Tax Determination Consignment process

Ans.

Enterprise structure refers to the way an organization is set up, including its divisions, business units, and geographical locations.

  • Enterprise structure is the way an organization is organized, including its divisions, business units, and geographical locations.

  • In SAP SD, enterprise structure is important for defining sales organizations, distribution channels, and divisions.

  • Examples of enterprise structure elements include company codes, sales offices, and plants.

Add your answer

Q12. 2. subcontracting process in detail with t codes

Ans.

Subcontracting process involves sending raw materials to a vendor for processing into finished goods.

  • Create a subcontracting purchase order (ME21N)

  • Issue raw materials to vendor (MIGO)

  • Vendor processes materials and returns finished goods (MIGO)

  • Receive finished goods into inventory (MIGO)

  • Settle subcontracting charges (MIRO)

Add your answer

Q13. What is indexing in SQL?

Ans.

Indexing in SQL is a technique used to improve the performance of queries by creating a data structure that allows for faster retrieval of data.

  • Indexes are created on columns in a database table to speed up the retrieval of rows that match a certain condition in a query.

  • They work similar to the index in a book, allowing the database to quickly locate the rows that satisfy the query criteria.

  • Indexes can be created using single or multiple columns, and can be unique or non-uniq...read more

Add your answer

Q14. What is trigger in sql?

Ans.

A trigger in SQL is a set of SQL statements that automatically 'fires' or executes when a specified event occurs in a database.

  • Triggers can be used to enforce business rules, perform auditing, or maintain referential integrity.

  • There are two main types of triggers: 'BEFORE' triggers, which execute before an event, and 'AFTER' triggers, which execute after an event.

  • Examples of events that can trigger a trigger include INSERT, UPDATE, and DELETE operations on a table.

Add your answer

Q15. What is polymorphism?

Ans.

Polymorphism is the ability of a single function or method to operate on different types of data.

  • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

  • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

  • Example: Animal superclass with subclasses Dog and Cat. Both Dog and Cat can be treated as Animals.

Add your answer

Q16. What is OOP ?

Ans.

OOP stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

  • OOP focuses on creating objects that contain data and methods to manipulate that data.

  • Encapsulation, inheritance, and polymorphism are key principles of OOP.

  • Examples of OOP languages include Java, C++, and Python.

Add your answer

Q17. Collection framework of java?

Ans.

The Collection framework in Java provides a set of interfaces and classes to store and manipulate groups of objects.

  • Includes interfaces like List, Set, and Map, along with their implementations like ArrayList, HashSet, and HashMap.

  • Provides algorithms like sorting and searching through the Collections class.

  • Introduced in Java 2, it simplifies the process of storing and manipulating groups of objects.

  • Allows for easy iteration and manipulation of collections of objects.

Add your answer

Q18. What Is ERP ?

Ans.

ERP stands for Enterprise Resource Planning, a software system that integrates various business functions to streamline processes.

  • ERP helps organizations to manage and automate their business processes.

  • It integrates functions like finance, HR, supply chain, and customer service.

  • Examples of ERP systems include SAP, Oracle, and Microsoft Dynamics.

Add your answer

Q19. What is P2P cycle

Ans.

P2P cycle stands for Procure to Pay cycle, which is the process of procuring goods or services from a vendor and paying for them.

  • Includes steps like requisition, purchase order creation, goods receipt, invoice verification, and payment

  • Ensures that goods or services are ordered, received, and paid for in a timely and efficient manner

  • Involves coordination between procurement, finance, and vendor management teams

  • Example: A company needs to purchase office supplies, so a requisit...read more

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

Interview Process at GS Gupta Son Sports

based on 3 interviews in the last 1 year
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
 • 530 Interview Questions
4.2
 • 210 Interview Questions
4.0
 • 162 Interview Questions
4.2
 • 156 Interview Questions
3.8
 • 138 Interview Questions
3.8
 • 130 Interview Questions
View all
Top Automatic Infotech 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
Get AmbitionBox app

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