Quantcast
Channel: SCN: Message List
Viewing all articles
Browse latest Browse all 8950

Re: Long text not appear in E-mail Notification (Smartform)

$
0
0

I know I am late to this thread but yes you are right. Samrtform gets executed before the Logntext gets saved in Database.

 

I just did the following and it's working perfectly fine

 

Please go through the code below and this solution is working best for me and I just implemented that today.

DATA iv_header_guid    TYPE crmt_object_guid.

DATA et_textdata          TYPE comt_text_textdata_t.

DATA ls_textdata          TYPE comt_text_textdata.

DATA et_alltexts       TYPE comt_text_textdata_t.

DATA et_error          TYPE comt_text_error_t.

DATA ev_text_procedure TYPE comt_text_det_procedure.

DATA et_text_cust      TYPE comt_text_cust_struc1_tab.

DATA: stxh             TYPE stxh.

DATA: lines            TYPE comt_text_lines_t.

DATA: ls_lines         TYPE tline.

 

iv_header_guid = wa_header-guid.

 

CALL FUNCTION 'CRM_DNO_READ_ORDER_TEXT'

   EXPORTING

     iv_header_guid    = iv_header_guid

   IMPORTING

     et_textdata       = et_textdata

     et_alltexts       = et_alltexts

     et_error          = et_error

     ev_text_procedure = ev_text_procedure

     et_text_cust      = et_text_cust.

 

LOOP AT et_alltexts INTO ls_textdata.

 

   stxh = ls_textdata-stxh.

 

   IF stxh-tdid = 'ZARD'.

 

     lines[] = ls_textdata-lines[].

 

     LOOP AT lines INTO ls_lines.

 

       CONCATENATE gv_comments ' ' ls_lines-tdline

                INTO gv_comments SEPARATED BY space.

 

     ENDLOOP.

 

   ENDIF.

 

ENDLOOP.


Viewing all articles
Browse latest Browse all 8950

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>