Show TOC

Method SET_TIMELocate this document in the navigation structure

Use

This method creates the body of the mail.

Note

This method is similar to Method SET_ADDRESS, only that the date and time formatting is included here too.

Parameters

Parameter Name

Type

Typing

Reference Type

Description

DATE

Importing

Type

D

Tag

TIME

Importing

Type

T

Time

Coding

method SET_TIME .
data: row type soli.
clear row.
append row to l_mailtext.
move 'Wir besuchen Sie ' to row."#EC NOTEXT
append row to l_mailtext.
move 'am ' to row.
write date to row+3 DD/MM/YYYY.
append row to l_mailtext.
move 'um ' to row.
write time to row+3.
move ' Uhr' to row+8.
append row to l_mailtext.
clear row.
append row to l_mailtext.
move 'Vielen Dank für Ihr Vertrauen' to row. "#EC *
append row to l_mailtext.
clear row. append row to l_mailtext.
move 'Mit freundlichen Grüßen' to row. "#EC *
append row to l_mailtext.
move 'Ihr Service-Team' to row. "#EC * 
append row to l_mailtext.
endmethod.