English 中文(简体)
ABAP WebASactive Codepage
原标题:ABAP WebAS Active Codepage

我需要在扼杀中划定不同的界线。

为此,我需要使用CR + LF 六dec性质。

问题是,当我利用8个轨道/果园环境时,我只需要做这样的事情:

constants : c_lf type x value  10 .

constants : c_cr type x value  13 .

data : g_html type string.

concatenate  <html>  c_cr c_lf into g_html.

但是,在16个轨道/果园环境中,X变量并不代表CR和LF正确的六分母代表。

因此,我要利用这样的东西:

constants : c_lf(2) type x value  0010 .

constants : c_cr(2) type x value  0013 .

data : g_html type string.

concatenate  <html>  c_cr c_lf into g_html.

因此,可以找到ABAPWebAS使用的tes/char的数量?

感谢!

最佳回答

The function TR_GET_IS_UNICODE_SYSTEM indicate if the system is using unicode or not. It calls the CL_ABAP_CHAR_UTILITIES class to get the CHARSIZE attribute (bite/char) (by the way, this class contains a CR_LF public attribute...)

Regards
Guillaume

问题回答

暂无回答




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签