我们可以看到 STXL-CLUSTD是类似乱码的东西。怎么成这样的,不清楚,簇表的长字段都是这个鸟样子。那如果我们来解析,完了。 在程序中,对于长字段,可能的操作大多数是读取。 在这个时候我们就用: FUNCTION: READ_TEXT。 CALL FUNCTION 'READ_TEXT' EXPORTING CLIENT = SY-MANDT id = ID language = LANGU name =...
使用功能模块READ_TEXT。 长版:你正在看一个所谓的集群表。有关详细信息,请参见http://help.sap....
WRITE: / wa_stxl-tdobject, wa_stxl-clustr, wa_stxl-clustd. IF wa_stxh-tdtexttype IS INITIAL. "SAPscript format IMPORT tline TO rt_lines FROM DATABASE stxl(tx) CLIENT sy-mandt ID wa_id ACCEPTING TRUNCATION "important for Unicode->Nonunicode IGNORING CONVERSION ERRORS. ELSE. "non-SAPsc...
DATA: T_STXL TYPE STANDARD TABLE OF TY_STXL. FIELD-SYMBOLS: <STXL> TYPE TY_STXL. * compressed text data without text name TYPES: BEGIN OF TY_STXL_RAW, CLUSTR TYPE STXL-CLUSTR, CLUSTD TYPE STXL-CLUSTD, END OF TY_STXL_RAW. DATA: T_STXL_RAW TYPE STANDARD TABLE OF TY_STXL_RAW. DATA...
Add configuration to alter table structure of STXL Remove field CLUSTD from target. This is not usable in HANA, so no need to waste column space. Add field TEXT to target, CHAR132. This new field will store a single line of long text. ...
CLUSTD – SAPscript: LONG RAW field for table STXL TDTEXTTYPE – SAPscript: Format of Text TDCOMPRESS – SAPscript: Text is compressed TDOCLASS – SAPscript: Object Class MSRDESCFLG – Indicator for SAPscript Text FADESCFLG – Flag for Description of Aid Given (SAPscript Text) ...
TEXT.TYPES:BEGINOFTY_STXL,TDNAMETYPESTXL-TDNAME,CLUSTRTYPESTXL-CLUSTR,CLUSTDTYPESTXL-CLUSTD,ENDOFTY_STXL.DATA:T_STXLTYPESTANDARDTABLEOFTY_STXL.FIELD-SYMBOLS:<STXL>TYPETY_STXL.*compressed text data without text nameTYPES:BEGINOFTY_STXL_RAW,CLUSTRTYPESTXL-CLUSTR,CLUSTDTYPESTXL-CLUSTD,ENDOFTY_STXL...
APPEND EMPTAB TO EMP. ”数据被赋给WORK AREA后再APPEND到表中。 除了上述的赋值方式外,还可以通过OPEN SQL将数据表中的数据按条件查询后放入内表中,对于OPEN SQL的具体用法,将后在后面介绍。 FOR EXAMPLE: TABLES:USER21. DATA:BEGIN OF EMP OCCURES 0, ...
Hi, I have to download data from table STXL. I am using WS_DOWNLOAD. STXL had a field CLUSTD of length 7902 with type LRAW. After downloading i am getting the following
But like STXL table for read LRAW data we use READ_TEXT fm.Is there also any FM by using this we can read PCL2 lraw data. regards, Reply Sandeep_Kumar Product and Topic Expert In response to Former Member Options Mark as New Bookmark Subscribe Mute Subscribe to RSS Feed Permal...