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: 

Texts of sales orders

former_member582701
Contributor
0 Kudos

Hi abapers,

I need to know the table where sap saves the text of the sales (to acces through trnsaction: VA03, Display doc. header details, Texts)

Best regards,

Manel

1 ACCEPTED SOLUTION

naimesh_patel
Active Contributor
0 Kudos

It stores in STXH Table.

You can you the FM READ_TEXT to read that text.

To use this FM you need to know the Text id, text name, text object.

You can fin it out by..

VA03... display .. Header > Text.

Select your text.. and press the "Detail" button..(with magnifier icon)..

In next screen GO TO > Header.

Here you find the required information to be pass to READ_TEXT.

Regards,

Naimesh Patel

6 REPLIES 6

naimesh_patel
Active Contributor
0 Kudos

It stores in STXH Table.

You can you the FM READ_TEXT to read that text.

To use this FM you need to know the Text id, text name, text object.

You can fin it out by..

VA03... display .. Header > Text.

Select your text.. and press the "Detail" button..(with magnifier icon)..

In next screen GO TO > Header.

Here you find the required information to be pass to READ_TEXT.

Regards,

Naimesh Patel

Former Member
0 Kudos

Hi,

That text will not be stored in the data base, Only the reference will be there with Object ID. To fetch that that text you need to use a function module READ_TEXT.

Pass below values

ID -> 0001

NAME -> SO Number

OBJECT -> VBBK

LANGUAGE -> EN.

Reward Points if this helps,

Satish

former_member582701
Contributor
0 Kudos

Then, all texts have to be filled manually?

Thanks

0 Kudos

No, you have to use FM SAVE_TEXT.

0 Kudos

What is your purpose?

IF you want to retrive the text in some report, you have to use this FM for each and every different text.

If you want to save text you need to use the SAVE_TEXT and again you need to call the FM SAVE_TEXT for each text.

Regards,

Naimesh Patel

Former Member
0 Kudos

Hi Manel,

Sales order will take text from various master data and transactional data. Each text will stored in different tables. Below are are the different tables for particular text data in sales order.

1. ADRCT -- Address Texts (Business Address Services),

2. ADRT Communication Data Text (Business Address Services)

3. BPTX Budgeting Text

4. CAWNT Value Texts

5. CKHT Texts for CKHS (CKHS is Header: Unit Costing (Control + Totals))

6. CKIT Texts for CKIS (CKIS is Items Unit Costing/Itemization Product Costing)

7. IBIBT IB: Installed base short texts

8. IBINT IB: Component short texts

9. STXB SAPscript: Texts in non-SAPscript format

10. STXH STXD SAPscript text file header

11. STXL STXD SAPscript text file lines

Hope this will answer you question.

-Thanks,

Ajay