cancel
Showing results for 
Search instead for 
Did you mean: 

Explain this piece of code

Former Member
0 Kudos

Hi,

Here is Customer Exit for a variable please explain this code step by step.

When 'ZXYZ'.

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

Points will be definitely assigned for the right answers.

Thanks in advance.

Vasu.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

when your variable is ZXYZ , it is filled with sy-datum .

(.today sy-datum is 21.08.07.)

Former Member
0 Kudos

Please explain step by step.

Former Member
0 Kudos

Hi,

When your variable ZXYZ gets executed, it will be filled with

low value = sy-datum

sign ( I ) = include

option (EQ) = equal.

the variable will be filled with low value..

Former Member
0 Kudos

Thanks a lot.

I have assigned full points.

Thanks once again.

Answers (1)

Answers (1)

Former Member
0 Kudos

this variable (ZXYZ) will contain the current system date (sy-datum)