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

Segment Deletion

Former Member
0 Likes
1,438

Hi All

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

Thanks

Amit Shivhare

9 REPLIES 9
Read only

Former Member
0 Likes
1,179

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.

Read only

paruchuri_nagesh
Active Contributor
0 Likes
1,179

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

Read only

0 Likes
1,179

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

Read only

Clemenss
Active Contributor
0 Likes
1,179

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

Read only

Former Member
0 Likes
1,179

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

Read only

former_member194669
Active Contributor
0 Likes
1,179

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.

a®

Read only

0 Likes
1,179

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

Read only

0 Likes
1,179

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)

a®

Read only

Former Member
0 Likes
1,179

Thanks for all