cancel
Showing results for 
Search instead for 
Did you mean: 

Update table EKKO with an entry in table T024

Former Member
0 Kudos

With the help of a maintenance view the mail adress is added to a purchasing group in the Table t024.

There has to be a search for new entries in the table. If a new entry has been found the value has to be added to structure of an internal table. The structure of the internal table has to update the field SMTP_Addr related to the purchasing group in the table EKKO.


If no new entry has been found than the program should follow the normal procedure.


Data: gt_t024 Type TABLE of T024.
Data: gs_t024 like line of gt_t024.

SELECT * INTO TABLE gt_t024 FROM T024 where ZZSMTP_ADDR.

Loop at gt_t024 into gs_t024.

endloop.

How to write the program correctly?

BR

Accepted Solutions (0)

Answers (0)