2024 Aug 01 10:41 AM - edited 2024 Aug 01 10:49 AM
Hello dear ABAP experts,
I have a requirement to add an additional field in the Cost Center master data. I did this with User-Exit COOMKS01.
However, I can't use the value after the input. SAP only saves what is stored in structure CSKS_CI instead.
And I can't move what is stored in CI_CSKS to the CSKS_CI structure.
Can someone who already implemented exit COOMKS01 tell me how am I supposed to get this input value?
Thanks in advance
Alexsander
Request clarification before answering.
The DDIC structure CSKS_CI is to be used for your screen fields according to the COOMKS01 documentation. You should declare it like any other DDIC structure used for the screen fields, with TABLES:
TABLES csks_ci.
CSKS_CI is not filled or read by the standard program. It's just the documentation which tells to use it for your screen fields. Technically speaking, I looked at S/4HANA 2023 code, CSKS_CI is not used by the standard, so you might not use it if you wish.
You have to implement the function modules below.
The include LXKM1F00 provides an example:
For information:
As explained in the documentation, see also 141707 - Customer enhancements: Checks for CO master data - SAP for Me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should not use CI_CSKS. You should use CSKS_CI. Answer edited.
If needed, debug the standard code after the PAI (LKMA1F39):
User | Count |
---|---|
7 | |
5 | |
5 | |
4 | |
3 | |
2 | |
2 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.