Raja Rajeswari Kannan

Why user activities data is tremendously valuable?

Brief Introduction: Recommender Systems have taken more and more place in our lives from the last few decades, with the rise of YouTube, Amazon, Netflix and many other such web streaming platform i.e., from e-commerce (suggest to buyers articles that could interest them) to online advertisement (suggest to users the right contents, matching their preferences), …

Why user activities data is tremendously valuable? Read More »

Why Customer Analytics is prime to make better business decisions?

Business analytics uses financial analytic tools to make better business decisions, but will also show you how to manage people through people analytics, will help you understand customers and markets through customer analytics, and will help you master logistics and supply chains through operation analytics. The whole idea of customer analytics is a relatively new concept, while the …

Why Customer Analytics is prime to make better business decisions? Read More »

Field Symbols

Field Symbols Field Symbols are used to address the fields indirectly. The functionality of the Field Symbols corresponds to the functionality of the pointers in other programming languages. The declaration of Field Symbols is as shown below, FIELD-SYMBOLS <fs> Type type There are four different possibilities to define data type of field symbols Reference to …

Field Symbols Read More »

Class Builder

The ABAP classes, exception classes and interfaces are created using the Class Builder. The Class Builder is called through the SE24 Transaction. Name:  Provide a corresponding class name. Class type: There are four different types of ABAP classes. Usual ABAP classes Exception classes Persistent classes Test classes Final check option:  Enabling this option ensures that …

Class Builder Read More »

Understanding Web dynpro component

Web dynpro component 1. component controller => methods,events => Generates data 2. Component interface => Interface controller => methods,events =>Generates data 3. Views => Screen elements, controller, context, plugs => Receives data and stores. 4. Windows => Views, plugs, window controller

How to compare two tables of data using ABAP

TYPES: BEGIN OF star, star_name type c length 50, END OF star. DATA star_2018 TYPE star. DATA star_2019 type star. DATA it_table_2018 TYPE STANDARD TABLE OF star. DATA it_table_2019 TYPE STANDARD TABLE OF star. FIELD-SYMBOLS <star_2018> LIKE LINE OF it_table_2018. FIELD-SYMBOLS <star_2019> LIKE LINE OF it_table_2019. star_2018-star_name = ‘Logan paul’. APPEND star_2018 TO it_table_2018. star_2018-star_name …

How to compare two tables of data using ABAP Read More »

Value help ABAP

Search help in data table •The way, the input help defined can be verified under the Entry help/check tab of the data table. The respective column to be checked is „origin of the input help“. •Data Element –> Explicit search help attachment to data element •Domain–>Input help with fixed values, input help based on data …

Value help ABAP Read More »