Application Development 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: 

how to clear costum container editor

former_member799868
Participant
0 Kudos

CREATE OBJECT: container EXPORTING container_name = 'EDIT',

editor EXPORTING parent = container,

handle.

CALL METHOD editor->set_text_as_stream EXPORTING text = GT_LINE.

When iam calling method with exporting GT_LINE 2nd time with some other values I am getting old values on editor , can u please tell me how to clear old vales on editor and putting new vales………..

thanks in adv.......

2 REPLIES 2

Former Member
0 Kudos

Hello Kranthi,

You can use the keyword "FREE".

CALL METHOD container->free.

FREE container.

Use this at the exit.

Regards,

Reema.

Former Member
0 Kudos

Hi

CALL METHOD container->free.

Regards

Gregory