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

Salesorder header text

Former Member
0 Likes
470

Hi all,

i have a requirement that currently i am creating salesorder using with ref of quote.

at this movement all header texts are copying from quote to sales order.

but i want to make chenges to these texts before saving the sales order.

where can i see all the copied texts before saving the sales order..?

i know that we have form exits in SAPMV45A but i didn't see any text related subroutnes here to make changes.

Thanks,

sara

2 REPLIES 2
Read only

Former Member
0 Likes
421

Hi,

You can see the sales order header text if you go to sales order VA03.In the menu bar, go to header-> texts and change there. If you want to do that thru program,

Then probably you have to use Read_text and Save_text function modules.

Thanks,

Vamsi.

Read only

former_member194669
Active Contributor
0 Likes
421

Hi,

You can try with userexit "userexit_save_document_prepare" in MV45AFZZ.

and try with the following


DATA BEGIN OF I_CATALOG OCCURS 0.
  INCLUDE STRUCTURE TCATALOG.
DATA END OF I_CATALOG.

IMPORT CATALOG FROM MEMORY ID 'SAPLSTXD'.

But i am not sure 100% whether we can retrieve all the long text thru memory id SAPLSTXD.

a®