Application Development 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: 

Sales Order User Exit for Texts

obadiah_king
Explorer
0 Kudos
2,845

I have a requirement to verify the language keys of the header and items texts of a sales order at order save time, and change the language keys if applicable. Where is there an exit in this process that I can manipulate this, it does not appear that any of the sales order exit will help me. I think that I need to add my exit code into function module V70T, possibly in include RV70TNNN. However if I try to put any code in this include it will not syntax check, it fails with the error "Statement is not accessible".

Thanks

1 ACCEPTED SOLUTION

naimesh_patel
Active Contributor
0 Kudos
592

The include program RV70TNNN is the part of the main program SAPLV70T.

You have to use the VOFM transaction to create your own code into this include. In VOFM follow:

Data Transfer > Text names

Here you need to create your new routine in the customer namespace. (Routine number must be more than 600).

Check this document on VOFM

http://saptechsolutions.com/pdf/InsideVOFM.pdf

Once you create your routine here, you need to attach it into the text determination of your text in the customization.

Regards,

Naimesh Patel

1 REPLY 1

naimesh_patel
Active Contributor
0 Kudos
593

The include program RV70TNNN is the part of the main program SAPLV70T.

You have to use the VOFM transaction to create your own code into this include. In VOFM follow:

Data Transfer > Text names

Here you need to create your new routine in the customer namespace. (Routine number must be more than 600).

Check this document on VOFM

http://saptechsolutions.com/pdf/InsideVOFM.pdf

Once you create your routine here, you need to attach it into the text determination of your text in the customization.

Regards,

Naimesh Patel