Application Development and Automation 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: 
Read only

ALE/IDoc filteration

Former Member
0 Likes
858

Hi,

I am configuring ALE inorder to send the Material master from one client to another client. But while sending the Material records, I have to block those material which are marked for deletion (LOEVM = 'X'). How can i ensure that these records don't go out.

-Vartika

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
808

Hi,

You can use this user exits EXIT_SAPLMV01_003 to check LOEVM.

Another solution is to write custom program to select all material without LOEVM = 'X' then pass all material numbers to program RBDSEMAT via submit statement.

Regards,

Ferry Lianto

Hi,

I am configuring ALE inorder to send the Material master from one client to another client. But while sending the Material records, I have to block those material which are marked for deletion (LOEVM = 'X'). How can i ensure that these records don't go out.

-Vartika

5 REPLIES 5
Read only

Former Member
0 Likes
808

Hi,

I believe in the transaction BD64..You can add a filter for the distribution model view ..

THanks,

Naren

Read only

0 Likes
808

In BD64, there are predefined filters for MATMAS which i am already using. But there isn't one to check for the field LOEVM (Material marked for deletion). Do you know how I can create my own filter?

Read only

former_member194669
Active Contributor
0 Likes
808

Hi,

Please check the user exit EXIT_SAPLMV01_002

Note:

A filter created when defining distribution model is used to determine which IDOC should be send and not used to determine which IDOC should be created.

aRs

Read only

Former Member
0 Likes
809

Hi,

You can use this user exits EXIT_SAPLMV01_003 to check LOEVM.

Another solution is to write custom program to select all material without LOEVM = 'X' then pass all material numbers to program RBDSEMAT via submit statement.

Regards,

Ferry Lianto

Read only

0 Likes
808

Thanks. I've used your second suggestion...