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

Long text non editable

Former Member
0 Likes
1,429

Hi,

I have a requirement of making long text non editable for the next change in a SAP transaction. I get long text in a BADI before save in 'TLINE' format. Can I change the properties of the long text there by any means there ? Any function module can do that ?

In the config, there is way of copying the text to another text type for audit trail. This solution is not a viable option in our case.

Regards,

Vin

Hi,

I have a requirement of making long text non editable for the next change in a SAP transaction. I get long text in a BADI before save in 'TLINE' format. Can I change the properties of the long text there by any means there ? Any function module can do that ?

In the config, there is way of copying the text to another text type for audit trail. This solution is not a viable option in our case.

Regards,

Vin

1 REPLY 1
Read only

Former Member
0 Likes
666

Hello,

You need to set FM ‘SAVE_TEXT’.or  'CREATE_TEXT'

tdformat = '>X'  <-- this format you can not set directly in editor

CONCATENATE '*' tdline

         INTO tdline

         SEPARATED BY space.

this will make text to be non editable.

Thank you...