Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

SAP gets the long text of the purchase order header

2025-04-10 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

SAP gets the long text of the purchase order header

Long text is not directly stored in a table, you can double-click the text in (me23n), and then select the menu goto- > header to view the technical information of the text, and then enter the relevant technical information through function module 'read_text', to get the text.

DATA: BEGIN OF T_LINES OCCURS 50.

INCLUDE STRUCTURE TLINE.

DATA: END OF T_LINES.

DATA: BEGIN OF HTEXT.

INCLUDE STRUCTURE THEAD.

DATA: END OF HTEXT.

DATA: TNAME LIKE THEAD-TDNAME.

DATA: S_LINE (100) TYPE C.

TNAME = open_po-ebeln. "pay the purchase order number to the variable

S_LINE =''.

CLEAR T_LINES.

REFRESH T_LINES.

*-purchase header long text

CALL FUNCTION 'READ_TEXT'

EXPORTING

CLIENT = SY-MANDT

ID = 'F01'

LANGUAGE ='1'

NAME = TNAME

OBJECT = 'EKKO'

ARCHIVE_HANDLE = 0

IMPORTING

HEADER = HTEXT

TABLES

LINES = T_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.

LOOP AT T_LINES.

IF T_LINES-TDLINE NE.

CONCATENATE S_LINE T_LINES-TDLINE INTO S_LINE.

ENDIF.

ENDLOOP.

Open_po-LTEXT = S_LINE.

ENDIF.

Https://mp.weixin.qq.com/s/mX_V6VoZEUt09RGseGyCfA

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report