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...
confirm_flag TYPE c. DATA: itab_sql LIKE abapsource OCCURS 0 WITH HEADER LINE, itab_prog LIKE abapsource OCCURS 0 WITH HEADER LINE. START-OF-SELECTION. *程序执行直接进入ABAP代码编辑器 SET PF-STATUS 'PFSTA00'. WRITE: /1 'Edit Your SQL ...' COLOR 2. AT USER-COMMAND. *动态生成程序...
confirm_flag TYPE c. DATA: itab_sql LIKE abapsource OCCURS 0 WITH HEADER LINE, itab_prog LIKE abapsource OCCURS 0 WITH HEADER LINE. START-OF-SELECTION. *程序执行直接进入ABAP代码编辑器 SET PF-STATUS 'PFSTA00'. WRITE: /1 'Edit Your SQL ...' COLOR 2. AT USER-COMMAND. *动态生成程序...
SAP Managed Tags: ABAP Development Hi, What is meant by dynamic selections in ABAP HR report using a LDB? 1 ACCEPTED SOLUTION Former Member 2008 Dec 249:40 AM 0Kudos 86 SAP Managed Tags: ABAP Development hi, Refer to this link... ...
开发说明:在SAP的系统维护过程中,有时我们需要修改一些Table中的数据,可是很多Table又不能直接在Tcode:SE16中修改,使用的SAP ID又没有调试数据修改权限,这时我们应该怎么样修改数据呢?思路--> ABAP程序中的SQL 更新语句谁都有权限执行,只要我们能动态生成修改该Table字段的ABAP CODE动态执行即可!
SAP Managed Tags: ABAP Development Hi In this case you can use if statement and elseif statement and check the value of financial period.Write two sum statement.One for if and other for elseif.Both if and elseif sholud be included with in the loop of the internal table.I think this...
Solved: Hello All, In an abap query there is a date field in the selection screen with from & to values. I am trying to create a dynamic variant that will fill the
SAP Managed Tags: ABAP Development How to perform a SELECT MAX query where the column is dynamic in abap program? This is how the code looks like: FORM get_max_ref_field USING p_tabname p_field CHANGING p_max_date. SELECT MAX( p_field ) INTO p_max_date FROM (p_tabname). ENDFO...
Changing Aggreations After using the Button in most of the previous examples, we will now improve the Group presented in Dynamic Programming in Web Dynpro ABAP -
break-point. ENDFORM. " alv_subtotal Thanks in advanceReply All forum topics Previous Topic Next Topic 3 REPLIES Former Member 2008 Apr 28 12:09 PM 0 Kudos 86 SAP Managed Tags: ABAP Development where r u calling this form... Reply Former Member 2008 Apr 28 12:19 PM ...