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: 

What table stores delivery header and item texts?

former_member1312574
Participant
0 Kudos

Hi Gurus,

Which table stores header and item text of delivery? We use VBBP text object and provide test id, language to read the texts using function module 'READ_TEXT'.

Can you please tell me which table store the texts?

Best regards,

Pavan

5 REPLIES 5

former_member191735
Active Contributor
0 Kudos

>

> Hi Gurus,

>

> Which table stores header and item text of delivery? We use VBBP text object and provide test id, language to read the texts using function module 'READ_TEXT'.

>

> Can you please tell me which table store the texts?

>

> Best regards,

> Pavan

This stores in text objects so you need to pass

Here is simple thing to find what to pass to the read_text function module.

Go to delivery - If you want to find header text - GOTO (on application menu) - Header -texts - Double click on the text where you enter text - GOTO (on application menu) - Header - This will give you a popup kind of screen where you can find the

text name (if it is header - only delivery number and if it is item - deliverynumber + item number ) , lang, Text id, Text object

This will give you the required parameters... .

0 Kudos

STXH is the Header table and

STXL is the Item table.

Former Member
0 Kudos

Hi,

You will find Text header and item details in STXH and STXL tables. Text will be stored in hexadecimal format in clusters so you won't be able to find actual text stored in table. you still have to use READ_TEXT function module to fetch texts.

Hope this will help you..

rgds,

PB

Former Member
0 Kudos

STXH and STXL tables

former_member1312574
Participant
0 Kudos

Thanks,