cancel
Showing results for 
Search instead for 
Did you mean: 

Help with user exit

Former Member
0 Kudos
54

Hi Experts,

I have the fallowing prob

I have

Cube : ZIC_C03

Query : ZSTKREP

I need to create a variable(ZLTRDAY) on info object 0postng_date of the above cube based on the values i enter in the varialble 0REDAY1. I need to get the last posting date in that month.

for ex : i give dates like 01.01.2009 to 27.01.2009 in the variable "0reday1" but if the last transaction in that month is done on 22.01.2009 then the variable should get the value 22.01.2009 for that variable as i need to create a RKF based on variable ZLTRDAY

I have no Idea of ABAP coding. Can you guys help me with the code.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello,

you need to create 2 variables.

var1(0REDAY1):customer exit with ready for input option checked.

var2(ZLTRDAY):customer exit with ready for input option unchecked.

In the customer exit logic at I_STEP 2, you need to read the value of var1.process the logic and populate the result date into var2.

RKF based on var2

check out sample from the link:

Regards,

Dhanya

Former Member
0 Kudos

Thanks for the reply,

But i need to compare the dates with the dates available in the Object(0PSTNG_DATE) which included in the report

How to do that

Many Thanks,

Anand

Answers (1)

Answers (1)

Former Member
0 Kudos

Not Answered