cancel
Showing results for 
Search instead for 
Did you mean: 

Where can I change the title of the ical in RPTARQEMAIL

former_member271371
Participant
0 Kudos

Hello,

when a email is sent, the title of the ical-attachment is SAP.ics.

Where can I change this title to 'calendar.ics'?

Thanks

Kerim

Accepted Solutions (0)

Answers (1)

Answers (1)

siddharthrajora
Product and Topic Expert
Product and Topic Expert
0 Kudos

can you check here

iCal option with note 2186391. FORM i_calendar in the main program itself.

This form uses the FM APPT_CREATE_INTERNAL ?

RPTREQ_MAIL

Line 464:

. .LOOP AT i_calendar_tab INTO i_calendar_wa.

. . .APPEND LINES OF i_calendar_wa-content TO contents.

. . .count_from = count_to + 1.

. . .DESCRIBE TABLE contents LINES count_to.

. . .PERFORM fill_packing_list TABLES packing_list

. . . . . . . . . . . . . . . . USING count_from

. . . . . . . . . . . . . . . . . . . count_to

. . . . . . . . . . . . . . . . . . . 'ICS'

. . . . . . . . . . . . . . . . . . . i_calendar_wa-title.

.

. .ENDLOOP.

--------------------------------------------------------