Search
 
SCRIPT & CODE EXAMPLE
 

ABAP

abap alv popup

 DATA:
    go_popup  TYPE REF TO cl_reca_gui_f4_popup,
    gf_choice TYPE flag.

   CALL METHOD cl_reca_gui_f4_popup=>factory_grid
    EXPORTING
      it_f4value    = data_table[]
      if_multi      = abap_true
      id_title      = i_title
    RECEIVING
      ro_f4_instance = go_popup.

   CALL METHOD go_popup->display
    EXPORTING
      id_start_column = 10 "i_start_column
      id_start_line  = 10   "i_start_line
      id_end_column  = 50  "i_end_column
      id_end_line    = 20  "i_end_line
    IMPORTING
      et_result      = data_table[]
      ef_cancelled    = gf_choice.
Comment

PREVIOUS NEXT
Code Example
Abap :: abap last row in loop 
Abap :: sap checkbox abap 
Lisp :: emacs switch horizontal vertical 
Cobol :: cobol 
Assembly :: using shape property in flutter for circular corner 
Assembly :: flops in deep learning 
Assembly :: pycryptodome aes 256 cbc 
Assembly :: Generate random strings only with uppercase letters and digits in Python 
Assembly :: visual studio change assembly name 
Assembly :: irate translator 
Assembly :: array days of the week 
Javascript :: jquery vslidation remove spaces from input 
Javascript :: collection.ensureIndex is deprecated 
Javascript :: create json server and run command 
Javascript :: get jquery version from console 
Javascript :: p5.js cdn 
Javascript :: remove attribute jquery 
Javascript :: enable button jquery 
Javascript :: js get base url 
Javascript :: react-native how to get size of screen 
Javascript :: regex date validation mm/dd/yyyy 
Javascript :: js split array in half 
Javascript :: javascript loop through array backwards 
Javascript :: check device width using js 
Javascript :: reactjs .htaccess 
Javascript :: colored console.log 
Javascript :: regex for number and letters 
Javascript :: angular go to route 
Javascript :: how to get value and key in a for of loop in js 
Javascript :: three js clock 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =