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

Process log is not getting updated

Former Member
0 Likes
680

I have created a report and have attached to nace which will be executed from VA02 Tcode. The  is intended to send an email to vendor and it is triggering properly, everything works fine. In the program I have coded to update the nace structure with proper logs, after successfull completion of the process. But still its not showing any processing log. how do I solve this????

I have created a report and have attached to nace which will be executed from VA02 Tcode. The  is intended to send an email to vendor and it is triggering properly, everything works fine. In the program I have coded to update the nace structure with proper logs, after successfull completion of the process. But still its not showing any processing log. how do I solve this????

2 REPLIES 2
Read only

ronaldo_aparecido
Contributor
0 Likes
615

Thomas

you are using commit work after the update?

if not please try.

If trouble keeping up show the code

Read only

ronaldo_aparecido
Contributor
0 Likes
615

See this example.

UPDATE zcaixa_loja SET seqp2k t_header-numseq

                        WHERE vkbur  t_loja-vkbur.

       IF sy-subrc EQ 0.

         COMMIT WORK AND WAIT.

         SELECT COUNT(*)

                     FROM zcaixa_loja

                     WHERE vkbur  t_loja-vkbur

                       AND seqp2k t_header-numseq.

         IF sy-subrc = 0.

           EXIT.

         ENDIF.

       ENDIF.