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: 

not able to get text id

Former Member
0 Kudos

Hi Experts,

we have created text entry in va01 header text, so how can i pick the text since i m not able to get the text id.

Regards

sumit

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Sumit,

follow the step and you will get the text id of the required text.

1.open sales doc in va03

2. click on icon display doc header details.

3. now click on display log icon showing in screen footer.

4. now you will get the text id.

use read_text FM to fetch out the text data.

Regards

vijay

5 REPLIES 5

Former Member
0 Kudos

Hi Sumit,

follow the step and you will get the text id of the required text.

1.open sales doc in va03

2. click on icon display doc header details.

3. now click on display log icon showing in screen footer.

4. now you will get the text id.

use read_text FM to fetch out the text data.

Regards

vijay

Former Member
0 Kudos

or u can go from MENU>Header>Texts

thanq

Former Member
0 Kudos

Hi,

Useing read_text fm u need to read the text.

ask u r functional consultant to give that id.

functional consultant knows that ID.

Regards,

Nandha

Former Member
0 Kudos

Hi,

Use this FM READ_TEXT' and pass the so no, language and id as shown below, for example in me23n --> enter po no --- click text tab ---. click header text there. In the area rightside to header text. click on that area --- then goto goto in menu ---> click header --> there u will find text id and text object there and pass them to the FM along with ur sono.

CONCATENATE i_ekpo-ebeln i_ekpo-ebelp INTO str.

CALL FUNCTION 'READ_TEXT'

EXPORTING

id = 'F01'

language = sy-langu

name = str

object = 'EKPO'

TABLES

  • lines = item_i_xtline

EXCEPTIONS

id = 1

language = 2

name = 3

not_found = 4

object = 5

reference_check = 6

wrong_access_to_archive = 7

OTHERS = 8.

Regards,

Kiran.

Former Member
0 Kudos

Hi Sumit

Double click on text.

In Menu Bar, click Goto -> Header.

There you can get Text-id.

Regards.