Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

problem while using term_control_edit

Former Member
0 Likes
671

I am using the Function "TERM_CONTROL_EDIT"

WHEN 'TEST'.

LG_MES = NET_CONST-DO_NOTHING.

ABAP_CMD = NET_CONST-GET_SELECTION.

  • if int_text1 is initial.

CALL FUNCTION 'TERM_CONTROL_EDIT'

EXPORTING

TITEL = 'COMMENTS'

LANGU = 'E'

TABLES

TEXTLINES = int_text

EXCEPTIONS

USER_CANCELLED = 1

OTHERS = 2.

IF SY-SUBRC = 0.

  • * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  • * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

but on executing this a pop-up window is opening up without any editor.This pop-up window is blank.I dnt know how to solve this problem.please help

1 REPLY 1
Read only

Former Member
0 Likes
564

Hi Priya,

In the LANGU parameter pass "R". Then it will suppress popup.

Best regards,

Prashant