Withholding Tax (WHT) not visible in /cockpit/1 after SAP upgrade.
Issue
Withholding Tax (WHT) not visible after SAP upgrade.
Solution
1. Be sure that RSPDN1100269 and RSPDN1198871 are applied in the customer system.
2. In transaction se11 Modify the /cockpit/ structure /COCKPIT/SWITH_ITEM
The Length of WT_WTEXMN should be changed from CHAR25 to TEXT15.
3. In transaction se37 check the function module /COCKPIT/IMPORT_WHT. Near line 29 is the error handling logic. In some versions of the product the line that checks to see if we successfully found a result is missing.
Problem:
CASE lc_subrc.
WHEN 1.
RAISE conne_import_wrong_comp_type.
WHEN 2.
RAISE conne_import_wrong_structure.
WHEN OTHERS.
RAISE error_occured.
ENDCASE.
Here that when lc_subrc is zero (no errors) it still raises an error and causes the WHT display to fail.
Before the line 'CASE lc_subrc' a condition must be included to be sure lc_subrc was not equal to 0 before the error handling is checked.
Solution:
CHECK lc_subrc NE 0.
CASE lc_subrc.
WHEN 1.
RAISE conne_import_wrong_comp_type.
WHEN 2.
RAISE conne_import_wrong_structure.
WHEN OTHERS.
RAISE error_occured.
ENDCASE.
Level of Complexity
High
Applies to
Product | Version | Build | Environment | Hardware |
---|---|---|---|---|
PDAP |
7.5 & Below |
References
Add any references to other internal or external articles
Article # 3046766