SAP ABAP读取长文本的方法 SAP中所有的项目文本都存在以下两张数据表中:STXH抬头项目文本透明表STXL明细项目文本透明表长文本读取方法首先在STXH和STXL中根据OBJECT NAME,TEXTID,TEXTOBJECT查找到需要的文本对象, 然后通过READ_TEXT/READ_TEXT_INLINE函数来读取文本内容。 以读取交货单文本为例: 1.获取OBJECT NAME,TE...
CONDENSE INTAB-VBELNTEXT7 . IF INTAB-VBELNTEXT7 NE '' . IF STRLEN( INTAB-VBELNTEXT7 ) EQ 8. CONCATENATE INTAB-VBELNTEXT7+0(4) INTAB-VBELNTEXT7+4(2) INTAB-VBELNTEXT7+6(2) INTO INTAB-VBELNTEXT7 SEPARATED BY '/'. ELSE. INTAB-VBELNTEXT7 = '不符合日期格式YYYYMMDD'. END...
If a reference text is used, SAPscript automatically processes the reference chain and provides the text lines found in the text at the end of the chain. If an error occurs, the system leaves the function module and triggers the exception REFERENCE_CHECK. Function call: Syntax CALL FUNCTION ...
Then to insert these standard texts in the SAPscript choose the menu, Insert->Text->Standard and choose the standard text that you want to choose. Alternatively, you can display standard texts in your SAPscripts using the command: /: INCLUDE ZSTEXT OBJECT TEXT ID ST LANGUAGE EN where ZS...
Also, you have the newest function modulesREAD_MULTIPLE_TEXTS and READ_TEXT_TABLE, as explained in note2261311 – Function module for reading multiple SAPscript texts I think the code is not entirely correct. It may dump in case a standard text is very long. ...
Also, you have the newest function modulesREAD_MULTIPLE_TEXTS and READ_TEXT_TABLE, as explained in note2261311 – Function module for reading multiple SAPscript texts I think the code is not entirely correct. It may dump in case a standard text is very long. As you can see, T_STXL_RAW...
SAP Managed Tags: NW ABAP Print and Output Management hi, my requrirement is to read the header text using funtional module READ_TEXT for transaction code J1IF . in this i have to read text for 1> identification marks for this tdid = IDEN td object = J1IF 2> NATURE OF PROCES...
SAP Managed Tags: ABAP Development, SAP Customer Relationship Management Hi, i would like to add default texts in my smartforms. i know how to create text using t-code .But i don't know how to create multiple texts.and how do i get text name ,text id,text objet for a particular do...
SAPscript: Read text In order to process text modules in application programs, all information about a text module must be transferred to internal work areas. A text is read from the text file or text memory with this function module. It must be described fully by specifying OBJECT, NAME, ...
SAP Managed Tags: ABAP Development Hi again, 1. ur last statment is not clear 2. using READ_TEXT we will not get a single line text. 3. The parameter in this FM LINES is/should be an internal table. 4. All the data which has been entered (possible in more than one lines) will...