cancel
Showing results for 
Search instead for 
Did you mean: 

user exit macro...abap code

Former Member
0 Kudos

Hi,

can anyone pl tell how ro check date range in user exit macro.Macro is being used to copy data from one key figure to other key figure in SNP Planning Book.

We are trying to check ABAP code for the macro.But cud not get any option for that.

Pl share if you ahev any idea.

Accepted Solutions (1)

Accepted Solutions (1)

srinivas_krishnamoorthy
Active Contributor
0 Kudos

In the ABAP code, you can check for the program statement

"loop.....where column....". It should give a clue on the time bucket range.

Usually it is bucket range that is of more consequence than the date range since macros are agnostic to the dates.

Former Member
0 Kudos

Thanks Shrinivas.

Can u pl tell where and how to check ABAP code?

rgds

Nil

Former Member
0 Kudos

Hi Nil,

User exit macro are implemented through user exit enhancement APODM005 you can go to transaction SMOD and go to Enhancement:APODM005.

Click on display than go to component than double click on Function module than double click on include than look for code like below

loop at X

-


endloop.

Do loop :

do

-


enddo.

or directly look into function module :EXIT_/SAPAPO/SAPMMCP6_005 through se37.

Manish

Answers (0)