Quantcast
Channel: SCN: Message List - Business Content and Extractors
Viewing all articles
Browse latest Browse all 5631

Re: 0FIAR_C03 data flow migration transformation filed level routine syntax error

$
0
0

Hi Ramesh,

 

When migrating 3.x to 7.x , you have change code as like below.

 

3.x Code

 

IF COMM_STRUCTURE-FI_DOCSTAT EQ 'C'.

     RESULT = COMM_STRUCTURE-CLEAR_DATE - COMM_STRUCTURE-NETDUEDATE.

  ELSE.

     RESULT = 0.

  endif.

 

7.x Code

 

1 Right lick on field for which you want update data , result of CLEAR_DATE-NETDUEDATE in 7.x transformation

2 By clicking add(+) two fields CLEAR_DATE and NETDUEDATE

3 Select Rule type "Routine"

4 Paste below code.

 

IF SOURCE_FIELDS-FI_DOCSTAT EQ 'C'.

     RESULT = SOURCE_FIELDS-CLEAR_DATE - SOURCE_FIELDS-NETDUEDATE.

  ELSE.

     RESULT = 0.

  endif.

 

in similar way , you have to do for other objects.

 

Thank you,

Nanda


Viewing all articles
Browse latest Browse all 5631

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>