2013 Aug 27 8:02 PM
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????
2013 Aug 27 9:04 PM
Thomas
you are using commit work after the update?
if not please try.
If trouble keeping up show the code
2013 Aug 28 1:08 PM
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.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |