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

error in basic type invoic02 for header tax

Former Member
0 Likes
447

Hi All ,

i am creating xml of invoice from message type invoic and basi type invoic02 , when xml is genrate tehre is not coming header taxes but when i am checkin in we60 basic type , it has structure for E1EDK04 but this segment is not coming in xml .

plz suggect me right so i can resolve this issue

thnks and regards

Bhavesh

1 REPLY 1
Read only

vinod_vemuru2
Active Contributor
0 Likes
327

Hi,

E1EDK04 segment is populated based on some conditions. Please check if these conditions are satisfied in your case. You can do an udate debugging and see.

Include: LVEDFF0E

Line:124(Might vary in different versions)

Code extract:

LOOP AT ikomvd.
*---Steuern Kopf
    IF ikomvd-koaid EQ 'D'.
      IF ikomvd-kstat EQ ' ' AND
      ikomvd-kinak EQ ' '.
*     IKOMVD-KWERT NE '0'.
        PERFORM fill_e1edk04.
      ENDIF.
    ENDIF.
  ENDLOOP.

Thanks,

Vinod.