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

regarding FB75 Tcode for where the data is getting saved for below requirement?

Former Member
0 Kudos
1,297

Hi all,

I was working with FB75 tcode in that there are several tabs among that one tab is NOTES where we will maintain long text.

can anyone please help me in finding that after entering text in that editor of notes where the data is getting stored??

i mean to ask is there any table in which that entered data will go and get stored?

please find the attached snap for the same

5 REPLIES 5
Read only

Former Member
0 Kudos
850

Hi Vipin,

Using FM CALL FUNCTION 'READ_TEXT' to get the long text.

you can double click into the text editor. then Goto->Header. you can get the Text Name, Language, Text ID and Text Object.

Using FM to get the long text.

Thanks,

Yawa

Read only

former_member196157
Active Participant
0 Kudos
850

hiii,

First you double click on entered text AND  then in MENU

GOTO---HEADER

The popup window display like ,

use the above parameters to ' READ_TEXT ' function module,

the code is,

data: v_lines1 like tline occurs 0 with header line.
data: v_name1   like stxh-tdname,
tdspras1  like stxh-tdspras,
tdid1     like stxh-tdid,
tdobject1 like stxh-tdobject.


tdobject1 = 'EKKO'.
tdid1       = 'F01'.
tdspras1  = 'EN'.
v_name1  =
5500000012.

call function 'READ_TEXT'
exporting
   id                            tdid1
   language                      tdspras1
   name                          v_name1
   object                        tdobject1
   tables
   lines                         v_lines1
exceptions
   id                            = 1
   language                      = 2
   name                          = 3
   not_found                     = 4
   object                        = 5
   reference_check               = 6
   wrong_access_to_archive       = 7
   others                        = 8.





Read only

Former Member
0 Kudos
850

Hi long text will be stored in stxl or stxh tables you can't view the data directly u need to use the function modules SAVE_TEXT  AND READ_TEXT.please check this function module

Read only

former_member15255
Active Participant
0 Kudos
850

Hello Vipin,

The tables it get stored are STXH & STXL and the combination use do find the data is based on 

Text Name : Refers to Purchase order Number/Sales Order / Accounting document number

Language   : Login language

Text Id       : You need to find from the table

Text Object : HeaderTable it going to be hit (EKKO,VBAK,BKPF)

Regards

Suresh Nair

Read only

RaymondGiuseppi
Active Contributor
0 Kudos
850

You will be required to use FM READ_TEXT to read those long texts. To identify the required parameter values, you have to display the text in full-screen editor, if text is displayed in a container of the dynpro a double-click will trigger a full screen display, there navigate in the menu : goto, header and the four top lines in the pop-up windows are the required key values, be aware that during creation of a new object, like an accounting document, a temporary number may be used. In this case the double-click may not have been implemented, so you will be required to create the document, and then display it (here FB03, Extras, Texts) to see the long text keys.

Regards,

Raymond