Skip to content
NextLytics
Megamenü_2023_Über-uns

Shaping Business Intelligence

Whether clever add-on products for SAP BI, development of meaningful dashboards or implementation of AI-based applications - we shape the future of Business Intelligence together with you. 

Megamenü_2023_Über-uns_1

About us

As a partner with deep process know-how, knowledge of the latest SAP technologies as well as high social competence and many years of project experience, we shape the future of Business Intelligence in your company too.

Megamenü_2023_Methodik

Our Methodology

The mixture of classic waterfall model and agile methodology guarantees our projects a high level of efficiency and satisfaction on both sides. Learn more about our project approach.

Products
Megamenü_2023_NextTables

NextTables

Edit data in SAP BW out of the box: NextTables makes editing tables easier, faster and more intuitive, whether you use SAP BW on HANA, SAP S/4HANA or SAP BW 4/HANA.

Megamenü_2023_Connector

NextLytics Connectors

The increasing automation of processes requires the connectivity of IT systems. NextLytics Connectors allow you to connect your SAP ecosystem with various open-source technologies.

IT-Services
Megamenü_2023_Data-Science

Data Science & Engineering

Ready for the future? As a strong partner, we will support you in the design, implementation and optimization of your AI application.

Megamenü_2023_Planning

SAP Planning

We design new planning applications using SAP BPC Embedded, IP or SAC Planning which create added value for your company.

Megamenü_2023_Dashboarding

Dashboarding

We help you with our expertise to create meaningful dashboards based on Tableau, Power BI, SAP Analytics Cloud or SAP Lumira. 

Megamenü_2023_Data-Warehouse-1

SAP Data Warehouse

Are you planning a migration to SAP HANA? We show you the challenges and which advantages a migration provides.

Business Analytics
Megamenü_2023_Procurement

Procurement Analytics

Transparent and valid figures are important, especially in companies with a decentralized structure. SAP Procurement Analytics allows you to evaluate SAP ERP data in SAP BI.

Megamenü_2023_Reporting

SAP HR Reporting & Analytics

With our standard model for reporting from SAP HCM with SAP BW, you accelerate business activities and make data from various systems available centrally and validly.

Megamenü_2023_Dataquality

Data Quality Management

In times of Big Data and IoT, maintaining high data quality is of the utmost importance. With our Data Quality Management (DQM) solution, you always keep the overview.

Career
Megamenü_2023_Karriere-2b

Working at NextLytics

If you would like to work with pleasure and don't want to miss out on your professional and personal development, we are the right choice for you!

Megamenü_2023_Karriere-1

Senior

Time for a change? Take your next professional step and work with us to shape innovation and growth in an exciting business environment!

Megamenü_2023_Karriere-5

Junior

Enough of grey theory - time to get to know the colourful reality! Start your working life with us and enjoy your work with interesting projects.

Megamenü_2023_Karriere-4-1

Students

You don't just want to study theory, but also want to experience it in practice? Check out theory and practice with us and experience where the differences are made.

Megamenü_2023_Karriere-3

Jobs

You can find all open vacancies here. Look around and submit your application - we look forward to it! If there is no matching position, please send us your unsolicited application.

Blog
NextLytics Newsletter Teaser
Sign up now for our monthly newsletter!
Sign up for newsletter
 

Table Maintenance - Error Handling Explained

◀ Back to Knowledge Base

In any exit method, DATA, UPDATE or META, you can (and should) implement error handling and show an error message to the user. You can utilize the changing parameter CT_MESSAGES to show messages.

Our Table Maintenance BAdI blog series in overview

  1. Table Maintenance - How to Implement a BAdI (general overview)
  2. Table Maintenance BAdI - Meta Method Explained
  3. Table Maintenance BAdI - Data Method Explained
  4. Table Maintenance BAdI - Update Method Explained
  5. Table Maintenance BAdI - Error Handling Explained

Visual Types

Currently, “modal” and “toast” visual types are available 

  • /nly/cl_table_rest_v3=>co_visu_type_modal to show a popup with ok button

Table Maintenance - Error Handling Explained 1

  • /nly/cl_table_rest_v3=>co_visu_type_toast to show a dialog without user interaction

Table Maintenance - Error Handling Explained 2

Message Types

Furthermore, you can use the following message types to indicate the severity of the message:

  • /nly/cl_table_rest_v3=>co_msg_type_info (no colour)
  • /nly/cl_table_rest_v3=>co_msg_type_success (green)
  • /nly/cl_table_rest_v3=>co_msg_type_warning (yellow)
  • /nly/cl_table_rest_v3=>co_msg_type_error (red)

CT_MESSAGES Explained

The messages are passed using the CT_MESSAGES table. You can find CT_MESSAGES parameters in the table below.

Property

Type

Description

Possible Values

TYPE

CHAR 30

Message Type

warning - Warning

error - Error

info - Info

success - Success

VISU_TYPE

CHAR 30

Visualisation Type

modal - popup with ok button

toast - modal without user interaction

HDR

STRING

Message Header

 

MSG

STRING

Message

 

ADD_INFO

STRING

Additional information

NextLytics internal use only

 

Code example

You can find an example of the code below

DATA:ls_message TYPE /nly/ts_message.
ls_message = VALUE #( hdr = 'Title'
msg = 'Message'
type = /nly/cl_table_rest_v3=>co_msg_type_error
visu_type = /nly/cl_table_rest_v3=>co_visu_type_modal
) .
APPEND ls_message TO ct_messages.

You can use this approach to add a message to your DATA exit, as shown below. In this example, no data should be shown in November. Data processing will be skipped using the E_SKIP parameter and an error message will be shown to the user.


IF i_step = 1.
IF sy-datum+4(2) = '11'.

e_skip = 'X'.
ct_messages = VALUE #( BASE ct_messages
( type = /nly/cl_table_rest_v3=>co_msg_type_error
visu_type = /nly/cl_table_rest_v3=>co_visu_type_toast
hdr = 'Planning not allowed'
msg = 'Planning round is over, no values will be displayed'
).

ENDIF.
ENDIF.

 


Which License is needed for this feature Professional | Enterprise


Do you have a question regarding NextTables? Already a customer? Please click here for Support.