This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Get the originating file GUID. | |
DATA: lv_aif_msgguid TYPE /aif/sxmssmguid, | |
lo_exception TYPE REF TO cx_root. | |
TRY . | |
CALL FUNCTION '/AIF/FILE_GET_GLOBALS' | |
IMPORTING | |
ximsgguid = lv_aif_msgguid. | |
CATCH cx_uuid_error INTO lo_exception. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECTION-SCREEN BEGIN OF SCREEN 0001 AS SUBSCREEN. | |
DATA: sel_fname TYPE zaif_filename, | |
sel_werks TYPE werks_d, | |
sel_vkgrp TYPE vkgrp, | |
sel_kunnr TYPE char5, | |
* sel_kunnr TYPE kunnr, | |
sel_zsdate TYPE zsdate. | |
SELECT-OPTIONS s_fname FOR sel_fname. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Underlined cells change to buttons else hide column. | |
IF <ls_field_catalog>-style = alv_style_font_underlined. | |
<ls_field_catalog>-style = cl_gui_alv_grid=>mc_style_button. | |
<ls_field_catalog>-convexit = 'Z2BTN'. "Conversion exit changes text to icon code. | |
<ls_field_catalog>-icon = abap_true. "Tells ALV display code as icon. | |
ELSEIF <ls_field_catalog>-style = cl_gui_alv_grid=>mc_style_button. | |
<ls_field_catalog>-style = alv_style_font_underlined. | |
<ls_field_catalog>-convexit = ''. | |
<ls_field_catalog>-icon = abap_false. |
OlderNewer