Functionality Returns the Statutory and Company contribution percentages for SocialSecurity read from the table T7THSS and T7THSC respectively. The inputparameters are the category of contribution(which is also the subtypeof the infotype 0365), the begin and end date for which thecontribution rates are required. The output parameters are thestatutory and company contribution rates for employee and employer. Example CALL FUNCTION 'RP_GET_SS_RATES_TH' EXPORTING CATGE = P_CATGE BEGDA = P_BEGDA ENDDA = P_ENDDA IMPORTING EMP_STAT_RATE = P_EMP_STAT_RATE EMPR_STAT_RATE = P_EMPR_STAT_RATE EMP_COMP_RATE = P_EMP_COMP_RATE EMPR_COMP_RATE = P_EMPR_COMP_RATE EXCEPTIONS TABLE_ENTRY_NOT_FOUND = 1 OTHERS = 2. |