cancel
Showing results for 
Search instead for 
Did you mean: 

Dummy texts in STXH resulting in freak texts during order creation

Former Member
0 Kudos

Hi All,

We are facing a very strange issue. One of our programs which does a batch update using VA21 is causing some dummy entries to be created in STXH. This would come with Object id as VBBP and object name as XXXXXXXXXX<posnr>. After this happens the text contents are getting copied into some (not all) of the new orders created. There is no specific pattern as such, and this continues till we delete the dummy texts using RVTEXTE. Have any one come accross this kind of an issue before? If yes, please help.

Regards,

Hari.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Hari,

since you did not got any ans,

neither do i have. but there is one way to track this.

FM SAVE_TEXT is used for storing long data in table STXH.

so put breakpoint on all the SAVE_TEXT and then try to debug.

may this be of some help

thanks

surjit

Former Member
0 Kudos

Hi Surjit,

Thanks for the reply. But our issue is that this is a freak occurence, does not happen always.We hit this once in a while in the peoduction system.So debugging will not help.

Regards,

Hari.

Former Member
0 Kudos

hi,

check with any copy procedure triggers for particular type or order,

create the same kind of order manually then find out any text is copied.

cheers,

sasi

Former Member
0 Kudos

Thanks again. But as i mentioned this is not happening for a particular order type. We have strived hard to replicate this scenario but without success. What baffles me is that the new orders seemz to be getting the texts after the dummy texts appear in STXH, and hence the transaction data in STXH is influencing new orders.

Former Member
0 Kudos

Hari,

This cannot be standard system behaviour. It has to be one of the many different ways texts are entered. Check the program that is creating and adding these texts. What is the input? If it is coming from a file, check the file. Check your copying requirements. May be there is some code that says do this if certain conditions are met.

Even though it happens randomly, I am sure something in the text should tell you. What kind of text do you see? Do you have any problems in terms of update sequence? First your document should be saved and wait until all updates are done. Then your texts should be saved and committed.

Is the behaviour isolated to this one particular program or it happens some other ways too?

STXH should not have any texts, it is STXL that has the text. Are you looking at the tables directly(not advisable) or are you looking at the texts in the document?

Regards,

Srinivas

Former Member
0 Kudos

STXH contain only header information, which is created by SAVE_TEXT. and text is stored in STXL in encrypted form. when you use READ_TEXT to read this text.

READ_TEXT take header information from STXH and for concerned object retreive text from STXL.

So i think error is there in the coding somewhere , when you are saving header information in STXH.

hope i am right

regards