cancel
Showing results for 
Search instead for 
Did you mean: 

DSO self transformation

0 Kudos
1,351

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.

View Entire Topic
andrea_previati
Contributor
0 Kudos

Hi

in this case you can use simple field routines

for each infobject that you need to modify, you can insert in the transformation a simple routine

IF.....<your condition>

RESULT = <your result>

ENDIF.

You will wind endless examples of these simple transformations in SDN

Hope it helps