Advertising:
All public logs
From SAP Knowledge Base
Combined display of all available logs of SAP Knowledge Base. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 19:18, 8 January 2025 Unirab talk contribs created page Create and send e-mail with released class for cloud development (Created page with "category: code_snippets In all possible developments the released class "CL_BCS_MAIL_MESSAGE" should be used. In case the class is not available use the classic variant, see here. <syntaxhighlight lang="abap" copy> TRY. DATA(mail) = cl_bcs_mail_message=>create_instance( ). mail->set_sender( 'my@unirab.org' ). mail->add_recipient( 'r1@unirab.org' ). mail->add_recipient( iv_address = 'r2@unirab.org' iv_copy...")