The changes of this parameter are only visible in edit mode and makes sense only for character or string fields. If it is set to ABAP_TRUE (‘X’), then the ALV grid stores in internal table the value in ...
... a type EXCHANGE_RATES.
CLASS lcl_exchange_rates DEFINITION.
PUBLIC SECTION.
TYPES: BEGIN OF currency,
currency_name TYPE string,
unit TYPE string, ...
...
endmethod.
method change_function_visibility.
data: current_screen type string value '(RSDBRUNT)CURRENT_SCREEN'.
field-symbols: type sydb0_screen.
assign (current_screen) to . ...
... &2 STRING or RAWSTRING fields
CI_TABL_EXCEPTN
CL_CI_TEST_DDIC_TABLES
70
W
Though table &1 lies in column store, secondary index &2 has more than one field
CI_TABL_EXCEPTN ...
...
data: ok_code type sy-ucomm.
class lcl_json_structure definition deferred.
class lcl_hlp definition.
public section.
data: converter type ref to lcl_json_structure,
results type string, ...
...
types: begin of t_symbol,
symbol type char01,
name type string,
end of t_symbol.
data symbols type standard table of t_symbol.
symbols = value #(
( symbol = sym_space name = 'SYM_SPACE ' ) ...
...
returning value(r_xstring) type xstring.
Here goes the implementation:
method create_xlsx_from_itab.
data(lt_data) = ref #( it_data ).
if it_fieldcat is initial. ...
... type.
Then I've updated the calculation of the field to the one shown bellow. The arithmetic calculation is still the same but I've used string expressions to format the value correctly. ...
...
*"----------------------------------------------------------------------
constants: gos_path type string value '(SAPLSWUG)GO_GOS_MANAGER'.
field-symbols: type ref to cl_gos_manager. ...
...
data: g_fieldname type string.
data: g_okcode type sy-ucomm.
field-symbols: type lvc_s_fcat.
field-symbols: type any.
define add_param_descr.
concatenate 'P_DESC' &1 into g_fieldname. ...
...
form export_to_excel.
data: f_filename type string.
* create zcl_excel_worksheet object
data: lo_excel type ref to zcl_excel,
lo_worksheet type ref to zcl_excel_worksheet. ...
...
field-symbols: type any.
field-symbols: type any.
field-symbols: type any.
field-symbols: type standard table.
data: f_times type i.
data: f_text type string.
data: f_textnew type string. ...
... nugg file. report zab_authorization_check_list.
types: begin of t_alv,
program type trdir-name,
objct type xuobject,
fiel1 type xufield,
valu1 type sstringwa, ...
...
*"hidden parameter
parameters: p_carri2 type scarr-carrid no-display.
*"parameter with memory id
parameters: p_carri3 type char3 memory id car.
*"string parameter with field lenght set ...
...
data: f_ekkotxt type string.
data: begin of fs_condcheck,
set type c,
ebelp type ekpo-ebelp,
end of fs_condcheck.
data: ft_condcheck like standard table of fs_condcheck. ...
... table with sort and filter criteria if they were passed. To do that I use class cl_salv_ex_util. At the end result table is transformed to xstring with method cl_salv_bs_tt_util=>if_salv_bs_tt_util~transform. ...
... REF TO CL_GUI_CUSTOM_CONTAINER Implementation: method create_and_init_chart.
*This is the code from http://abapblog.com.
data: f_lenght type i.
data: f_xstring type xstring.
data: fo_ixml_mf type ref to if_ixml. ...
... Then I'll paste the XML content here and save: After it's done I can prepare a module to read the text, replace title and subtitle and to create an xstring from it. I will use this xstring in ...
... article purpose I will use Pie2.5D type
Step 2) Let's setup title, subtitle, number of series and categories. In title I will use string TITLE_REPLACE and for subtitle SUBTITLE_REPLACE to be ...
... before we need to prepare our own GUI status with some basic buttons like 'Patern' or 'Pretty Printer'. After we create status we can create the ABAP code: report editor_test.
data: ft_code type standard table of string. ...
... downloaded to PC. If you don't want to download the file but you want to get it for futher use you'll have to request ET_XSTRING table. In other case do not request this parameter as it is a sign ...
... I've used this class to create a method to simplify the process of zipping. First of all class CL_ABAP_ZIP is zipping xstrings so I'll provide you the possibility to pass not only xstring variables ...
... extension
E_EXTENSION TYPE CSEQUENCE -> extension Main code: method get_filename_from_path.
data: m_offset type i.
data: m_path type string.
data: m_filename type string.
data: m_length type i. ...
...
data: m_k(30) value 'CONSTANTS'.
data: mt_src type table of string,
mt_tokens type type_tokens ,
mt_statements type type_statements ,
mt_keywords like table of m_k, ...