Programme SAP RSLAW_PLUGIN - Program RSLAW_PLUGIN

Purpose
The report RSLAW_PLUGIN is the plug-in for the License AdministrationWorkbench (LAW) and forms the interfaces between the LAW and theconnected component systems. It is essentially used for the transfer ofthe measurement results from the component system to the LAW. Togetherwith the new LAW, it is now also used as a type of RFC module to allowremote communication.

Integration
The report was programmed so that it can be used in all releases fromSAP Basis 3.1I to SAP Web AS 6.40. To achieve this, the report uses arelease-dependent Include.

Prerequisites
If the report is copied to older releases, you need to adjust theInclude statement.
First, you need to change the name in all releases in which the plug-inInclude does not exist as an SAP object:
4.6C, 6.10, 6.20:,,rslaw_plugin_ddic --> zslaw_plugin_ddic
4.6B:,, ,,,,rslaw_plugin_ddic_46b --> zslaw_plugin_ddic_46b
4.0, 4.5: ,,,,rslaw_plugin_ddic_40b_45b --> zslaw_plugin_ddic_40b_45b
3.1: ,,,,rslaw_plugin_ddic_31i --> zslawddi
The plug-in is set up so that you only need to comment out the standardInclude statement and decomment the Include statement that is appopriatefor your release.
* SAP Web AS 6.40 and above
INCLUDE rslaw_plugin_ddic.
* SAP Basis 4.6, SAP Web AS 6.10, 6.20
*INCLUDE zslaw_plugin_ddic. "rslaw_plugin_ddic
* SAP Basis 4.6B
*INCLUDE zslaw_plugin_ddic_46b. "rslaw_plugin_ddic_46b
* SAP Basis 4.0, 4.5
*INCLUDE zslaw_plugin_ddic_40b_45b. "rslaw_plugin_ddic_40b_45b
* SAP Basis 3.1
*INCLUDE zslawddi. "rslaw_plugin_ddic_31i

Selection
The selection screen provides the following functions:

  • Downloading the measurement data to a file (this was previously the
  • only function)
    • Sending the measurement data by e-mail to any recipient

    • Sending the measurement data to the central LAW system by RFC

    • Additional processing of the measurement data using a customer's own
    • function module
      • Maintaining the RFC destination for sending to the central LAW system
      • Activities
        Additional processing of the measurement data using a customer's ownfunction module provides an interface to be able to handle themeasurement data in a problem-oriented way. This is not an exit.There is no automatic send after the execution of the functionmodule. The measurement data is transferred to the table it_transin an internal LAW format. This format is not documented.
        The following call is used. The interface to be implemented results fromthis
        CALL FUNCTION s_func,,,,"Selection parameter name
        EXPORTING
        i_param_1 = s_fcpar1,,,,,,"Selection parameter Parameter 1
        i_param_2 = s_fcpar2,,,,,,"Selection parameter Parameter 2
        i_param_3 = s_fcpar3,,,,,,"Selection parameter Parameter 3
        i_param_4 = s_fcpar4,,,,,,"Selection parameter Parameter 4
        TABLES
        it_trans = lt_trans,,,,,,"Table containing the measurement data
        EXCEPTIONS
        e_error = 1.
        s_fcpar1 to s_fcpar4 are field of length 60 of type C.
        it_trans is a table of the following type:
        DATA: BEGIN OF ls_trans OCCURS 0,
        line(1024) TYPE c,
        END OF ls_trans.

1493945System meas.: Also transferring code page names to LAW file
1513782LAW: File upload with different code pages
1513933LAW: No standard user type could be determined
855367LAW: Problems with UNICODE/non-UNICODE systems
846216FAQ: Answers to questions about License Admin Workbench
950609LAW_PLUGIN Version 5.11 no longer delivers e-mail addresses