Application Development and Automation Blog Posts
Learn and share on deeper, cross technology development topics such as integration and connectivity, automation, cloud extensibility, developing at scale, and security.
cancel
Showing results for 
Search instead for 
Did you mean: 
reachdebopriya
Active Participant
18,122

The goal of the object is to create the Global Class and Method for Application Log so that it can be reused where necessary in any RICEF object.

Application Log provides an infrastructure for collecting messages and exceptions in a log, saving, reading and deleting logs in the database and displaying them.

Application Log provides multiple advantages:

  • System-wide uniform event logging
  • Accessible standardized UI based on ABAP List Viewer (ALV)
  • High capabilities for analysis of log data  

Application logging records the progress of the execution of an application. Whereas the system log records system events, you can use the application log to record application-specific events.

Application Log is designed to temporarily store messages. Logs should be deleted in intervals (e.g. weekly batch job for deleting logs) to avoid too high database load.

A typical use of the Application Log is within delivery processing. Negative results of a dangerous goods check are written to the Application Log. Application messages and reactions are collected based on a customer defined examination schema (reactions determine how the document will be handled further). This approach increases the transparency of the process for end users. Messages are collected temporarily and are not saved to the database.


First create object and sub object, Go to transaction SLG0.

Go to change mode and click on New entries button on the application tool bar. 


Then define the sub object for the object.

Select the object and double click on sub object.

Create Global Class and Method to define the Application log code


Define the following Parameter in Method

Define following Data in the Method

Populate the Header data with the following details

Create the log with FM BAL_LOG_CREATE

Add all the message in the log using FM BAL_LOG_MSG_ADD

Save the Log using FM BAL_DB_SAVE

Display the log using FM  BAL_DSP_LOG_DISPLAY

Define that Class and method in the code wherever necessary


The Method will create log with all the messages and generate log (Transaction SLG1)


Code is attached.

10 Comments
ceedee666
SAP Champion
SAP Champion
0 Kudos

Hi Debopriya,

creating an OO wrapper for the functions modules of the application log is a good idea. I guess it's one of the classes most development organizations have build themselfs in one way or the other.

However, the version of an OO wrapper for the application log you presented isn't suitable for reuse. Furthermore, it is not even an OO implemention, but rather a PERFORM disguised as a method. You could, for example, simply make this method static as no attributes of the class are used. If you really want to implemente a reusable OO API for the application log you should consider the following:

  • Create a class with the attributes object and sub-object and log handle
  • provide a constructor the instantiates the class using object and sub-object as a parameter and sets the log handle
  • provide methods for logging exceptions, logging messages, logging messages in a message table, logging messages in the BAPIRET2 structures, logging additional data....
  • create a separate class to collect methods related to displaying the application log

Using such a class as a basis, you could implement the method you presented here using just a few message calls. Furthermore you'd really have a reusable API for the application logs.

In summary, it is a pity, that SAP doesn't provide a clean OO API for the application log out of the box and forces customers to develop such an API themself.

Best,

Christian

reachdebopriya
Active Participant
0 Kudos

Hi Christian,

Thanks a lot for the suggestion.

Will come up with the new version as you said.

BR

Debopriya Ghosh

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Kudos

Why do you want to re-invent the wheel?

IF_RECA_MESSAGE_LIST is the most robust message handling API i have used until now. I know that it is not in the SAP_BASIS component & but you can build your custom framework based on it.

- Suhas

reachdebopriya
Active Participant

Hi Suhas,

Thanks a lot for the suggestions.

BR

Debopriya Ghosh

deepak_h3
Participant
0 Kudos
IF_RECA_MESSAGE_LIST is not available in the system by default.

 
former_member210563
Participant
0 Kudos
Hi,

What type is your field symbo <lfs_msg> ?
Jelena_Perfiljeva
Active Contributor
This blog is a bit old but it comes up on top of Google search, so if you're reading this in 2019 or later please take a look at ABAP Logger on Github that works very well.
kammaje_cis
SAP Mentor
SAP Mentor
SAP Already provides a global class for it. (Assuming you are on ECC). If you still do not have it (if you are on CRM/SRM/GW etc) search for a class with *APP*LOG*. Different teams of SAP would have already created enough OO implementations for this purpose. Here is what I did.
" Step 1. Create a Log Object and Sub Object using TCode SLG0

" Step 2. Create an instance of a log class
DATA mo_application_log TYPE REF TO cl_app_log_handler .
mo_application_log = NEW cl_app_log_handler(
i_obj = 'ZEMT' "Log Object
i_subobj = 'ZUI' "Sub Object
).

" Step 3. Write Log
DATA: lv_message1 TYPE char255.
MESSAGE e038(zemt_supp_message) INTO lv_message1.
mo_application_log->write_text(
EXPORTING
i_text = lv_message1
i_msgty = 'W' ). "E or I

" Step 4. Save Log
mo_application_log->save( ).

 
former_member772413
Discoverer
0 Kudos

Hi Krishna,

 

I tried the above code it's not creating a log.

Problem is again that it's not part of basis package.