Skip to Content
0
Jun 24, 2010 at 07:16 AM

report - replacement path --calculation of diff b/n dates

67 Views

Hi gurus,

I'm developing a global recievables ageing report

my issue is in order to calculate the difference of days i had created 2 formula replacement path variables

one using the customer exit -i'm picking the sy-datum here and the other formula variable created on due date.

Now my issue is i'm getting the result for var1(sy-datum) - var2(due date) = X.

customer exit i had use for picking the sy-datum

WHEN ZFCURDATE

CLEAR L_S_RANGE.

L_S_RANGE-LOW = SY-DATUM.

L_S_RANGE-SIGN = 'I'.

L_S_RANGE-OPT = 'EQ'.

APPEND L_S_RANGE TO E_T_RANGE.

please throw some light on this.

I had searched forum i could not find the correct answer for this.