Ansicht
Dokumentation

EXIT_RFDRRANZ_001 -

EXIT_RFDRRANZ_001 -

BAL Application Log Documentation   Addresses (Business Address Services)  
This documentation is copyright by SAP AG.
SAP E-Book

Definition

This user exit allows you to import texts to be displayed in the corresponding lists for your own grouping characteristics.

Example

You want to group your customer info system evaluations according to the Customer classification field (KNA1-KUKLA). This must be imported from the corresponding text table so that the description for the characteristic values can be displayed.

  • First, you need to indicate the text table in INCLUDE ZXFRRTOP.

    TABLES: TKUKT.
  • Then, insert the following coding in INCLUDE ZXFRRU01:

    CASE GRUPF_NAME.
    WHEN 'KNA1-KUKLA'.
    SELECT SINGLE * FROM TKUKT
    WHERE SPRAS EQ SY-LANGU
    AND KUKLA EQ GRUPF_VALUE.
    IF SY-SUBRC EQ 0.
    GRUPF_TEXT = TKUKT-VTEXT.
    ELSE.
    CLEAR GRUPF_TEXT.
    ENDIF.

    WHEN 'KNA1-.....'.
    "
    "
    WHEN 'KNA1-.....'.
    "
    "
    "
    ENDCASE.














General Data in Customer Master   Addresses (Business Address Services)  
This documentation is copyright by SAP AG.

Length: 1159 Date: 20240328 Time: 135507     sap01-206 ( 20 ms )