Sunday 21 July 2013

How to Add Custom Text Editor in SAP ABAP

By using below FM we can create a Custom text Editor:

Function Module Name: TERM_CONTROL_EDIT

The structure of above FM looks like:

CALL FUNCTION 'TERM_CONTROL_EDIT'
* EXPORTING
*   TITEL                =
*   LANGU                =
  TABLES
    textlines            =
* EXCEPTIONS
*   USER_CANCELLED       = 1
*   OTHERS               = 2
          .
IF sy-subrc <> 0.
* Implement suitable error handling here
ENDIF.


Mandatory fields for above FM is TABLES Parameter: TEXTLINES.

Related Links:



No comments:

Post a Comment