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: 

WorkFlow or Change Pointers

Former Member
0 Kudos

Hi All,

Can I use workflow concept for handling masterdata in the case of EDI.I think we can go with message control for transactional data only.My requirement is I need to generate an IDOC whenever there is changes in the Vendor details(XK02 application).If we go with change pointers they will contain only the changed details but i need all the information which is not changed also.Is it possible to generate an IDOC if a vendor is deleted through XK06 transaction code.

Please help me regarding this.

3 REPLIES 3

Former Member
0 Kudos

Hi,

I'm pretty sure this could be achieved with workflow not knowing the specific requirements. You would have to trigger the said workflow whenever a vendor is changed or flagged for deletion, pick up all the vendor information and then generate the IDoc in the workflow.

The tricky part is the triggering of the workflow. I checked the event receiving object (on 4.6c) and there are no events defined for changed or deletion flags. What this means is that you would have to first configure the events and then raise (~= call) them whenever a vendor is changed/deleted. The call would thus have to be incorporated in a vendor creation/change user exit.

For the user exit lookup, please see thread

Hope this helps,

Mikko

Former Member
0 Kudos

I believe this should also be possible using change pointers (a delete is a change after all). I think for a delete it will send all data (since all is technically changing) but unfortunately I cannot test at the moment.

Former Member
0 Kudos

Hi,

The IDOC generated from change pointer will have all the current information about the vendor. It is not true that the IDOC will contain only the changed details. So it should serve your purpose.

Sudhir