Dear SAP Gurus,
We tried to change the value date when running payment proposal in F110. However, we may miss something, so that it leads the function module cannot be called in the transactions. Our case is bellow, could you please help us to check and give us an advice.
We want to use FM ZSAMPLE_PROCESS_00001610 which is copied from SAMPLE_PROCESS_00001610, to calculate the value date and update it when running payment proposal by F110.
To realize it, here bellow is what have done in BTE settings:
(1) Configure: Settings>Products>...of a customer.
Create the product:Z_1610, and activate it.
(2) Configure: Settings>Process Modules>...of a customer.
Select process 00001610, FM: ZSAMPLE_PROCESS_00001610, product: Z_1610
To validate the FM is activated in F110, we set up a break point in function module. and Here bellow is the testing FM:
FUNCTION ZSAMPLE_PROCESS_00001610.
*"----------------------------------------------------------------------
*"*"Local Interface:
*" IMPORTING
*" VALUE(I_PAYRQ) LIKE PAYRQ STRUCTURE PAYRQ
*" EXPORTING
*" VALUE(E_VALUT) LIKE SY-DATUM
*"----------------------------------------------------------------------
BREAK-POINT.
I_PAYRQ-VALUT = '20150227'.
E_VALUT = I_PAYRQ-VALUT.
ENDFUNCTION.
That is all. Highly appreciated for your advice.
Eric