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: 

CREMAS Change Pointer, custom fileter

Former Member
0 Kudos

Hi Experts,

I have a requirement in which Vendor master change pointer is configured and working fine. But Now they want to set a filter based on some conditions which is not possible to configure in filter.

(Ex: based on Vendor characteristic value from table AUSP, I have restrict sending IDoc).

I am looking for userexit or badi which should allow me to create or not create change pointer option,

OR allow me to restrict posting of IDoc.

I tried BADI VENDOR_ADD_DATA_BI, but looks to me not suitable.

Thanks,

1 ACCEPTED SOLUTION

Manohar2u
Active Contributor
0 Kudos

Use IDOC_CREATION_CHECK badi - export CREATE_IDOC parameter with initial when you don't want to create idoc.

4 REPLIES 4

Manohar2u
Active Contributor
0 Kudos

Use IDOC_CREATION_CHECK badi - export CREATE_IDOC parameter with initial when you don't want to create idoc.

P561888
Active Contributor
0 Kudos

HI ,

IDOC_CREATION_CHECK is it useful in Change pointer side?

Regards,

Bharani

Manohar2u
Active Contributor
0 Kudos

this BADI will trigger always before creating idocs - here you can keep your custom filter logic to control idoc creation.

On CP - are your characteristic value changes creating change pointers?

Former Member
0 Kudos

It is stopping. Thanks Manohar.