在屏幕100的layout上,创建一个custom control,并输入名字Text_editor 2.3, 修改PBO代码 PBO: 创建pf status,详细参照-->http://www.baidusap.com/abap/dialog/1516 创建object container GO_EDITOR_CONTAINER. 然后再创建 text editor控件对象go_editor 数据对象定义: DATA: go_editor TYPE REF TO cl_gui_text...
* Create obejct for the TextEditor control 1. CREATE OBJECT editor 1. EXPORTING 1. wordwrap_mode = 1. cl_gui_textedit=>wordwrap_at_fixed_position 1. wordwrap_position = line_length 1. wordwrap_to_linebreak_mode = cl_gui_textedit=>true 1. parent = custom_container 1. EXCEPTIONS 1....
go_cust_container = NEW #( container_name = 'CUSTOM_CONTROL' ). CREATE OBJECT go_text_edit EXPORTING parent = go_cust_container wordwrap_mode = cl_gui_textedit=>wordwrap_at_fixed_position wordwrap_to_linebreak_mode = cl_gui_textedit=>false. ENDIF. ENDMODULE. MODULE user_command_0101 ...
SAVE_TEXT修改不了 就用CREATE_TEXT试了试,是可以显示出来的 代码如下: PARAMETERS : FID LIKE THEAD -TDID DEFAULT 'ZR01' , FNAME LIKE THEAD -TDNAME DEFAULT '8000002140' , FOBJECT LIKE THEAD -TDOBJECT DEFAULT 'VBBK' , TEXT TYPE STRING DEFAULT '1234567890' . DATA : FLINES LIKE TABLE OF T...
CREATE OBJECT regex EXPORTING pattern = 'd+.d+.d+.d+' ignore_case = 'X'. TRY. CALL METHOD regex->create_matcher EXPORTING text = p_input * table = RECEIVING matcher = matcher . CATCH cx_sy_matcher . ENDTRY. TRY. CALL METHOD matcher->match "是否完全匹配 ...
"ActiveX component can't create object: 'GetObject' - Excel : 2003 SAPGUI : 7_30 Code Below: If Not IsObject(application) Then Set SapGuiAuto = GetObject("SAPGUI") Set application = SapGuiAuto.GetScriptingEngineEnd IfIf Not IsObject(connection) Then Set connection = application.Children...
*& <-- p2 text *&---* FORM frm_comp_data . "创建实例 CREATE OBJECT gc_comp EXPORTING it_a = gt_a it_b = gt_b iv_desc_a = '销售订单A' iv_desc_b = '销售订单B' * it_fcat_a = * it_fcat_b = it_keys = gt_key. "比较内表 gc...
[Ports](ポート)>[Transactional RFC](トランザクション RFC)>[Create](作成) の順に選択します。 表示された設定ボックスで、 [own port name](独自のポート名) を選択します。 テスト ポートについて、SAP で始まる名前を入力します。 変更を保存します。 送信側ポート名はすべて、SAP...
text 复制 Error: file provisioner error .. timeout - last error: dial tcp 如果在运行脚本 deploy_controlplane.sh 后恰好出现身份验证问题,请运行以下命令: Azure CLI 复制 az logout az login 连接到 Deployer VM 部署控制平面后,使用远程后端 azurerm 存储Terraform 状态。 用于连接到 Deployer VM ...
i have an internal table with text and i want to save this text as text object or standard text so i can later use it in sapscript. how can i save this internal table at runtime... i used save_text fm... but i got error like Text Object is not Available. regards Reply 1 AC...