Ansicht
Dokumentation

EXIT_RFDRRANZ_001 -

EXIT_RFDRRANZ_001 -

Fill RESBD Structure from EBP Component Structure   RFUMSV00 - Advance Return for Tax on Sales/Purchases  
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.














RFUMSV00 - Advance Return for Tax on Sales/Purchases   CL_GUI_FRONTEND_SERVICES - Frontend Services  
This documentation is copyright by SAP AG.

Length: 1159 Date: 20240329 Time: 032351     sap01-206 ( 19 ms )