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: 

Re:note tab(text box) in Miro screen

Former Member
0 Kudos

Hi all

Can any one tell me in which table the Note tab (text box) of miro screen will be stored.

1 ACCEPTED SOLUTION

ferry_lianto
Active Contributor
0 Kudos

Hi,

Please try this.

1. Go to SE16.

2. Enter table name STXH.

3. Enter: TDOBJECT = 'RBKP', TDNAME = RBKP-BELNR + RBKP-GJAHR, TDID = '0001' and TDSPRAS = 'EN'.

4. Execute ...

5. Then go to SE37.

6. Enter function module READ_TEXT.

7. Fill parameter: ID = STXH-TDID, LANGUAGE = STXH-TDSPRAS, NAME = STXH-TDNAME and OBJECT = STXH-TDOBJECT.

8. Execute and check return table lines.

Regards,

Ferry Lianto

5 REPLIES 5

Former Member
0 Kudos

You can check in table STXH.

you can use the function modules READ_TEXT, EDIT_TEXT and SAVE_TEXT to get the text and save it.

Thanks,

Srinivas

Former Member
0 Kudos

Hi

Long Texts are stored in tables

STXH - header

STXL - details.

if you want to read the texts you can use Fun Module READ_TEXT

Any Application document Header and Item Long texts are stored in STXH table with the 4 parameters OBJECT,ID,NAME and LANG

These texts are fetched from database using READ_TEXT fun module by passing the above 4 parameters.

Double click on the text, from the text editor menu GOTO-> HEDAER

you will find the all above 4 parameters

so accordingly you have to pass to the fun module READ_TEXT to fetch the texts.

To Upload these Long Texts into the system use the fun modules

CREATE_TEXT and SAVE_TEXT.

Regards

Anji

ferry_lianto
Active Contributor
0 Kudos

Hi,

It stores in table STXH and you can use FM READ_TEXT to read.

Regards,

Ferry Lianto

0 Kudos

Thank you very much Sir,

If i have the fields in <b>rbkp</b> table how do I retrieve a particulat text from the stxh table. I mean if i know invoice doc number and year how do i retrieve the text for that particular invoice.

Thanks a lot

ferry_lianto
Active Contributor
0 Kudos

Hi,

Please try this.

1. Go to SE16.

2. Enter table name STXH.

3. Enter: TDOBJECT = 'RBKP', TDNAME = RBKP-BELNR + RBKP-GJAHR, TDID = '0001' and TDSPRAS = 'EN'.

4. Execute ...

5. Then go to SE37.

6. Enter function module READ_TEXT.

7. Fill parameter: ID = STXH-TDID, LANGUAGE = STXH-TDSPRAS, NAME = STXH-TDNAME and OBJECT = STXH-TDOBJECT.

8. Execute and check return table lines.

Regards,

Ferry Lianto