SAP ABAP Data Element ICL_WC_FORM (BRF Expression for Deriving Overall Benefit)
Hierarchy
INSURANCE (Software Component) SAP Insurance
   FS-CM (Application Component) Claims Management
     ICL_WCOMP (Package) Workers Compensation
Basic Data
Data Element ICL_WC_FORM
Short Description BRF Expression for Deriving Overall Benefit  
Data Type
Category of Dictionary Type D   Domain
Type of Object Referenced     No Information
Domain / Name of Reference Type BRF_EXPRESSION    
Data Type CHAR   Character String 
Length 20    
Decimal Places 0    
Output Length 20    
Value Table TBRF150    
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 10 TotalBenef 
Medium 15 Total Benef.BRF 
Long 20 Overall Benefit BRF 
Heading  
Documentation

Definition

Indicates which BRF expression is used to determine the total benefit. The following amounts are considered:

  • Maximum amount
  • Minimum amount
  • Benefit amounts proposed by the claim handler

Use

In addition to the total benefit determined by the BRF expression, the calculation can also determine the benefit that would arise from entries made by the claim handler.

Dependencies

The structure must be provided with values. You can use function module ICLC_ICL_WCOMP_CONTEXT_SET for this purpose.

Example

  • BRF expression 0WC_IL_OVERALL01 uses the existing fields of the screen for the calculation.
  • The following BRF expression ensures that the total amount lies between the minimum amount and the maximum amount:

    IF( ( 0WC_S_AWW * 0WC_S_BENEFIT / 100 ) > 0WC_S_MAX_BEN,
    0WC_S_MAX_BEN,
    IF( ( 0WC_S_AWW * 0WC_S_BENEFIT / 100 ) < 0WC_S_MIN_BEN,
    0WC_S_MIN_BEN,
    0WC_S_AWW * 0WC_S_BENEFIT / 100 ) )"

History
Last changed by/on SAP  20110901 
SAP Release Created in 473