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 field-group?

Former Member
0 Kudos

Hi Experts,

I doing data transfer of table BSEG into application server.Iam using FIELD_GROUPS to transfer data inorder to avoid the memory allocation problem of internal table.My problem is in Loop after transferring data from field group to the appl server path.I want to clear that particular data which i already transferred.Is it possible to perform?

Appreciate your response.Points will be rewarded for solution.

Regards,

bow

3 REPLIES 3

Former Member
0 Kudos

To clear the field group you can do the following.

In the PBO Event of the screen

CHAIN.

clear the fields.

ENDCHAIN.

Thanks.

Former Member
0 Kudos

Hi,

You will declare the Field groups like this

FIELD-GROUPS: HEADER, SPFLI_FG, SFLIGHT_FG, SBOOK_FG.

To clear the Field group, you can use the CLEAR statment,

CLEAR HEADER.

CLEAR SPFLI_FG.

Regards

Sudheer

0 Kudos

Clear will not clear all data in the field group.I want to refresh the whole field group which i had appended.