‎2007 Aug 24 4:31 PM
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
‎2007 Aug 24 4:36 PM
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.
‎2007 Aug 24 4:50 PM
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®