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

change pointer for material classification CLFMAS

former_member582701
Contributor
0 Likes
3,551

Hi,

I need to save in BDCP (change pointer) tables when the classification of a material is changed. Reading other threads I have realized that I had to activate the change pointer for CLFMAS message. Now it is working fine.

The problem is that the classification is not only a property for materials so when the classification of a vendor is changed for example a change pointer is also created. Is there a way to create the change pointer for classification only for the material classification and not for everything?

Thx,

Manel

1 ACCEPTED SOLUTION
Read only

Manohar2u
Active Contributor
0 Likes
1,712

So you don't to create classification changes pointer other than material master. You can do this using the below BTE exit by flagging E_DONT_WRITE_POINTER export paremeter when the i_object is not material.

  00004005	CA Classification System - Write Change Pointer 

Hope this helps.

3 REPLIES 3
Read only

Manohar2u
Active Contributor
0 Likes
1,713

So you don't to create classification changes pointer other than material master. You can do this using the below BTE exit by flagging E_DONT_WRITE_POINTER export paremeter when the i_object is not material.

  00004005	CA Classification System - Write Change Pointer 

Hope this helps.

Read only

0 Likes
1,712

Thx for the answer... it looks nice.

So I have to create another Z FM copying the standard MAT_SUPPRESS_CP_FOR_CLASSIFIC and add my code checking I_CLASSTYPE = 001.

Am I right?

Thx,

Manel

Read only

Manohar2u
Active Contributor
0 Likes
1,712

Yes - implement this from FIBF transaction - you need to create product and assign the created/copied function module here.

Remember this function module triggers only in update mode - while debugging.

Search here for how to implement BTE's - it's quite simple steps.