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: 

delete lines from internal table

Former Member
0 Kudos

Hello experts!

I have two internal tables.

select options sa_tknr and gt_versand_plan.

sa_tknr-low contents transportation-Nr.

gt_versand_plan has transportation-Nr too (gt_versand_plan-tknum).

How can I delete all transportation-Nr from

gt_versand_plan which dont' appear in sa_tknr-tknum.

THX

sas

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

check this statement.

<b>delete gt_versand_plan where not tknum in sa_tknr.</b>

<b>Reward points for useful Answers</b>

Regards

Anji

2 REPLIES 2

Former Member
0 Kudos

Hi

check this statement.

<b>delete gt_versand_plan where not tknum in sa_tknr.</b>

<b>Reward points for useful Answers</b>

Regards

Anji

0 Kudos

Anji Reddy Vang you are the best.

regards

sas