SAP ABAP Data Element KKR_EXITF (Name Reference to User Exit Form Routine)
Hierarchy
BBPCRM (Software Component) BBPCRM
   CRM (Application Component) Customer Relationship Management
     CRM_APPLICATION (Package) All CRM Components Without Special Structure Packages
       KKR (Package) CO Hierarchy Summarization
Basic Data
Data Element KKR_EXITF
Short Description Name Reference to User Exit Form Routine  
Data Type
Category of Dictionary Type D   Domain
Type of Object Referenced     No Information
Domain / Name of Reference Type EXIT_NR    
Data Type CHAR   Character String 
Length 3    
Decimal Places 0    
Output Length 3    
Value Table      
Further Characteristics
Search Help: Name    
Search Help: Parameters    
Parameter ID   
Default Component name    
Change document    
No Input History    
Basic direction is set to LTR    
No BIDI Filtering    
Field Label
  Length  Field Label  
Short Exit 
Medium 10 User exit 
Long 10 User exit 
Heading Exit 
Documentation

Definition

The summarized totals records can be modified using user exits.

Use

Examples:

  • You can group a large number of different cost elements into a few reporting cost elements.
  • Origin information that is no longer needed can be set to blank.

This increases the performance of the summarization run and report calls.

Procedure

One entry must have three places and begin with the letter U. For example, user exit U01 calls form routine B01_USER_EXIT in the user exit pool.

Example

  • Program example:

    PROGRAM ZVERDUEX.
    TABLES: KKRKEYF.

    * USER-EXIT COSPA:
    FORM B01_USER_EXIT.
    IF KKRKEYF-KSTAR GE '0000400000' and
    KKRKEYF-KSTAR LT '0000600000'.
    KKRKEYF-KSTAR = '0000400000'.
    ELSE.
    KKRKEYF-KSTAR = '0000800000'.
    ENDIF.
    CLEAR KKRKEYF-HRKFT.
    SY-SUBRC = 0.
    ENDFORM.

    * USER-EXIT COSSA:
    FORM B02_USER_EXIT.
    CLEAR: KKRKEYF-HRKFT, KKRKEYF-VRGNG, KKRKEYF-PAROB.
    SY-SUBRC = 0.
    ENDFORM.

History
Last changed by/on SAP  19971002 
SAP Release Created in