Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

CA10 Function module

0 Likes
1,954

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,379

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.

2 REPLIES 2
Read only

Former Member
0 Likes
1,380

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.

Read only

0 Likes
1,379

That's what I ended up doing. Thanks from spending time. Marked as accepted