Product Area
FS² CCC
Problem
In certain scenarios, the system flags a credit limit change as manual, although it was executed automatically by the FS² Credit Management (CM) component.
Why does this happen?
The system compares:
The timestamp from the FS² CM tables (planned update)
The timestamp of the FD32 posting (actual update)
If the timestamps are not identical, the system assumes a manual change.
Technical Limitation (Previous Logic)
Only hours and minutes were compared.
This leads to false positives, for example:
FS² CM update:
10:15:59FD32 posting:
10:16:05Result: incorrectly identified as manual change
Solution Steps
You can implement a customer-specific pre-correction to avoid incorrect classifications.
Recommended Approach
Calculate the timestamp difference in seconds
Compare:
FS² CM timestamp
FD32 timestamp
Introduce a tolerance threshold
Allow a difference of up to 30 seconds
Adjust the logic
If the difference is ≤ 30 seconds, treat the change as automatic
If the difference is > 30 seconds, treat the change as manual
Logic Adjustment (ABAP Concept)
Expected Result
Eliminates false manual classifications
Improves accuracy of credit management tracking
Known Limitations
This solution is not part of the standard product.
As of December 5, 2025, there is:
No standard SAP correction
No Jira ticket for product inclusion
Implementation must be done as a custom enhancement
