Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

customer exit EXIT_SAPLMRMH_015

suresh_s9
Participant
0 Kudos

did any one worked on customer exit EXIT_SAPLMRMH_015, where

"You can post directly to G/L or material accounts by using enhancement MRMH0002 and the customer exit EXIT_SAPLMRMH_015"

Its urgent,

s

3 REPLIES 3

Former Member
0 Kudos

Hi Suresh S,

I think I can help you on this point. if you have viewed the attributes of this customer exit function, you may found that it have a parameter T_CO, this is the key parameter! it's an internal table, if we want to post some value directly to GL tab in MIRO, we just need to fill the associated data into this internal table in this exit. after this exit, the standard program will pass this internal table to other fuctions and check whether this T_CO field have value, if it have, and all values in it are right, it will post it to gl tab. the associated data including gl account number, cost center and tax jurisdiction and so on, you can check this in frontground screen of miro.

Hope this will be useful for you!

Regards,

Richard Liu

0 Kudos

Hi,

This info is very much useful.

Suppose my data (Amounts) are available in 3 different segments that are needed to post to 3 different G/L Accounts, How can i get that info and post those amounts into specific G/L accounts.


Loop at t_co.

t_co-saknr = '123456'.
t_co-xxxx = 1234.56.
t_co-cost center = 'xxxx'.
t_co-txjcd = 'NY0000000'.

modify t_co.
endloop.

will it work??

0 Kudos

Hello Any suggestions pl