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: 

Custom IDOC with change pointers for condition record

Former Member
0 Kudos

Hi ,

I have a scenario to develop a custom segment for sending the condition record. I dont want to extend the COND_A01. I want to develop a custom IDOC with only the segment to send.And the IDOC should be generated when ever there is a chnage in the KONP Price field.

Please suggest what are all the various methods to implement this.Is it still possible to use MASTER IDOC FM with the Custom IDOC.

Regards

Vinaya.

3 REPLIES 3

Former Member
0 Kudos

It would be better to create the IDoc in this case with schedule job.

Activate the change pointer for the pricing field only.

Create new segment and IDoc type and process it in a background job.

In this program fill the idoc and distribute it.

Create Segment ( WE31)

Create Idoc Type ( WE30)

Create Message Type ( WE81)

Assign Idoc Type to Message Type ( WE82)

on details on how to distribute check the below link

ALE-IDOC Scenario using Custom IDOC

I hope it is helpful.

Regards

0 Kudos

Hi Mohammed,

thanks  for your reply. Please clarify below questions,

For my scenario will i be creating a custom message type or shud use the COND_A message type.

In case of custom message type please help on how to trigger the standard change pointer for the custom message type.

Regards

Vinaya.

0 Kudos

Hi,

WE81 to create the custom message type

BD52 to assign the fields to the message type

BD50 to activate

Also it would be a better idea to trigger it directly in the on SAVE exit rather than checking for all this.

Put your distribution code in BADI

SD_COND_SAVE_A -

Save condition application A, E

Regards,