Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Payment Advice

Former Member
0 Likes
981

Dear All,

How to change the subject line of mail sent on payment advice rffoavis_fpaym?

Thanks,
Jitesh

1 ACCEPTED SOLUTION
Read only

nabheetscn
SAP Champion
SAP Champion
0 Likes
823

Hi Jitesh

It is send via subroutine avis_oeffnen.  Inside it below mentioned BTE is called. Please implement this BTE and change ITCPO-TDTITLE

 

CALL FUNCTION 'OPEN_FI_PERFORM_00002050_P'
EXPORTING
i_reguh = reguh
i_gjahr = regud-gjahr
i_nacha = finaa-nacha
i_aforn = hlp_formular
CHANGING
c_itcpo = itcpo
c_archive_index = toa_dara
c_archive_params = arc_params.
IF itcpo-tdarmod GT 1 AND par_anzp NE 0. "#EC PORTABLE
par_anzp =
0.
PERFORM message USING '384'.
ENDIF.

Nabheet

Dear All,

How to change the subject line of mail sent on payment advice rffoavis_fpaym?

Thanks,
Jitesh

2 REPLIES 2
Read only

nabheetscn
SAP Champion
SAP Champion
0 Likes
824

Hi Jitesh

It is send via subroutine avis_oeffnen.  Inside it below mentioned BTE is called. Please implement this BTE and change ITCPO-TDTITLE

 

CALL FUNCTION 'OPEN_FI_PERFORM_00002050_P'
EXPORTING
i_reguh = reguh
i_gjahr = regud-gjahr
i_nacha = finaa-nacha
i_aforn = hlp_formular
CHANGING
c_itcpo = itcpo
c_archive_index = toa_dara
c_archive_params = arc_params.
IF itcpo-tdarmod GT 1 AND par_anzp NE 0. "#EC PORTABLE
par_anzp =
0.
PERFORM message USING '384'.
ENDIF.

Nabheet

Read only

0 Likes
823

Thanks for the reply