‎2019 Sep 17 3:38 PM
Hi all,
I need a Function Module to dynamically enter CA10 texts, meaning the Standard Text Key and its Description.
I have tried FM Submission_Processing but it pops up an editor, prompting me to enter the details, save and click back to finish saving the data in the database.
Since I am implementing this to migrate legacy data and the records and going to be numerous, I cannot go through this process, clicking Save and Back so many times.
I also have tried SAVE_TEXT but it does not save the Standard Text Key Description, it does not reach tables T435 and T435T.
Does anyone know of an FM to save CA10 Texts or a way to suppress the editor from popping up?
Thanks
‎2019 Sep 18 9:34 AM
I checked the where-used list of table T435 and the only place I see its content altered is function module SUBMISSION_PROCESSING, so I think the only thing you can do is to mimic its logic in your custom code without the popping up editor part.
Normally I am heavily against direct DB operations on standard tables, but as this is a conversion program and it seems there is no other way around in my opinion its acceptable in this case.
‎2019 Sep 18 9:34 AM
I checked the where-used list of table T435 and the only place I see its content altered is function module SUBMISSION_PROCESSING, so I think the only thing you can do is to mimic its logic in your custom code without the popping up editor part.
Normally I am heavily against direct DB operations on standard tables, but as this is a conversion program and it seems there is no other way around in my opinion its acceptable in this case.
‎2019 Oct 03 10:36 AM
That's what I ended up doing. Thanks from spending time. Marked as accepted