Ansicht
Dokumentation

EXIT_SAPLVV01_002 -

EXIT_SAPLVV01_002 -

PERFORM Short Reference   rdisp/max_wprun_time - Maximum work process run time  
This documentation is copyright by SAP AG.
SAP E-Book

Overview

In the customer exit, the values of the transferred filter object types must be read from the master record tables.

Input parameters

  • CUSTOMER_NUMBER
This parameter contains the number of the customer for which the customer filter object needs to be read.
  • GENERAL_DATA
This parameter contains the client-wide valid customer master data (KNA1 segment). This data no longer needs to be read from the database.
  • FILTER_OBJECT_TYPE
This parameter contains the list of the filter object types for which the values of the customer master are to be read from the master record table.

Output parameters

Parameter FILTER_OBJECT_VALUE is a table in which the filter object type and the corresponding filter object value are entered for every customer filter object read.

Example coding

The example assumes that a new receiver filter object 'ZLAND' was created, referring to the country in the general data of the customer master (table KNA1, field LAND1).

LOOP AT filter_object_type.

  CASE filter_object_type-objtype.

    WHEN 'ZLAND'.

      filter_object_value-objtype = filter_object_type-objtype.

      filter_object_value-value   = general_data-land1.

      APPEND filter_object_value.

  ENDCASE.

ENDLOOP.






BAL Application Log Documentation   CL_GUI_FRONTEND_SERVICES - Frontend Services  
This documentation is copyright by SAP AG.

Length: 2068 Date: 20240420 Time: 123608     sap01-206 ( 26 ms )