Ansicht
Dokumentation

EXIT_RFKRRANZ_001 -

EXIT_RFKRRANZ_001 -

ABAP Short Reference   CPI1466 during Backup  
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 vendor info system evaluations according to the field Industry (LFA1-BRSCH). These 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: T016T.
  • Then, insert the following coding in INCLUDE ZXFRRU02:

    CASE GRUPF_NAME.
    WHEN 'LFA1-BRSCH'.
    SELECT SINGLE * FROM T016T
    WHERE SPRAS EQ SY-LANGU
    AND BRSCH EQ GRUPF_VALUE.
    IF SY-SUBRC EQ 0.
    GRUPF_TEXT = T016T-BRTXT.
    ELSE.
    CLEAR GRUPF_TEXT:
    ENDIF.

    WHEN 'LFA1-.....'.
    "
    "
    WHEN 'LFA1-.....'.
    "
    "
    "
    ENDCASE.





RFUMSV00 - Advance Return for Tax on Sales/Purchases   ABAP Short Reference  
This documentation is copyright by SAP AG.

Length: 1103 Date: 20240419 Time: 022417     sap01-206 ( 17 ms )