cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Text object VBBK

Former Member
0 Likes
24,854

Hi,

I want to see the contents of Object VBBK.

What data should I pass to fn. module 'READ_TEXT' to see its contents.

For ex:--

id -- 0002

language -- EN

name --- ???

object -- VBBK.

But, am pretty confused about 'name' parameter? What value should I pass to 'name'???

Thanks,

Shivaa........

View Entire Topic
Former Member
0 Likes

Hi Shiva,

You are right. With FM: READ_TEXT you can see its contents.

You have only to call the FM with the right parameters.

I willl give an example of it.

CALL FUNCTION 'READ_TEXT'

EXPORTING

  • CLIENT = SY-MANDT

id = '0001'

language = 'EN'

name = '0010000002'

object = 'VBBK'

  • ARCHIVE_HANDLE = 0

  • LOCAL_CAT = ' '

  • IMPORTING

  • HEADER =

tables

lines = it_lines

EXCEPTIONS

ID = 1

LANGUAGE = 2

NAME = 3

NOT_FOUND = 4

OBJECT = 5

REFERENCE_CHECK = 6

WRONG_ACCESS_TO_ARCHIVE = 7

OTHERS = 8

.

IF sy-subrc <> 0.

  • MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  • WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

The value of parameter can be the invoicenumer, or the po-number

sometimes for positions the invoicenumber concatentaed with the posnr.

like 0010000002000010.

hope this helps.

Gr., Frank