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

I/O error for text VBBK

Former Member
0 Likes
4,767

Hi Friends,

I am facing a problem when scheduling the order creation program in the background. I receive an error ' I/O error for text VBBK 0410143215 ZOPR EN" and the whole process ends with an exception. The texts are been inserted in the table STXH for the Text id ZOPR.

Can you pls give me some suggestion interms of tuing the program or in terms of the tuning the table STXH.

Thanks an Advacnce.

Venky.

Hi Friends,

I am facing a problem when scheduling the order creation program in the background. I receive an error ' I/O error for text VBBK 0410143215 ZOPR EN" and the whole process ends with an exception. The texts are been inserted in the table STXH for the Text id ZOPR.

Can you pls give me some suggestion interms of tuing the program or in terms of the tuning the table STXH.

Thanks an Advacnce.

Venky.

10 REPLIES 10
Read only

Manohar2u
Active Contributor
0 Likes
3,037

Try to use FM SAVE_TEXT to load texts. This will avoid your errors.

Read only

Former Member
0 Likes
3,037

Hi Buddy,

I am using the FM save_text and also do the hard commit. Depending on the Database load it takes the time to upload in the table STXH and when the next order comments updates, the time table is in a kind of dead lock and hence I receive that error message.

Thanks.

Venky.

Read only

Former Member
0 Likes
3,037

There may have been some failed updates. Transactions SM13 and SM14 can help you find failed updates (V1 abd V2).

Then search for notes using "STXH I/O error"

Rob

Message was edited by:

Rob Burbank

Read only

0 Likes
3,037

Hi Rob,

I checked up in the Transaction SM13 and SM14 and there are no failed request for the STXH I/O. But when we faced this problem sometime back we had asked out Basis and DBA People to analyse the tabble STXH and that fixed the problem. But we are facing this problem again. Can you help us with any other suggestion / solution ?

Thanks.

Venky.

Read only

0 Likes
3,037

Hi

U should post the code where the text are loaded perhaps something is missing or the text is not inserted correctly.

Max

Read only

0 Likes
3,037

Like I said, there are plenty of notes for this, so search using the criteria I suggested plus any others you can think of.

Rob

Read only

0 Likes
3,037

Hi Friends,

Pls see the attahed code.

CALL FUNCTION 'SAVE_TEXT'

EXPORTING

  • client = v_client

header = thead

  • INSERT = ' '

savemode_direct = 'X'

IMPORTING

function = txtfunction

newheader = thead

TABLES

lines = tlines

EXCEPTIONS

id = 1

language = 2

name = 3

object = 5.

IF sy-subrc EQ 0.

CALL FUNCTION 'COMMIT_TEXT'

EXPORTING

object = 'VBBK'

name = ret_ord_no

id = 'ZOPR'

  • LANGUAGE = 'EN'

savemode_direct = 'X'.

COMMIT WORK.

ENDIF.

Thanks,

Venky.

Read only

0 Likes
3,037

Hi

I'm interesting on how you fill the table TLINES and structure THEAD

Max

Read only

0 Likes
3,037

Hi max,

I just populate the values as they are just an internal tables. I directly assign the values like the TDI, ORder Number and the Text Type.

Thanks,

Venky.

Read only

0 Likes
3,037

Hi Venky,

Did the problem is resolved, if yes please tell us how you solved it.

I am facing the same error, I wrote code in exit to update text in sales order using CREATE_TEXT FM.

Neeed your help !

Thanks and regards,

Anmol Bhat.