cancel
Showing results for 
Search instead for 
Did you mean: 

Note in FB70

Former Member
0 Kudos

Hi All,

I have a requirement to fetch long text in FB70 transaction through smartform.

1. Key text in "Notes" tab of FB70 transaction. But there is no F1 help available for "Notes" tab in FB70. I don not know how to fetch it.

2. I configure some Document text by T-code OBT8, and use FM READ TEXT with

lv_id = '0006'. "

lv_name = gs_vbrk-vbeln. " Document number

lv_object = 'BELEG'.

REFRESH lt_lines.

CALL FUNCTION 'READ_TEXT'

EXPORTING

id = lv_id

language = sy-langu

name = lv_name

object = lv_object

TABLES

lines = lt_lines

EXCEPTIONS

id = 1

language = 2

name = 3

not_found = 4

object = 5

reference_check = 6

wrong_access_to_archive = 7

OTHERS = 8.

gt_lines[] = lt_lines[].

I create Loop in smartform and Loop gt_lines into gs_line and create text to show &gs_line-tdline&

But nothing is show.

Can anyone help me solve it ?

Thank you.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

The note text should be placed in the customer item (if you try to post a document you can verify it), the keys of the text are:

1 -

TDNAME = BUKRSBELNRGJAHR+BUZEI (The keys of BSEG)

TDSPRAS = the language depends on your setting

TDID = 0001

TDOBJECT = DOC_ITEM

2 - You don't need any loop in your smartform, but you need to call the text directly

Max

Former Member
0 Kudos

Hi Max Bianchi,

Because text in FB70 have only 40 characters, I need more. How can I do that ?

Can I get text in "Notes" tab ?

Former Member
0 Kudos

?

I can insert more than 40 chararcters

Max

Former Member
0 Kudos

Hi Max,

Thank you very much.

Answers (0)