Application Log Creation
The following main transactions are used for application log: SLG0 : To create log ‘Object’ and ‘Sub Object’ SLG1 : To display the application log entries SLG2 : To delete the application log entries Creating Object and Sub Object: 1.Go to T-code 'SLG0'. 2.Click on 'New Entries'. 3.Enter Object Name and Object text. 4.click on save. 5.select the object and click on 'Sub objects'. 6.Enter 'Sub object' and 'Sub Object Text'. 7.click on 'Save. Create Message Class:T-Code SE91 To create & Display the Application Log mostly 4 Function Modules are used 1. BAL_LOG_CREATE - Pass the Object and Subobject name for which message log is to be created. 2.BAL_LOG_MSG_ADD - Pass the message that needs to be shown. It just adds the messge to the memory not to the database table. 3.BAL_DB_SAVE - Saves the message to the database table BALHDR. 4.BAL_DSP_LOG_DISPLAY - Used to display the stored application log from the table o...