FORM get_components_ddic USING p_name TYPE any CHANGING pt_component TYPE abap_component_tab. DATA : lrf_linetype TYPE REF TO cl_abap_structdescr. lrf_linetype ?= cl_abap_structdescr=>describe_by_name( p_name ). pt_component = lrf_linetype->get_components( ). ENDFORM . "get_compon...
it's in a method and the entry parameter is IT_DATA type DATA. But when I want to loop at IT_DATA, the system return an error : IT_DATA is not a table. Can you show me how to do to arrive to loop at this table ? You must be a registered user to add a comment. If ...
*根据动态结构创建动态内表类型 CALL METHOD cl_abap_tabledescr=》create EXPORTING p_line_type = lr_struc RECEIVING p_result = lr_table. *参照动态结构类型和动态内表类型创建内表与工作区 CREATE DATA dyn_wa TYPE HANDLE lr_struc. CREATE DATA dyn_table TYPE HANDLE lr_table. *指定内表与工作区到...
For this purpose, the class CL_WD_BUTTON, and all other basis classes of UI elements, contains the appropriate method – for the example above, this is the method SET_TEXT. In the same manner, you can set or change all other properties of a UI element. For example, you can assign an...
0 Kudos 97 SAP Managed Tags: ABAP Development Hi, What is meant by dynamic selections in ABAP HR report using a LDB?Reply 1 ACCEPTED SOLUTION Former Member 2008 Dec 24 9:40 AM 0 Kudos 74 SAP Managed Tags: ABAP Development hi, Refer to this link... Reply ...
This method is used to set the currently selected leaf or node in a tree. If another element is already selected, it will be deselected. If no context element is specified, the leaf or node currently selected is deselected. When a Tree UI element is being used, this method should be ...
开发说明:在SAP的系统维护过程中,有时我们需要修改一些Table中的数据,可是很多Table又不能直接在Tcode:SE16中修改,使用的SAP ID又没有调试数据修改权限,这时我们应该怎么样修改数据呢?思路--> ABAP程序中的SQL 更新语句谁都有权限执行,只要我们能动态生成修改该Table字段的ABAP CODE动态执行即可!
开发说明:在SAP的系统维护过程中,有时我们需要修改一些Table中的数据,可是很多Table又不能直接在Tcode:SE16中修改,使用的SAP ID又没有调试数据修改权限,这时我们应该怎么样修改数据呢?思路--> ABAP程序中的SQL 更新语句谁都有权限执行,只要我们能动态生成修改该Table字段的ABAP CODE动态执行即可!
ABAP动态生成经典应用之Dynamic SQL Excute 程序 开发说明:在SAP的系统维护过程中,有时我们需要修改一些Table中的数据,可是很多Table又不能直接在Tcode:SE16中修改,使用的SAP ID又没有调试数据修改权限,这时我们应该怎么样修改数据呢?思路--> ABAP程序中的SQL 更新语句谁都有权限执行,只要我们能动态生成修改该Table...
In the below post you will find a basic example how to use cl_xslt_processor library. However it is really poorly documented, so I decided to dive deeper, test it a