Skip to Content
0
Sep 21, 2017 at 04:44 PM

DSO self transformation

1042 Views

Hi,

I have one DSO which contains some data. My requirement is to replace GL Account = X with 'Y'.

This DSO has 6 other key fields.

I am trying use the following code in start routine. However the below code is not changing the existing record , but it is creating a new record by copying the existing record, and replacing the GL account = Y.

In the end, i have two records, one with GL =X and another with GL = Y.

I just need only one record with GL = Y.

LOOP AT SOURCE_PACKAGE ASSIGNING <SOURCE_FIELDS>.

IF <SOURCE_FIELDS>-GL_ACCOUNT = 'X'

<SOURCE_FIELDS>-GL_ACCOUNT = 'Y'.

ENDIF.

ENDLOOP.