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: 

Segment Deletion

Former Member
0 Kudos

Hi All

I want to delete some segment from particular IDOC please help me

Thanks

Amit Shivhare

9 REPLIES 9

Former Member
0 Kudos

Go to the tcode we57, find out the FM associated with the message type which is populating your idoc. Put a breakpoint in the code and check where exactly your idoc is getting pouplated.

Please reward the helpful entries.

Regards,

Raman.

paruchuri_nagesh
Active Contributor
0 Kudos

hi

if uwant to delete paticular segment from the IDOC use transaction code we30

it is for idoc editor in this u can add segments and u can delete sements

reward if u find use ful

regards

Nagesh.Paruchuri

0 Kudos

Hi Nagesh

thanks for reply

Actually here we had discussed scenario when data is updating from IDOC ,we are not talking about configuration scenario

In my scenario one IDOC contain many number of segments and I want to delete one segment out of them

thanks

Amit Shivhare

Clemenss
Active Contributor
0 Kudos

Hi Amit,

IDoc is a legal document. I want to change some entries in my passport. How can I do that. Please help me.

Honestly: The standard does not provide this functionality. You can edit and inbound IDoc and do changes like reducing quantities or currency values to zero. In this case, the standard will create a copy of the original Idoc in order to keep the original data.

Please explain your requirement in business terms.

Regards,

Clemens

Former Member
0 Kudos

Hi Clemens

In my business,

We are using inbound idoc type WPUUMS01 for posting POS aggregate sales, during sales updating some articles have problem , and I want to delete particular whole segment (one parent and 5 child ) from IDOC .

Thanks

Amit Shivhare

former_member194669
Active Contributor
0 Kudos

Amit,

If it is inbound or outbound IDoc. In the function module associated with message type you can find "CUSTOMER FUNCTION EXIT" You can use these exits to delete a particular segment.

But the same thing you can do it using configuration also.

0 Kudos

Hi A®S

Thanks for reply

We are Using IDOC type WPUUMS01 and functional module associated with this IDOC “IDOC_INPUT_POS_SALES_ACCOUNT” can u tell step what can I do

Note—we did not want change our configuration setting

Thanks

Amit Shivhare

0 Kudos

Hi,


*   Call Customer Postprocessing
    perform ue_idoc_postprocessing
                tables
                   idoc_data
                   idoc_status
                using
                   idoc_contrl
                   '119'.
With in this include u can find customer exit from 109 to 159 (6 Nos)

Former Member
0 Kudos

Thanks for all