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

Display Delivery header text in segment E1EDKT2

Former Member
0 Likes
1,753

Hi All,

I need to get the Delivery header text (tracking num) and display it in 810 INVOIC IDOC. The text has to be displayed in E1EDKT2-TDLINE.

Can some one please help me with this.

Thanks,

Veni.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,314

You need to populate the Idoc data.

If you are having Idoc data in your internal table then it is easy like just move the text to it.

you may have data in tables edid2 (in older versions) edid4 (in newer versions).

data: s_e1edkt2 like e1edkt2.

Ex: Loop at it_edid2(it_edid4) .

move Delivery header text to s_e1edkt2-tdline

move s_e1edkt2 to it_edid2-sdata+3.

modify it_edid2.

endloop.

Let me know if you need any more help.

Hi All,

I need to get the Delivery header text (tracking num) and display it in 810 INVOIC IDOC. The text has to be displayed in E1EDKT2-TDLINE.

Can some one please help me with this.

Thanks,

Veni.

5 REPLIES 5
Read only

Former Member
0 Likes
1,315

You need to populate the Idoc data.

If you are having Idoc data in your internal table then it is easy like just move the text to it.

you may have data in tables edid2 (in older versions) edid4 (in newer versions).

data: s_e1edkt2 like e1edkt2.

Ex: Loop at it_edid2(it_edid4) .

move Delivery header text to s_e1edkt2-tdline

move s_e1edkt2 to it_edid2-sdata+3.

modify it_edid2.

endloop.

Let me know if you need any more help.

Read only

0 Likes
1,314

Hi TSR,

Should I change ZXEDFU02 to display this text.

Thanks,

Veni.

Read only

0 Likes
1,314

If you are referring this Userexit, YES, you may have to do it here.

Read only

0 Likes
1,314

Hi All,

We have 3 texts in the Delivery header text and 2 of them are comming in Invoice IDOC at E1EDKT1 CRD(textid) -> E1EDKT2 - TDLINE and EIEDKT1 I410 -> E1EDKT2 - TDLINE. Same way I have to display tracking number text also here.

I checked EDID4 and the 2 texts are here. How should I create the one for tracking number?

For Tracking number text id is 0102, so I need to create E1EDKT1 0102 -> E1EDKT2 - TDLINE.

Can someone please help me.

Thanks,

Veni.

Read only

0 Likes
1,314

Hi All,

Can some one please help me hoe to create E1EDKT1 0102 ?

Thanks,

veni.