Quantcast
Channel: SCN : All Content - ABAP Development
Viewing all articles
Browse latest Browse all 8332

what is " (SAPLIQS0)IVIQMMA" and '(SAPLIQS0)editor' stands for ?

$
0
0

hi ,

 

what is " (SAPLIQS0)IVIQMMA" and '(SAPLIQS0)editor' stands for ?

and, these values derrived from where ?

and, what the below codes trying to do ?

 

===========================================================

 

DATA lv_lwa_viqmma TYPE c LENGTH 20  VALUE '(SAPLIQS0)IVIQMMA'.

   FIELD-SYMBOLS : <fs_viqmma>      TYPE any.

   ASSIGN  : (lv_lwa_viqmmaTO <fs_viqmma>.

 

================================================

 

DATA: lv_editor TYPE c LENGTH 20 VALUE '(SAPLIQS0)editor'.

 

     FIELD-SYMBOLS : <fs_editor> TYPE REF TO cl_gui_textedit.

 

     ASSIGN (lv_editor) TO <fs_editor>.

     IF <fs_editor> IS ASSIGNED AND

        <fs_editor> IS NOT INITIAL.

       CALL METHOD <fs_editor>->set_readonly_mode

         EXPORTING

           readonly_mode          = 0

         EXCEPTIONS

           error_cntl_call_method = 1

           invalid_parameter      = 2

           OTHERS                 = 3.

====================================================

     ENDIF.


 

Thanks


Viewing all articles
Browse latest Browse all 8332

Trending Articles